blob: 4adb33628dec5608c8167c28181441a942ce3a00 [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>
Thomas Gleixneree7ae7a2008-04-17 17:40:45 +020012#include <linux/seq_file.h>
13#include <linux/debugfs.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010014
Thomas Gleixner950f9d92008-01-30 13:34:06 +010015#include <asm/e820.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/processor.h>
17#include <asm/tlbflush.h>
Dave Jonesf8af0952006-01-06 00:12:10 -080018#include <asm/sections.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010019#include <asm/uaccess.h>
20#include <asm/pgalloc.h>
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010021#include <asm/proto.h>
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -070022#include <asm/pat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Ingo Molnar9df84992008-02-04 16:48:09 +010024/*
25 * The current flushing context - we pass it instead of 5 arguments:
26 */
Thomas Gleixner72e458d2008-02-04 16:48:07 +010027struct cpa_data {
28 unsigned long vaddr;
Thomas Gleixner72e458d2008-02-04 16:48:07 +010029 pgprot_t mask_set;
30 pgprot_t mask_clr;
Thomas Gleixner65e074d2008-02-04 16:48:07 +010031 int numpages;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +010032 int flushtlb;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010033 unsigned long pfn;
Andi Kleenc9caa022008-03-12 03:53:29 +010034 unsigned force_split : 1;
Thomas Gleixner72e458d2008-02-04 16:48:07 +010035};
36
Thomas Gleixner65280e62008-05-05 16:35:21 +020037#ifdef CONFIG_PROC_FS
Andi Kleence0c0e52008-05-02 11:46:49 +020038static unsigned long direct_pages_count[PG_LEVEL_NUM];
39
Thomas Gleixner65280e62008-05-05 16:35:21 +020040void update_page_count(int level, unsigned long pages)
Andi Kleence0c0e52008-05-02 11:46:49 +020041{
Andi Kleence0c0e52008-05-02 11:46:49 +020042 unsigned long flags;
Thomas Gleixner65280e62008-05-05 16:35:21 +020043
Andi Kleence0c0e52008-05-02 11:46:49 +020044 /* Protect against CPA */
45 spin_lock_irqsave(&pgd_lock, flags);
46 direct_pages_count[level] += pages;
47 spin_unlock_irqrestore(&pgd_lock, flags);
Andi Kleence0c0e52008-05-02 11:46:49 +020048}
49
Thomas Gleixner65280e62008-05-05 16:35:21 +020050static void split_page_count(int level)
51{
52 direct_pages_count[level]--;
53 direct_pages_count[level - 1] += PTRS_PER_PTE;
54}
55
56int arch_report_meminfo(char *page)
57{
58 int n = sprintf(page, "DirectMap4k: %8lu\n"
59 "DirectMap2M: %8lu\n",
60 direct_pages_count[PG_LEVEL_4K],
61 direct_pages_count[PG_LEVEL_2M]);
62#ifdef CONFIG_X86_64
63 n += sprintf(page + n, "DirectMap1G: %8lu\n",
64 direct_pages_count[PG_LEVEL_1G]);
65#endif
66 return n;
67}
68#else
69static inline void split_page_count(int level) { }
70#endif
71
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010072#ifdef CONFIG_X86_64
73
74static inline unsigned long highmap_start_pfn(void)
75{
76 return __pa(_text) >> PAGE_SHIFT;
77}
78
79static inline unsigned long highmap_end_pfn(void)
80{
81 return __pa(round_up((unsigned long)_end, PMD_SIZE)) >> PAGE_SHIFT;
82}
83
84#endif
85
Ingo Molnar92cb54a2008-02-13 14:37:52 +010086#ifdef CONFIG_DEBUG_PAGEALLOC
87# define debug_pagealloc 1
88#else
89# define debug_pagealloc 0
90#endif
91
Arjan van de Vened724be2008-01-30 13:34:04 +010092static inline int
93within(unsigned long addr, unsigned long start, unsigned long end)
Ingo Molnar687c4822008-01-30 13:34:04 +010094{
Arjan van de Vened724be2008-01-30 13:34:04 +010095 return addr >= start && addr < end;
96}
97
98/*
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010099 * Flushing functions
100 */
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100101
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100102/**
103 * clflush_cache_range - flush a cache range with clflush
104 * @addr: virtual start address
105 * @size: number of bytes to flush
106 *
107 * clflush is an unordered instruction which needs fencing with mfence
108 * to avoid ordering issues.
109 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100110void clflush_cache_range(void *vaddr, unsigned int size)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100111{
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100112 void *vend = vaddr + size - 1;
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100113
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100114 mb();
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100115
116 for (; vaddr < vend; vaddr += boot_cpu_data.x86_clflush_size)
117 clflush(vaddr);
118 /*
119 * Flush any possible final partial cacheline:
120 */
121 clflush(vend);
122
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100123 mb();
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100124}
125
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100126static void __cpa_flush_all(void *arg)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100127{
Andi Kleen6bb83832008-02-04 16:48:06 +0100128 unsigned long cache = (unsigned long)arg;
129
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100130 /*
131 * Flush all to work around Errata in early athlons regarding
132 * large page flushing.
133 */
134 __flush_tlb_all();
135
Andi Kleen6bb83832008-02-04 16:48:06 +0100136 if (cache && boot_cpu_data.x86_model >= 4)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100137 wbinvd();
138}
139
Andi Kleen6bb83832008-02-04 16:48:06 +0100140static void cpa_flush_all(unsigned long cache)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100141{
142 BUG_ON(irqs_disabled());
143
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200144 on_each_cpu(__cpa_flush_all, (void *) cache, 1);
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100145}
146
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100147static void __cpa_flush_range(void *arg)
148{
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100149 /*
150 * We could optimize that further and do individual per page
151 * tlb invalidates for a low number of pages. Caveat: we must
152 * flush the high aliases on 64bit as well.
153 */
154 __flush_tlb_all();
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100155}
156
Andi Kleen6bb83832008-02-04 16:48:06 +0100157static void cpa_flush_range(unsigned long start, int numpages, int cache)
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100158{
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100159 unsigned int i, level;
160 unsigned long addr;
161
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100162 BUG_ON(irqs_disabled());
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100163 WARN_ON(PAGE_ALIGN(start) != start);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100164
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200165 on_each_cpu(__cpa_flush_range, NULL, 1);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100166
Andi Kleen6bb83832008-02-04 16:48:06 +0100167 if (!cache)
168 return;
169
Thomas Gleixner3b233e52008-01-30 13:34:08 +0100170 /*
171 * We only need to flush on one CPU,
172 * clflush is a MESI-coherent instruction that
173 * will cause all other CPUs to flush the same
174 * cachelines:
175 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100176 for (i = 0, addr = start; i < numpages; i++, addr += PAGE_SIZE) {
177 pte_t *pte = lookup_address(addr, &level);
178
179 /*
180 * Only flush present addresses:
181 */
Thomas Gleixner7bfb72e2008-02-04 16:48:08 +0100182 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100183 clflush_cache_range((void *) addr, PAGE_SIZE);
184 }
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100185}
186
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100187/*
Arjan van de Vened724be2008-01-30 13:34:04 +0100188 * Certain areas of memory on x86 require very specific protection flags,
189 * for example the BIOS area or kernel text. Callers don't always get this
190 * right (again, ioremap() on BIOS memory is not uncommon) so this function
191 * checks and fixes these known static required protection bits.
192 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100193static inline pgprot_t static_protections(pgprot_t prot, unsigned long address,
194 unsigned long pfn)
Arjan van de Vened724be2008-01-30 13:34:04 +0100195{
196 pgprot_t forbidden = __pgprot(0);
197
Ingo Molnar687c4822008-01-30 13:34:04 +0100198 /*
Arjan van de Vened724be2008-01-30 13:34:04 +0100199 * The BIOS area between 640k and 1Mb needs to be executable for
200 * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support.
Ingo Molnar687c4822008-01-30 13:34:04 +0100201 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100202 if (within(pfn, BIOS_BEGIN >> PAGE_SHIFT, BIOS_END >> PAGE_SHIFT))
Arjan van de Vened724be2008-01-30 13:34:04 +0100203 pgprot_val(forbidden) |= _PAGE_NX;
204
205 /*
206 * The kernel text needs to be executable for obvious reasons
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100207 * Does not cover __inittext since that is gone later on. On
208 * 64bit we do not enforce !NX on the low mapping
Arjan van de Vened724be2008-01-30 13:34:04 +0100209 */
210 if (within(address, (unsigned long)_text, (unsigned long)_etext))
211 pgprot_val(forbidden) |= _PAGE_NX;
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100212
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100213 /*
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100214 * The .rodata section needs to be read-only. Using the pfn
215 * catches all aliases.
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100216 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100217 if (within(pfn, __pa((unsigned long)__start_rodata) >> PAGE_SHIFT,
218 __pa((unsigned long)__end_rodata) >> PAGE_SHIFT))
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100219 pgprot_val(forbidden) |= _PAGE_RW;
Arjan van de Vened724be2008-01-30 13:34:04 +0100220
221 prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden));
Ingo Molnar687c4822008-01-30 13:34:04 +0100222
223 return prot;
224}
225
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100226/*
227 * Lookup the page table entry for a virtual address. Return a pointer
228 * to the entry and the level of the mapping.
229 *
230 * Note: We return pud and pmd either when the entry is marked large
231 * or when the present bit is not set. Otherwise we would return a
232 * pointer to a nonexisting mapping.
233 */
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100234pte_t *lookup_address(unsigned long address, unsigned int *level)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100235{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 pgd_t *pgd = pgd_offset_k(address);
237 pud_t *pud;
238 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100239
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100240 *level = PG_LEVEL_NONE;
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 if (pgd_none(*pgd))
243 return NULL;
Ingo Molnar9df84992008-02-04 16:48:09 +0100244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 pud = pud_offset(pgd, address);
246 if (pud_none(*pud))
247 return NULL;
Andi Kleenc2f71ee2008-02-04 16:48:09 +0100248
249 *level = PG_LEVEL_1G;
250 if (pud_large(*pud) || !pud_present(*pud))
251 return (pte_t *)pud;
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 pmd = pmd_offset(pud, address);
254 if (pmd_none(*pmd))
255 return NULL;
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100256
257 *level = PG_LEVEL_2M;
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100258 if (pmd_large(*pmd) || !pmd_present(*pmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return (pte_t *)pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100261 *level = PG_LEVEL_4K;
Ingo Molnar9df84992008-02-04 16:48:09 +0100262
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100263 return pte_offset_kernel(pmd, address);
264}
Pekka Paalanen75bb8832008-05-12 21:20:56 +0200265EXPORT_SYMBOL_GPL(lookup_address);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100266
Ingo Molnar9df84992008-02-04 16:48:09 +0100267/*
268 * Set the new pmd in all the pgds we know about:
269 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100270static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100271{
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100272 /* change init_mm */
273 set_pte_atomic(kpte, pte);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100274#ifdef CONFIG_X86_32
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100275 if (!SHARED_KERNEL_PMD) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100276 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Jeremy Fitzhardingee3ed9102008-01-30 13:34:11 +0100278 list_for_each_entry(page, &pgd_list, lru) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100279 pgd_t *pgd;
280 pud_t *pud;
281 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100282
Ingo Molnar44af6c42008-01-30 13:34:03 +0100283 pgd = (pgd_t *)page_address(page) + pgd_index(address);
284 pud = pud_offset(pgd, address);
285 pmd = pmd_offset(pud, address);
286 set_pte_atomic((pte_t *)pmd, pte);
287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100289#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
Ingo Molnar9df84992008-02-04 16:48:09 +0100292static int
293try_preserve_large_page(pte_t *kpte, unsigned long address,
294 struct cpa_data *cpa)
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100295{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100296 unsigned long nextpage_addr, numpages, pmask, psize, flags, addr, pfn;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100297 pte_t new_pte, old_pte, *tmp;
298 pgprot_t old_prot, new_prot;
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100299 int i, do_split = 1;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100300 unsigned int level;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100301
Andi Kleenc9caa022008-03-12 03:53:29 +0100302 if (cpa->force_split)
303 return 1;
304
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100305 spin_lock_irqsave(&pgd_lock, flags);
306 /*
307 * Check for races, another CPU might have split this page
308 * up already:
309 */
310 tmp = lookup_address(address, &level);
311 if (tmp != kpte)
312 goto out_unlock;
313
314 switch (level) {
315 case PG_LEVEL_2M:
Andi Kleen31422c52008-02-04 16:48:08 +0100316 psize = PMD_PAGE_SIZE;
317 pmask = PMD_PAGE_MASK;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100318 break;
Andi Kleenf07333f2008-02-04 16:48:09 +0100319#ifdef CONFIG_X86_64
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100320 case PG_LEVEL_1G:
Andi Kleen5d3c8b22008-02-13 16:20:35 +0100321 psize = PUD_PAGE_SIZE;
322 pmask = PUD_PAGE_MASK;
Andi Kleenf07333f2008-02-04 16:48:09 +0100323 break;
324#endif
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100325 default:
Ingo Molnarbeaff632008-02-04 16:48:09 +0100326 do_split = -EINVAL;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100327 goto out_unlock;
328 }
329
330 /*
331 * Calculate the number of pages, which fit into this large
332 * page starting at address:
333 */
334 nextpage_addr = (address + psize) & pmask;
335 numpages = (nextpage_addr - address) >> PAGE_SHIFT;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100336 if (numpages < cpa->numpages)
337 cpa->numpages = numpages;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100338
339 /*
340 * We are safe now. Check whether the new pgprot is the same:
341 */
342 old_pte = *kpte;
343 old_prot = new_prot = pte_pgprot(old_pte);
344
345 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
346 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100347
348 /*
349 * old_pte points to the large page base address. So we need
350 * to add the offset of the virtual address:
351 */
352 pfn = pte_pfn(old_pte) + ((address & (psize - 1)) >> PAGE_SHIFT);
353 cpa->pfn = pfn;
354
355 new_prot = static_protections(new_prot, address, pfn);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100356
357 /*
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100358 * We need to check the full range, whether
359 * static_protection() requires a different pgprot for one of
360 * the pages in the range we try to preserve:
361 */
362 addr = address + PAGE_SIZE;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100363 pfn++;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100364 for (i = 1; i < cpa->numpages; i++, addr += PAGE_SIZE, pfn++) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100365 pgprot_t chk_prot = static_protections(new_prot, addr, pfn);
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100366
367 if (pgprot_val(chk_prot) != pgprot_val(new_prot))
368 goto out_unlock;
369 }
370
371 /*
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100372 * If there are no changes, return. maxpages has been updated
373 * above:
374 */
375 if (pgprot_val(new_prot) == pgprot_val(old_prot)) {
Ingo Molnarbeaff632008-02-04 16:48:09 +0100376 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100377 goto out_unlock;
378 }
379
380 /*
381 * We need to change the attributes. Check, whether we can
382 * change the large page in one go. We request a split, when
383 * the address is not aligned and the number of pages is
384 * smaller than the number of pages in the large page. Note
385 * that we limited the number of possible pages already to
386 * the number of pages in the large page.
387 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100388 if (address == (nextpage_addr - psize) && cpa->numpages == numpages) {
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100389 /*
390 * The address is aligned and the number of pages
391 * covers the full page.
392 */
393 new_pte = pfn_pte(pte_pfn(old_pte), canon_pgprot(new_prot));
394 __set_pmd_pte(kpte, address, new_pte);
395 cpa->flushtlb = 1;
Ingo Molnarbeaff632008-02-04 16:48:09 +0100396 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100397 }
398
399out_unlock:
400 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnar9df84992008-02-04 16:48:09 +0100401
Ingo Molnarbeaff632008-02-04 16:48:09 +0100402 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100403}
404
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100405static LIST_HEAD(page_pool);
406static unsigned long pool_size, pool_pages, pool_low;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100407static unsigned long pool_used, pool_failed;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100408
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100409static void cpa_fill_pool(struct page **ret)
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100410{
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100411 gfp_t gfp = GFP_KERNEL;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100412 unsigned long flags;
413 struct page *p;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100414
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100415 /*
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100416 * Avoid recursion (on debug-pagealloc) and also signal
417 * our priority to get to these pagetables:
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100418 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100419 if (current->flags & PF_MEMALLOC)
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100420 return;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100421 current->flags |= PF_MEMALLOC;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100422
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100423 /*
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100424 * Allocate atomically from atomic contexts:
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100425 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100426 if (in_atomic() || irqs_disabled() || debug_pagealloc)
427 gfp = GFP_ATOMIC | __GFP_NORETRY | __GFP_NOWARN;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100428
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100429 while (pool_pages < pool_size || (ret && !*ret)) {
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100430 p = alloc_pages(gfp, 0);
431 if (!p) {
432 pool_failed++;
433 break;
434 }
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100435 /*
436 * If the call site needs a page right now, provide it:
437 */
438 if (ret && !*ret) {
439 *ret = p;
440 continue;
441 }
442 spin_lock_irqsave(&pgd_lock, flags);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100443 list_add(&p->lru, &page_pool);
444 pool_pages++;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100445 spin_unlock_irqrestore(&pgd_lock, flags);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100446 }
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100447
448 current->flags &= ~PF_MEMALLOC;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100449}
450
451#define SHIFT_MB (20 - PAGE_SHIFT)
452#define ROUND_MB_GB ((1 << 10) - 1)
453#define SHIFT_MB_GB 10
454#define POOL_PAGES_PER_GB 16
455
456void __init cpa_init(void)
457{
458 struct sysinfo si;
459 unsigned long gb;
460
461 si_meminfo(&si);
462 /*
463 * Calculate the number of pool pages:
464 *
465 * Convert totalram (nr of pages) to MiB and round to the next
466 * GiB. Shift MiB to Gib and multiply the result by
467 * POOL_PAGES_PER_GB:
468 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100469 if (debug_pagealloc) {
470 gb = ((si.totalram >> SHIFT_MB) + ROUND_MB_GB) >> SHIFT_MB_GB;
471 pool_size = POOL_PAGES_PER_GB * gb;
472 } else {
473 pool_size = 1;
474 }
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100475 pool_low = pool_size;
476
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100477 cpa_fill_pool(NULL);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100478 printk(KERN_DEBUG
479 "CPA: page pool initialized %lu of %lu pages preallocated\n",
480 pool_pages, pool_size);
481}
482
Ingo Molnar7afe15b2008-01-30 13:33:57 +0100483static int split_large_page(pte_t *kpte, unsigned long address)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100484{
Thomas Gleixner7b610ee2008-02-04 16:48:10 +0100485 unsigned long flags, pfn, pfninc = 1;
Ingo Molnar86f03982008-01-30 13:34:09 +0100486 unsigned int i, level;
Ingo Molnar9df84992008-02-04 16:48:09 +0100487 pte_t *pbase, *tmp;
488 pgprot_t ref_prot;
489 struct page *base;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100490
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100491 /*
492 * Get a page from the pool. The pool list is protected by the
493 * pgd_lock, which we have to take anyway for the split
494 * operation:
495 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100496 spin_lock_irqsave(&pgd_lock, flags);
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100497 if (list_empty(&page_pool)) {
498 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100499 base = NULL;
500 cpa_fill_pool(&base);
501 if (!base)
502 return -ENOMEM;
503 spin_lock_irqsave(&pgd_lock, flags);
504 } else {
505 base = list_first_entry(&page_pool, struct page, lru);
506 list_del(&base->lru);
507 pool_pages--;
508
509 if (pool_pages < pool_low)
510 pool_low = pool_pages;
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100511 }
512
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100513 /*
514 * Check for races, another CPU might have split this page
515 * up for us already:
516 */
517 tmp = lookup_address(address, &level);
Ingo Molnar6ce9fc12008-02-04 16:48:08 +0100518 if (tmp != kpte)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100519 goto out_unlock;
520
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100521 pbase = (pte_t *)page_address(base);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700522 paravirt_alloc_pte(&init_mm, page_to_pfn(base));
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100523 ref_prot = pte_pgprot(pte_clrhuge(*kpte));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100524
Andi Kleenf07333f2008-02-04 16:48:09 +0100525#ifdef CONFIG_X86_64
526 if (level == PG_LEVEL_1G) {
527 pfninc = PMD_PAGE_SIZE >> PAGE_SHIFT;
528 pgprot_val(ref_prot) |= _PAGE_PSE;
Andi Kleenf07333f2008-02-04 16:48:09 +0100529 }
530#endif
531
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100532 /*
533 * Get the target pfn from the original entry:
534 */
535 pfn = pte_pfn(*kpte);
Andi Kleenf07333f2008-02-04 16:48:09 +0100536 for (i = 0; i < PTRS_PER_PTE; i++, pfn += pfninc)
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100537 set_pte(&pbase[i], pfn_pte(pfn, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100538
Andi Kleence0c0e52008-05-02 11:46:49 +0200539 if (address >= (unsigned long)__va(0) &&
Yinghai Luf361a452008-07-10 20:38:26 -0700540 address < (unsigned long)__va(max_low_pfn_mapped << PAGE_SHIFT))
541 split_page_count(level);
542
543#ifdef CONFIG_X86_64
544 if (address >= (unsigned long)__va(1UL<<32) &&
Thomas Gleixner65280e62008-05-05 16:35:21 +0200545 address < (unsigned long)__va(max_pfn_mapped << PAGE_SHIFT))
546 split_page_count(level);
Yinghai Luf361a452008-07-10 20:38:26 -0700547#endif
Andi Kleence0c0e52008-05-02 11:46:49 +0200548
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100549 /*
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100550 * Install the new, split up pagetable. Important details here:
Huang, Ying4c881ca2008-01-30 13:34:04 +0100551 *
552 * On Intel the NX bit of all levels must be cleared to make a
553 * page executable. See section 4.13.2 of Intel 64 and IA-32
554 * Architectures Software Developer's Manual).
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100555 *
556 * Mark the entry present. The current mapping might be
557 * set to not present, which we preserved above.
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100558 */
Huang, Ying4c881ca2008-01-30 13:34:04 +0100559 ref_prot = pte_pgprot(pte_mkexec(pte_clrhuge(*kpte)));
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100560 pgprot_val(ref_prot) |= _PAGE_PRESENT;
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100561 __set_pmd_pte(kpte, address, mk_pte(base, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100562 base = NULL;
563
564out_unlock:
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100565 /*
566 * If we dropped out via the lookup_address check under
567 * pgd_lock then stick the page back into the pool:
568 */
569 if (base) {
570 list_add(&base->lru, &page_pool);
571 pool_pages++;
572 } else
573 pool_used++;
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100574 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100575
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100576 return 0;
577}
578
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100579static int __change_page_attr(struct cpa_data *cpa, int primary)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100580{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100581 unsigned long address = cpa->vaddr;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100582 int do_split, err;
583 unsigned int level;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100584 pte_t *kpte, old_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Ingo Molnar97f99fe2008-01-30 13:33:55 +0100586repeat:
Ingo Molnarf0646e42008-01-30 13:33:43 +0100587 kpte = lookup_address(address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if (!kpte)
Ingo Molnard1a4be62008-04-18 21:32:22 +0200589 return 0;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100590
591 old_pte = *kpte;
592 if (!pte_val(old_pte)) {
593 if (!primary)
594 return 0;
595 printk(KERN_WARNING "CPA: called for zero pte. "
596 "vaddr = %lx cpa->vaddr = %lx\n", address,
597 cpa->vaddr);
598 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 return -EINVAL;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100600 }
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100601
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100602 if (level == PG_LEVEL_4K) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100603 pte_t new_pte;
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100604 pgprot_t new_prot = pte_pgprot(old_pte);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100605 unsigned long pfn = pte_pfn(old_pte);
Thomas Gleixnera72a08a2008-01-30 13:34:07 +0100606
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100607 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
608 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Ingo Molnar86f03982008-01-30 13:34:09 +0100609
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100610 new_prot = static_protections(new_prot, address, pfn);
Ingo Molnar86f03982008-01-30 13:34:09 +0100611
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100612 /*
613 * We need to keep the pfn from the existing PTE,
614 * after all we're only going to change it's attributes
615 * not the memory it points to
616 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100617 new_pte = pfn_pte(pfn, canon_pgprot(new_prot));
618 cpa->pfn = pfn;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100619 /*
620 * Do we really change anything ?
621 */
622 if (pte_val(old_pte) != pte_val(new_pte)) {
623 set_pte_atomic(kpte, new_pte);
624 cpa->flushtlb = 1;
625 }
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100626 cpa->numpages = 1;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100627 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 }
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100629
630 /*
631 * Check, whether we can keep the large page intact
632 * and just change the pte:
633 */
Ingo Molnarbeaff632008-02-04 16:48:09 +0100634 do_split = try_preserve_large_page(kpte, address, cpa);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100635 /*
636 * When the range fits into the existing large page,
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100637 * return. cp->numpages and cpa->tlbflush have been updated in
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100638 * try_large_page:
639 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100640 if (do_split <= 0)
641 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100642
643 /*
644 * We have to split the large page:
645 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100646 err = split_large_page(kpte, address);
647 if (!err) {
648 cpa->flushtlb = 1;
649 goto repeat;
650 }
Ingo Molnarbeaff632008-02-04 16:48:09 +0100651
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100652 return err;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100653}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100655static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias);
656
657static int cpa_process_alias(struct cpa_data *cpa)
Ingo Molnar44af6c42008-01-30 13:34:03 +0100658{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100659 struct cpa_data alias_cpa;
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100660 int ret = 0;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100661
Yinghai Lu965194c2008-07-12 14:31:28 -0700662 if (cpa->pfn >= max_pfn_mapped)
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100663 return 0;
664
Yinghai Luf361a452008-07-10 20:38:26 -0700665#ifdef CONFIG_X86_64
Yinghai Lu965194c2008-07-12 14:31:28 -0700666 if (cpa->pfn >= max_low_pfn_mapped && cpa->pfn < (1UL<<(32-PAGE_SHIFT)))
Yinghai Luf361a452008-07-10 20:38:26 -0700667 return 0;
668#endif
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100669 /*
670 * No need to redo, when the primary call touched the direct
671 * mapping already:
672 */
Yinghai Luf361a452008-07-10 20:38:26 -0700673 if (!(within(cpa->vaddr, PAGE_OFFSET,
674 PAGE_OFFSET + (max_low_pfn_mapped << PAGE_SHIFT))
675#ifdef CONFIG_X86_64
676 || within(cpa->vaddr, PAGE_OFFSET + (1UL<<32),
677 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT))
678#endif
679 )) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100680
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100681 alias_cpa = *cpa;
682 alias_cpa.vaddr = (unsigned long) __va(cpa->pfn << PAGE_SHIFT);
683
684 ret = __change_page_attr_set_clr(&alias_cpa, 0);
685 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100686
Arjan van de Ven488fd992008-01-30 13:34:07 +0100687#ifdef CONFIG_X86_64
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100688 if (ret)
689 return ret;
Thomas Gleixner08797502008-01-30 13:34:09 +0100690 /*
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100691 * No need to redo, when the primary call touched the high
692 * mapping already:
693 */
694 if (within(cpa->vaddr, (unsigned long) _text, (unsigned long) _end))
695 return 0;
696
697 /*
Thomas Gleixner08797502008-01-30 13:34:09 +0100698 * If the physical address is inside the kernel map, we need
699 * to touch the high mapped kernel as well:
700 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100701 if (!within(cpa->pfn, highmap_start_pfn(), highmap_end_pfn()))
702 return 0;
Thomas Gleixner08797502008-01-30 13:34:09 +0100703
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100704 alias_cpa = *cpa;
705 alias_cpa.vaddr =
706 (cpa->pfn << PAGE_SHIFT) + __START_KERNEL_map - phys_base;
707
708 /*
709 * The high mapping range is imprecise, so ignore the return value.
710 */
711 __change_page_attr_set_clr(&alias_cpa, 0);
Thomas Gleixner08797502008-01-30 13:34:09 +0100712#endif
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100713 return ret;
Ingo Molnar44af6c42008-01-30 13:34:03 +0100714}
715
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100716static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100717{
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100718 int ret, numpages = cpa->numpages;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100719
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100720 while (numpages) {
721 /*
722 * Store the remaining nr of pages for the large page
723 * preservation check.
724 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100725 cpa->numpages = numpages;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100726
727 ret = __change_page_attr(cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100728 if (ret)
729 return ret;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100730
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100731 if (checkalias) {
732 ret = cpa_process_alias(cpa);
733 if (ret)
734 return ret;
735 }
736
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100737 /*
738 * Adjust the number of pages with the result of the
739 * CPA operation. Either a large page has been
740 * preserved or a single page update happened.
741 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100742 BUG_ON(cpa->numpages > numpages);
743 numpages -= cpa->numpages;
744 cpa->vaddr += cpa->numpages * PAGE_SIZE;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100745 }
Thomas Gleixnerff314522008-01-30 13:34:08 +0100746 return 0;
747}
748
Andi Kleen6bb83832008-02-04 16:48:06 +0100749static inline int cache_attr(pgprot_t attr)
750{
751 return pgprot_val(attr) &
752 (_PAGE_PAT | _PAGE_PAT_LARGE | _PAGE_PWT | _PAGE_PCD);
753}
754
Shaohua Li1ac2f7d2008-08-04 14:51:24 +0800755static int do_change_page_attr_set_clr(unsigned long addr, int numpages,
Andi Kleenc9caa022008-03-12 03:53:29 +0100756 pgprot_t mask_set, pgprot_t mask_clr,
Shaohua Li1ac2f7d2008-08-04 14:51:24 +0800757 int force_split, int *tlb_flush)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100758{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100759 struct cpa_data cpa;
Shaohua Li1ac2f7d2008-08-04 14:51:24 +0800760 int ret, checkalias;
Thomas Gleixner331e4062008-02-04 16:48:06 +0100761
762 /*
763 * Check, if we are requested to change a not supported
764 * feature:
765 */
766 mask_set = canon_pgprot(mask_set);
767 mask_clr = canon_pgprot(mask_clr);
Andi Kleenc9caa022008-03-12 03:53:29 +0100768 if (!pgprot_val(mask_set) && !pgprot_val(mask_clr) && !force_split)
Thomas Gleixner331e4062008-02-04 16:48:06 +0100769 return 0;
770
Thomas Gleixner69b14152008-02-13 11:04:50 +0100771 /* Ensure we are PAGE_SIZE aligned */
772 if (addr & ~PAGE_MASK) {
773 addr &= PAGE_MASK;
774 /*
775 * People should not be passing in unaligned addresses:
776 */
777 WARN_ON_ONCE(1);
778 }
779
Nick Piggin5843d9a2008-08-01 03:15:21 +0200780 /* Must avoid aliasing mappings in the highmem code */
781 kmap_flush_unused();
782
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100783 cpa.vaddr = addr;
784 cpa.numpages = numpages;
785 cpa.mask_set = mask_set;
786 cpa.mask_clr = mask_clr;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100787 cpa.flushtlb = 0;
Andi Kleenc9caa022008-03-12 03:53:29 +0100788 cpa.force_split = force_split;
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100789
Thomas Gleixneraf96e442008-02-15 21:49:46 +0100790 /* No alias checking for _NX bit modifications */
791 checkalias = (pgprot_val(mask_set) | pgprot_val(mask_clr)) != _PAGE_NX;
792
793 ret = __change_page_attr_set_clr(&cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100794
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100795 /*
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100796 * Check whether we really changed something:
797 */
Shaohua Li1ac2f7d2008-08-04 14:51:24 +0800798 *tlb_flush = cpa.flushtlb;
799 cpa_fill_pool(NULL);
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100800
Shaohua Li1ac2f7d2008-08-04 14:51:24 +0800801 return ret;
802}
803
804static int change_page_attr_set_clr(unsigned long addr, int numpages,
805 pgprot_t mask_set, pgprot_t mask_clr,
806 int force_split)
807{
808 int cache, flush_cache = 0, ret;
809
810 ret = do_change_page_attr_set_clr(addr, numpages, mask_set, mask_clr,
811 force_split, &flush_cache);
812 if (!flush_cache)
813 goto out;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100814 /*
Andi Kleen6bb83832008-02-04 16:48:06 +0100815 * No need to flush, when we did not set any of the caching
816 * attributes:
817 */
818 cache = cache_attr(mask_set);
819
820 /*
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100821 * On success we use clflush, when the CPU supports it to
822 * avoid the wbindv. If the CPU does not support it and in the
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100823 * error case we fall back to cpa_flush_all (which uses
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100824 * wbindv):
825 */
826 if (!ret && cpu_has_clflush)
Andi Kleen6bb83832008-02-04 16:48:06 +0100827 cpa_flush_range(addr, numpages, cache);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100828 else
Andi Kleen6bb83832008-02-04 16:48:06 +0100829 cpa_flush_all(cache);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100830out:
Thomas Gleixnerff314522008-01-30 13:34:08 +0100831 return ret;
832}
833
Thomas Gleixner56744542008-01-30 13:34:08 +0100834static inline int change_page_attr_set(unsigned long addr, int numpages,
835 pgprot_t mask)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100836{
Andi Kleenc9caa022008-03-12 03:53:29 +0100837 return change_page_attr_set_clr(addr, numpages, mask, __pgprot(0), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100838}
839
Thomas Gleixner56744542008-01-30 13:34:08 +0100840static inline int change_page_attr_clear(unsigned long addr, int numpages,
841 pgprot_t mask)
Thomas Gleixner72932c72008-01-30 13:34:08 +0100842{
Andi Kleenc9caa022008-03-12 03:53:29 +0100843 return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask, 0);
Thomas Gleixner72932c72008-01-30 13:34:08 +0100844}
845
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700846int _set_memory_uc(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100847{
Suresh Siddhade33c442008-04-25 17:07:22 -0700848 /*
849 * for now UC MINUS. see comments in ioremap_nocache()
850 */
Thomas Gleixner72932c72008-01-30 13:34:08 +0100851 return change_page_attr_set(addr, numpages,
Suresh Siddhade33c442008-04-25 17:07:22 -0700852 __pgprot(_PAGE_CACHE_UC_MINUS));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100853}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700854
855int set_memory_uc(unsigned long addr, int numpages)
856{
Suresh Siddhade33c442008-04-25 17:07:22 -0700857 /*
858 * for now UC MINUS. see comments in ioremap_nocache()
859 */
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700860 if (reserve_memtype(addr, addr + numpages * PAGE_SIZE,
Suresh Siddhade33c442008-04-25 17:07:22 -0700861 _PAGE_CACHE_UC_MINUS, NULL))
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700862 return -EINVAL;
863
864 return _set_memory_uc(addr, numpages);
865}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100866EXPORT_SYMBOL(set_memory_uc);
867
Shaohua Li1ac2f7d2008-08-04 14:51:24 +0800868int set_memory_uc_noflush(unsigned long addr, int numpages)
869{
870 int flush;
871 /*
872 * for now UC MINUS. see comments in ioremap_nocache()
873 */
874 if (reserve_memtype(addr, addr + numpages * PAGE_SIZE,
875 _PAGE_CACHE_UC_MINUS, NULL))
876 return -EINVAL;
877 /*
878 * for now UC MINUS. see comments in ioremap_nocache()
879 */
880 return do_change_page_attr_set_clr(addr, numpages,
881 __pgprot(_PAGE_CACHE_UC_MINUS),
882 __pgprot(0), 0, &flush);
883}
884EXPORT_SYMBOL(set_memory_uc_noflush);
885
886void set_memory_flush_all(void)
887{
888 cpa_flush_all(1);
889}
890EXPORT_SYMBOL(set_memory_flush_all);
891
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700892int _set_memory_wc(unsigned long addr, int numpages)
893{
894 return change_page_attr_set(addr, numpages,
895 __pgprot(_PAGE_CACHE_WC));
896}
897
898int set_memory_wc(unsigned long addr, int numpages)
899{
Andreas Herrmann499f8f82008-06-10 16:06:21 +0200900 if (!pat_enabled)
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700901 return set_memory_uc(addr, numpages);
902
903 if (reserve_memtype(addr, addr + numpages * PAGE_SIZE,
904 _PAGE_CACHE_WC, NULL))
905 return -EINVAL;
906
907 return _set_memory_wc(addr, numpages);
908}
909EXPORT_SYMBOL(set_memory_wc);
910
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700911int _set_memory_wb(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100912{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100913 return change_page_attr_clear(addr, numpages,
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700914 __pgprot(_PAGE_CACHE_MASK));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100915}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700916
917int set_memory_wb(unsigned long addr, int numpages)
918{
919 free_memtype(addr, addr + numpages * PAGE_SIZE);
920
921 return _set_memory_wb(addr, numpages);
922}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100923EXPORT_SYMBOL(set_memory_wb);
924
925int set_memory_x(unsigned long addr, int numpages)
926{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100927 return change_page_attr_clear(addr, numpages, __pgprot(_PAGE_NX));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100928}
929EXPORT_SYMBOL(set_memory_x);
930
931int set_memory_nx(unsigned long addr, int numpages)
932{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100933 return change_page_attr_set(addr, numpages, __pgprot(_PAGE_NX));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100934}
935EXPORT_SYMBOL(set_memory_nx);
936
937int set_memory_ro(unsigned long addr, int numpages)
938{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100939 return change_page_attr_clear(addr, numpages, __pgprot(_PAGE_RW));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100940}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100941
942int set_memory_rw(unsigned long addr, int numpages)
943{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100944 return change_page_attr_set(addr, numpages, __pgprot(_PAGE_RW));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100945}
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100946
947int set_memory_np(unsigned long addr, int numpages)
948{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100949 return change_page_attr_clear(addr, numpages, __pgprot(_PAGE_PRESENT));
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100950}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100951
Andi Kleenc9caa022008-03-12 03:53:29 +0100952int set_memory_4k(unsigned long addr, int numpages)
953{
954 return change_page_attr_set_clr(addr, numpages, __pgprot(0),
955 __pgprot(0), 1);
956}
957
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100958int set_pages_uc(struct page *page, int numpages)
959{
960 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100961
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100962 return set_memory_uc(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100963}
964EXPORT_SYMBOL(set_pages_uc);
965
Shaohua Li1ac2f7d2008-08-04 14:51:24 +0800966int set_pages_uc_noflush(struct page *page, int numpages)
967{
968 unsigned long addr = (unsigned long)page_address(page);
969
970 return set_memory_uc_noflush(addr, numpages);
971}
972EXPORT_SYMBOL(set_pages_uc_noflush);
973
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100974int set_pages_wb(struct page *page, int numpages)
975{
976 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100977
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100978 return set_memory_wb(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100979}
980EXPORT_SYMBOL(set_pages_wb);
981
982int set_pages_x(struct page *page, int numpages)
983{
984 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100985
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100986 return set_memory_x(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100987}
988EXPORT_SYMBOL(set_pages_x);
989
990int set_pages_nx(struct page *page, int numpages)
991{
992 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100993
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100994 return set_memory_nx(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100995}
996EXPORT_SYMBOL(set_pages_nx);
997
998int set_pages_ro(struct page *page, int numpages)
999{
1000 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001001
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001002 return set_memory_ro(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001003}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001004
1005int set_pages_rw(struct page *page, int numpages)
1006{
1007 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001008
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001009 return set_memory_rw(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001010}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012#ifdef CONFIG_DEBUG_PAGEALLOC
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001013
1014static int __set_pages_p(struct page *page, int numpages)
1015{
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001016 struct cpa_data cpa = { .vaddr = (unsigned long) page_address(page),
1017 .numpages = numpages,
1018 .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW),
1019 .mask_clr = __pgprot(0)};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001020
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001021 return __change_page_attr_set_clr(&cpa, 1);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001022}
1023
1024static int __set_pages_np(struct page *page, int numpages)
1025{
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001026 struct cpa_data cpa = { .vaddr = (unsigned long) page_address(page),
1027 .numpages = numpages,
1028 .mask_set = __pgprot(0),
1029 .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW)};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001030
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001031 return __change_page_attr_set_clr(&cpa, 1);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001032}
1033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034void kernel_map_pages(struct page *page, int numpages, int enable)
1035{
1036 if (PageHighMem(page))
1037 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001038 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -07001039 debug_check_no_locks_freed(page_address(page),
1040 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001041 }
Ingo Molnarde5097c2006-01-09 15:59:21 -08001042
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001043 /*
Ingo Molnar12d6f212008-01-30 13:33:58 +01001044 * If page allocator is not up yet then do not call c_p_a():
1045 */
1046 if (!debug_pagealloc_enabled)
1047 return;
1048
1049 /*
Ingo Molnarf8d84062008-02-13 14:09:53 +01001050 * The return value is ignored as the calls cannot fail.
1051 * Large pages are kept enabled at boot time, and are
1052 * split up quickly with DEBUG_PAGEALLOC. If a splitup
1053 * fails here (due to temporary memory shortage) no damage
1054 * is done because we just keep the largepage intact up
1055 * to the next attempt when it will likely be split up:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 */
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001057 if (enable)
1058 __set_pages_p(page, numpages);
1059 else
1060 __set_pages_np(page, numpages);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001061
1062 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +01001063 * We should perform an IPI and flush all tlbs,
1064 * but that can deadlock->flush only current cpu:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 */
1066 __flush_tlb_all();
Thomas Gleixner76ebd052008-02-09 23:24:09 +01001067
1068 /*
1069 * Try to refill the page pool here. We can do this only after
1070 * the tlb flush.
1071 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +01001072 cpa_fill_pool(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073}
Rafael J. Wysocki8a235ef2008-02-20 01:47:44 +01001074
Thomas Gleixneree7ae7a2008-04-17 17:40:45 +02001075#ifdef CONFIG_DEBUG_FS
1076static int dpa_show(struct seq_file *m, void *v)
1077{
1078 seq_puts(m, "DEBUG_PAGEALLOC\n");
1079 seq_printf(m, "pool_size : %lu\n", pool_size);
1080 seq_printf(m, "pool_pages : %lu\n", pool_pages);
1081 seq_printf(m, "pool_low : %lu\n", pool_low);
1082 seq_printf(m, "pool_used : %lu\n", pool_used);
1083 seq_printf(m, "pool_failed : %lu\n", pool_failed);
1084
1085 return 0;
1086}
1087
1088static int dpa_open(struct inode *inode, struct file *filp)
1089{
1090 return single_open(filp, dpa_show, NULL);
1091}
1092
1093static const struct file_operations dpa_fops = {
1094 .open = dpa_open,
1095 .read = seq_read,
1096 .llseek = seq_lseek,
1097 .release = single_release,
1098};
1099
Ingo Molnara4928cf2008-04-23 13:20:56 +02001100static int __init debug_pagealloc_proc_init(void)
Thomas Gleixneree7ae7a2008-04-17 17:40:45 +02001101{
1102 struct dentry *de;
1103
1104 de = debugfs_create_file("debug_pagealloc", 0600, NULL, NULL,
1105 &dpa_fops);
1106 if (!de)
1107 return -ENOMEM;
1108
1109 return 0;
1110}
1111__initcall(debug_pagealloc_proc_init);
1112#endif
1113
Rafael J. Wysocki8a235ef2008-02-20 01:47:44 +01001114#ifdef CONFIG_HIBERNATION
1115
1116bool kernel_page_present(struct page *page)
1117{
1118 unsigned int level;
1119 pte_t *pte;
1120
1121 if (PageHighMem(page))
1122 return false;
1123
1124 pte = lookup_address((unsigned long)page_address(page), &level);
1125 return (pte_val(*pte) & _PAGE_PRESENT);
1126}
1127
1128#endif /* CONFIG_HIBERNATION */
1129
1130#endif /* CONFIG_DEBUG_PAGEALLOC */
Arjan van de Vend1028a12008-01-30 13:34:07 +01001131
1132/*
1133 * The testcases use internal knowledge of the implementation that shouldn't
1134 * be exposed to the rest of the kernel. Include these directly here.
1135 */
1136#ifdef CONFIG_CPA_DEBUG
1137#include "pageattr-test.c"
1138#endif