blob: 668205bca15eb46ae3a6871294b08e7943364190 [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
Andi Kleence0c0e52008-05-02 11:46:49 +020037static unsigned long direct_pages_count[PG_LEVEL_NUM];
38
39void __meminit update_page_count(int level, unsigned long pages)
40{
41#ifdef CONFIG_PROC_FS
42 unsigned long flags;
43 /* Protect against CPA */
44 spin_lock_irqsave(&pgd_lock, flags);
45 direct_pages_count[level] += pages;
46 spin_unlock_irqrestore(&pgd_lock, flags);
47#endif
48}
49
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010050#ifdef CONFIG_X86_64
51
52static inline unsigned long highmap_start_pfn(void)
53{
54 return __pa(_text) >> PAGE_SHIFT;
55}
56
57static inline unsigned long highmap_end_pfn(void)
58{
59 return __pa(round_up((unsigned long)_end, PMD_SIZE)) >> PAGE_SHIFT;
60}
61
62#endif
63
Ingo Molnar92cb54a2008-02-13 14:37:52 +010064#ifdef CONFIG_DEBUG_PAGEALLOC
65# define debug_pagealloc 1
66#else
67# define debug_pagealloc 0
68#endif
69
Arjan van de Vened724be2008-01-30 13:34:04 +010070static inline int
71within(unsigned long addr, unsigned long start, unsigned long end)
Ingo Molnar687c4822008-01-30 13:34:04 +010072{
Arjan van de Vened724be2008-01-30 13:34:04 +010073 return addr >= start && addr < end;
74}
75
76/*
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010077 * Flushing functions
78 */
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +010079
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +010080/**
81 * clflush_cache_range - flush a cache range with clflush
82 * @addr: virtual start address
83 * @size: number of bytes to flush
84 *
85 * clflush is an unordered instruction which needs fencing with mfence
86 * to avoid ordering issues.
87 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +010088void clflush_cache_range(void *vaddr, unsigned int size)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010089{
Ingo Molnar4c61afc2008-01-30 13:34:09 +010090 void *vend = vaddr + size - 1;
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010091
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +010092 mb();
Ingo Molnar4c61afc2008-01-30 13:34:09 +010093
94 for (; vaddr < vend; vaddr += boot_cpu_data.x86_clflush_size)
95 clflush(vaddr);
96 /*
97 * Flush any possible final partial cacheline:
98 */
99 clflush(vend);
100
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100101 mb();
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100102}
103
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100104static void __cpa_flush_all(void *arg)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100105{
Andi Kleen6bb83832008-02-04 16:48:06 +0100106 unsigned long cache = (unsigned long)arg;
107
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100108 /*
109 * Flush all to work around Errata in early athlons regarding
110 * large page flushing.
111 */
112 __flush_tlb_all();
113
Andi Kleen6bb83832008-02-04 16:48:06 +0100114 if (cache && boot_cpu_data.x86_model >= 4)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100115 wbinvd();
116}
117
Andi Kleen6bb83832008-02-04 16:48:06 +0100118static void cpa_flush_all(unsigned long cache)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100119{
120 BUG_ON(irqs_disabled());
121
Andi Kleen6bb83832008-02-04 16:48:06 +0100122 on_each_cpu(__cpa_flush_all, (void *) cache, 1, 1);
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100123}
124
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100125static void __cpa_flush_range(void *arg)
126{
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100127 /*
128 * We could optimize that further and do individual per page
129 * tlb invalidates for a low number of pages. Caveat: we must
130 * flush the high aliases on 64bit as well.
131 */
132 __flush_tlb_all();
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100133}
134
Andi Kleen6bb83832008-02-04 16:48:06 +0100135static void cpa_flush_range(unsigned long start, int numpages, int cache)
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100136{
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100137 unsigned int i, level;
138 unsigned long addr;
139
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100140 BUG_ON(irqs_disabled());
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100141 WARN_ON(PAGE_ALIGN(start) != start);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100142
Thomas Gleixner3b233e52008-01-30 13:34:08 +0100143 on_each_cpu(__cpa_flush_range, NULL, 1, 1);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100144
Andi Kleen6bb83832008-02-04 16:48:06 +0100145 if (!cache)
146 return;
147
Thomas Gleixner3b233e52008-01-30 13:34:08 +0100148 /*
149 * We only need to flush on one CPU,
150 * clflush is a MESI-coherent instruction that
151 * will cause all other CPUs to flush the same
152 * cachelines:
153 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100154 for (i = 0, addr = start; i < numpages; i++, addr += PAGE_SIZE) {
155 pte_t *pte = lookup_address(addr, &level);
156
157 /*
158 * Only flush present addresses:
159 */
Thomas Gleixner7bfb72e2008-02-04 16:48:08 +0100160 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100161 clflush_cache_range((void *) addr, PAGE_SIZE);
162 }
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100163}
164
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100165/*
Arjan van de Vened724be2008-01-30 13:34:04 +0100166 * Certain areas of memory on x86 require very specific protection flags,
167 * for example the BIOS area or kernel text. Callers don't always get this
168 * right (again, ioremap() on BIOS memory is not uncommon) so this function
169 * checks and fixes these known static required protection bits.
170 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100171static inline pgprot_t static_protections(pgprot_t prot, unsigned long address,
172 unsigned long pfn)
Arjan van de Vened724be2008-01-30 13:34:04 +0100173{
174 pgprot_t forbidden = __pgprot(0);
175
Ingo Molnar687c4822008-01-30 13:34:04 +0100176 /*
Arjan van de Vened724be2008-01-30 13:34:04 +0100177 * The BIOS area between 640k and 1Mb needs to be executable for
178 * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support.
Ingo Molnar687c4822008-01-30 13:34:04 +0100179 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100180 if (within(pfn, BIOS_BEGIN >> PAGE_SHIFT, BIOS_END >> PAGE_SHIFT))
Arjan van de Vened724be2008-01-30 13:34:04 +0100181 pgprot_val(forbidden) |= _PAGE_NX;
182
183 /*
184 * The kernel text needs to be executable for obvious reasons
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100185 * Does not cover __inittext since that is gone later on. On
186 * 64bit we do not enforce !NX on the low mapping
Arjan van de Vened724be2008-01-30 13:34:04 +0100187 */
188 if (within(address, (unsigned long)_text, (unsigned long)_etext))
189 pgprot_val(forbidden) |= _PAGE_NX;
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100190
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100191 /*
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100192 * The .rodata section needs to be read-only. Using the pfn
193 * catches all aliases.
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100194 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100195 if (within(pfn, __pa((unsigned long)__start_rodata) >> PAGE_SHIFT,
196 __pa((unsigned long)__end_rodata) >> PAGE_SHIFT))
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100197 pgprot_val(forbidden) |= _PAGE_RW;
Arjan van de Vened724be2008-01-30 13:34:04 +0100198
199 prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden));
Ingo Molnar687c4822008-01-30 13:34:04 +0100200
201 return prot;
202}
203
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100204/*
205 * Lookup the page table entry for a virtual address. Return a pointer
206 * to the entry and the level of the mapping.
207 *
208 * Note: We return pud and pmd either when the entry is marked large
209 * or when the present bit is not set. Otherwise we would return a
210 * pointer to a nonexisting mapping.
211 */
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100212pte_t *lookup_address(unsigned long address, unsigned int *level)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100213{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 pgd_t *pgd = pgd_offset_k(address);
215 pud_t *pud;
216 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100217
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100218 *level = PG_LEVEL_NONE;
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 if (pgd_none(*pgd))
221 return NULL;
Ingo Molnar9df84992008-02-04 16:48:09 +0100222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 pud = pud_offset(pgd, address);
224 if (pud_none(*pud))
225 return NULL;
Andi Kleenc2f71ee2008-02-04 16:48:09 +0100226
227 *level = PG_LEVEL_1G;
228 if (pud_large(*pud) || !pud_present(*pud))
229 return (pte_t *)pud;
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 pmd = pmd_offset(pud, address);
232 if (pmd_none(*pmd))
233 return NULL;
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100234
235 *level = PG_LEVEL_2M;
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100236 if (pmd_large(*pmd) || !pmd_present(*pmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return (pte_t *)pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100239 *level = PG_LEVEL_4K;
Ingo Molnar9df84992008-02-04 16:48:09 +0100240
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100241 return pte_offset_kernel(pmd, address);
242}
243
Ingo Molnar9df84992008-02-04 16:48:09 +0100244/*
245 * Set the new pmd in all the pgds we know about:
246 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100247static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100248{
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100249 /* change init_mm */
250 set_pte_atomic(kpte, pte);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100251#ifdef CONFIG_X86_32
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100252 if (!SHARED_KERNEL_PMD) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100253 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Jeremy Fitzhardingee3ed9102008-01-30 13:34:11 +0100255 list_for_each_entry(page, &pgd_list, lru) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100256 pgd_t *pgd;
257 pud_t *pud;
258 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100259
Ingo Molnar44af6c42008-01-30 13:34:03 +0100260 pgd = (pgd_t *)page_address(page) + pgd_index(address);
261 pud = pud_offset(pgd, address);
262 pmd = pmd_offset(pud, address);
263 set_pte_atomic((pte_t *)pmd, pte);
264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100266#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
Ingo Molnar9df84992008-02-04 16:48:09 +0100269static int
270try_preserve_large_page(pte_t *kpte, unsigned long address,
271 struct cpa_data *cpa)
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100272{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100273 unsigned long nextpage_addr, numpages, pmask, psize, flags, addr, pfn;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100274 pte_t new_pte, old_pte, *tmp;
275 pgprot_t old_prot, new_prot;
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100276 int i, do_split = 1;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100277 unsigned int level;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100278
Andi Kleenc9caa022008-03-12 03:53:29 +0100279 if (cpa->force_split)
280 return 1;
281
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100282 spin_lock_irqsave(&pgd_lock, flags);
283 /*
284 * Check for races, another CPU might have split this page
285 * up already:
286 */
287 tmp = lookup_address(address, &level);
288 if (tmp != kpte)
289 goto out_unlock;
290
291 switch (level) {
292 case PG_LEVEL_2M:
Andi Kleen31422c52008-02-04 16:48:08 +0100293 psize = PMD_PAGE_SIZE;
294 pmask = PMD_PAGE_MASK;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100295 break;
Andi Kleenf07333f2008-02-04 16:48:09 +0100296#ifdef CONFIG_X86_64
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100297 case PG_LEVEL_1G:
Andi Kleen5d3c8b22008-02-13 16:20:35 +0100298 psize = PUD_PAGE_SIZE;
299 pmask = PUD_PAGE_MASK;
Andi Kleenf07333f2008-02-04 16:48:09 +0100300 break;
301#endif
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100302 default:
Ingo Molnarbeaff632008-02-04 16:48:09 +0100303 do_split = -EINVAL;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100304 goto out_unlock;
305 }
306
307 /*
308 * Calculate the number of pages, which fit into this large
309 * page starting at address:
310 */
311 nextpage_addr = (address + psize) & pmask;
312 numpages = (nextpage_addr - address) >> PAGE_SHIFT;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100313 if (numpages < cpa->numpages)
314 cpa->numpages = numpages;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100315
316 /*
317 * We are safe now. Check whether the new pgprot is the same:
318 */
319 old_pte = *kpte;
320 old_prot = new_prot = pte_pgprot(old_pte);
321
322 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
323 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100324
325 /*
326 * old_pte points to the large page base address. So we need
327 * to add the offset of the virtual address:
328 */
329 pfn = pte_pfn(old_pte) + ((address & (psize - 1)) >> PAGE_SHIFT);
330 cpa->pfn = pfn;
331
332 new_prot = static_protections(new_prot, address, pfn);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100333
334 /*
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100335 * We need to check the full range, whether
336 * static_protection() requires a different pgprot for one of
337 * the pages in the range we try to preserve:
338 */
339 addr = address + PAGE_SIZE;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100340 pfn++;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100341 for (i = 1; i < cpa->numpages; i++, addr += PAGE_SIZE, pfn++) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100342 pgprot_t chk_prot = static_protections(new_prot, addr, pfn);
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100343
344 if (pgprot_val(chk_prot) != pgprot_val(new_prot))
345 goto out_unlock;
346 }
347
348 /*
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100349 * If there are no changes, return. maxpages has been updated
350 * above:
351 */
352 if (pgprot_val(new_prot) == pgprot_val(old_prot)) {
Ingo Molnarbeaff632008-02-04 16:48:09 +0100353 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100354 goto out_unlock;
355 }
356
357 /*
358 * We need to change the attributes. Check, whether we can
359 * change the large page in one go. We request a split, when
360 * the address is not aligned and the number of pages is
361 * smaller than the number of pages in the large page. Note
362 * that we limited the number of possible pages already to
363 * the number of pages in the large page.
364 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100365 if (address == (nextpage_addr - psize) && cpa->numpages == numpages) {
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100366 /*
367 * The address is aligned and the number of pages
368 * covers the full page.
369 */
370 new_pte = pfn_pte(pte_pfn(old_pte), canon_pgprot(new_prot));
371 __set_pmd_pte(kpte, address, new_pte);
372 cpa->flushtlb = 1;
Ingo Molnarbeaff632008-02-04 16:48:09 +0100373 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100374 }
375
376out_unlock:
377 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnar9df84992008-02-04 16:48:09 +0100378
Ingo Molnarbeaff632008-02-04 16:48:09 +0100379 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100380}
381
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100382static LIST_HEAD(page_pool);
383static unsigned long pool_size, pool_pages, pool_low;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100384static unsigned long pool_used, pool_failed;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100385
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100386static void cpa_fill_pool(struct page **ret)
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100387{
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100388 gfp_t gfp = GFP_KERNEL;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100389 unsigned long flags;
390 struct page *p;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100391
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100392 /*
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100393 * Avoid recursion (on debug-pagealloc) and also signal
394 * our priority to get to these pagetables:
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100395 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100396 if (current->flags & PF_MEMALLOC)
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100397 return;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100398 current->flags |= PF_MEMALLOC;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100399
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100400 /*
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100401 * Allocate atomically from atomic contexts:
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100402 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100403 if (in_atomic() || irqs_disabled() || debug_pagealloc)
404 gfp = GFP_ATOMIC | __GFP_NORETRY | __GFP_NOWARN;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100405
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100406 while (pool_pages < pool_size || (ret && !*ret)) {
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100407 p = alloc_pages(gfp, 0);
408 if (!p) {
409 pool_failed++;
410 break;
411 }
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100412 /*
413 * If the call site needs a page right now, provide it:
414 */
415 if (ret && !*ret) {
416 *ret = p;
417 continue;
418 }
419 spin_lock_irqsave(&pgd_lock, flags);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100420 list_add(&p->lru, &page_pool);
421 pool_pages++;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100422 spin_unlock_irqrestore(&pgd_lock, flags);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100423 }
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100424
425 current->flags &= ~PF_MEMALLOC;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100426}
427
428#define SHIFT_MB (20 - PAGE_SHIFT)
429#define ROUND_MB_GB ((1 << 10) - 1)
430#define SHIFT_MB_GB 10
431#define POOL_PAGES_PER_GB 16
432
433void __init cpa_init(void)
434{
435 struct sysinfo si;
436 unsigned long gb;
437
438 si_meminfo(&si);
439 /*
440 * Calculate the number of pool pages:
441 *
442 * Convert totalram (nr of pages) to MiB and round to the next
443 * GiB. Shift MiB to Gib and multiply the result by
444 * POOL_PAGES_PER_GB:
445 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100446 if (debug_pagealloc) {
447 gb = ((si.totalram >> SHIFT_MB) + ROUND_MB_GB) >> SHIFT_MB_GB;
448 pool_size = POOL_PAGES_PER_GB * gb;
449 } else {
450 pool_size = 1;
451 }
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100452 pool_low = pool_size;
453
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100454 cpa_fill_pool(NULL);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100455 printk(KERN_DEBUG
456 "CPA: page pool initialized %lu of %lu pages preallocated\n",
457 pool_pages, pool_size);
458}
459
Ingo Molnar7afe15b2008-01-30 13:33:57 +0100460static int split_large_page(pte_t *kpte, unsigned long address)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100461{
Thomas Gleixner7b610ee2008-02-04 16:48:10 +0100462 unsigned long flags, pfn, pfninc = 1;
Ingo Molnar86f03989d2008-01-30 13:34:09 +0100463 unsigned int i, level;
Ingo Molnar9df84992008-02-04 16:48:09 +0100464 pte_t *pbase, *tmp;
465 pgprot_t ref_prot;
466 struct page *base;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100467
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100468 /*
469 * Get a page from the pool. The pool list is protected by the
470 * pgd_lock, which we have to take anyway for the split
471 * operation:
472 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100473 spin_lock_irqsave(&pgd_lock, flags);
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100474 if (list_empty(&page_pool)) {
475 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100476 base = NULL;
477 cpa_fill_pool(&base);
478 if (!base)
479 return -ENOMEM;
480 spin_lock_irqsave(&pgd_lock, flags);
481 } else {
482 base = list_first_entry(&page_pool, struct page, lru);
483 list_del(&base->lru);
484 pool_pages--;
485
486 if (pool_pages < pool_low)
487 pool_low = pool_pages;
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100488 }
489
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100490 /*
491 * Check for races, another CPU might have split this page
492 * up for us already:
493 */
494 tmp = lookup_address(address, &level);
Ingo Molnar6ce9fc12008-02-04 16:48:08 +0100495 if (tmp != kpte)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100496 goto out_unlock;
497
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100498 pbase = (pte_t *)page_address(base);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700499 paravirt_alloc_pte(&init_mm, page_to_pfn(base));
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100500 ref_prot = pte_pgprot(pte_clrhuge(*kpte));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100501
Andi Kleenf07333f2008-02-04 16:48:09 +0100502#ifdef CONFIG_X86_64
503 if (level == PG_LEVEL_1G) {
504 pfninc = PMD_PAGE_SIZE >> PAGE_SHIFT;
505 pgprot_val(ref_prot) |= _PAGE_PSE;
Andi Kleenf07333f2008-02-04 16:48:09 +0100506 }
507#endif
508
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100509 /*
510 * Get the target pfn from the original entry:
511 */
512 pfn = pte_pfn(*kpte);
Andi Kleenf07333f2008-02-04 16:48:09 +0100513 for (i = 0; i < PTRS_PER_PTE; i++, pfn += pfninc)
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100514 set_pte(&pbase[i], pfn_pte(pfn, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100515
Andi Kleence0c0e52008-05-02 11:46:49 +0200516 if (address >= (unsigned long)__va(0) &&
517 address < (unsigned long)__va(max_pfn_mapped << PAGE_SHIFT)) {
518 direct_pages_count[level]--;
519 direct_pages_count[level - 1] += PTRS_PER_PTE;
520 }
521
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100522 /*
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100523 * Install the new, split up pagetable. Important details here:
Huang, Ying4c881ca2008-01-30 13:34:04 +0100524 *
525 * On Intel the NX bit of all levels must be cleared to make a
526 * page executable. See section 4.13.2 of Intel 64 and IA-32
527 * Architectures Software Developer's Manual).
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100528 *
529 * Mark the entry present. The current mapping might be
530 * set to not present, which we preserved above.
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100531 */
Huang, Ying4c881ca2008-01-30 13:34:04 +0100532 ref_prot = pte_pgprot(pte_mkexec(pte_clrhuge(*kpte)));
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100533 pgprot_val(ref_prot) |= _PAGE_PRESENT;
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100534 __set_pmd_pte(kpte, address, mk_pte(base, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100535 base = NULL;
536
537out_unlock:
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100538 /*
539 * If we dropped out via the lookup_address check under
540 * pgd_lock then stick the page back into the pool:
541 */
542 if (base) {
543 list_add(&base->lru, &page_pool);
544 pool_pages++;
545 } else
546 pool_used++;
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100547 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100548
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100549 return 0;
550}
551
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100552static int __change_page_attr(struct cpa_data *cpa, int primary)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100553{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100554 unsigned long address = cpa->vaddr;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100555 int do_split, err;
556 unsigned int level;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100557 pte_t *kpte, old_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Ingo Molnar97f99fe2008-01-30 13:33:55 +0100559repeat:
Ingo Molnarf0646e42008-01-30 13:33:43 +0100560 kpte = lookup_address(address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 if (!kpte)
Ingo Molnard1a4be62008-04-18 21:32:22 +0200562 return 0;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100563
564 old_pte = *kpte;
565 if (!pte_val(old_pte)) {
566 if (!primary)
567 return 0;
568 printk(KERN_WARNING "CPA: called for zero pte. "
569 "vaddr = %lx cpa->vaddr = %lx\n", address,
570 cpa->vaddr);
571 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 return -EINVAL;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100573 }
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100574
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100575 if (level == PG_LEVEL_4K) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100576 pte_t new_pte;
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100577 pgprot_t new_prot = pte_pgprot(old_pte);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100578 unsigned long pfn = pte_pfn(old_pte);
Thomas Gleixnera72a08a2008-01-30 13:34:07 +0100579
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100580 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
581 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Ingo Molnar86f03989d2008-01-30 13:34:09 +0100582
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100583 new_prot = static_protections(new_prot, address, pfn);
Ingo Molnar86f03989d2008-01-30 13:34:09 +0100584
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100585 /*
586 * We need to keep the pfn from the existing PTE,
587 * after all we're only going to change it's attributes
588 * not the memory it points to
589 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100590 new_pte = pfn_pte(pfn, canon_pgprot(new_prot));
591 cpa->pfn = pfn;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100592 /*
593 * Do we really change anything ?
594 */
595 if (pte_val(old_pte) != pte_val(new_pte)) {
596 set_pte_atomic(kpte, new_pte);
597 cpa->flushtlb = 1;
598 }
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100599 cpa->numpages = 1;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100600 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 }
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100602
603 /*
604 * Check, whether we can keep the large page intact
605 * and just change the pte:
606 */
Ingo Molnarbeaff632008-02-04 16:48:09 +0100607 do_split = try_preserve_large_page(kpte, address, cpa);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100608 /*
609 * When the range fits into the existing large page,
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100610 * return. cp->numpages and cpa->tlbflush have been updated in
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100611 * try_large_page:
612 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100613 if (do_split <= 0)
614 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100615
616 /*
617 * We have to split the large page:
618 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100619 err = split_large_page(kpte, address);
620 if (!err) {
621 cpa->flushtlb = 1;
622 goto repeat;
623 }
Ingo Molnarbeaff632008-02-04 16:48:09 +0100624
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100625 return err;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100626}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100628static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias);
629
630static int cpa_process_alias(struct cpa_data *cpa)
Ingo Molnar44af6c42008-01-30 13:34:03 +0100631{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100632 struct cpa_data alias_cpa;
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100633 int ret = 0;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100634
635 if (cpa->pfn > max_pfn_mapped)
636 return 0;
637
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100638 /*
639 * No need to redo, when the primary call touched the direct
640 * mapping already:
641 */
642 if (!within(cpa->vaddr, PAGE_OFFSET,
643 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT))) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100644
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100645 alias_cpa = *cpa;
646 alias_cpa.vaddr = (unsigned long) __va(cpa->pfn << PAGE_SHIFT);
647
648 ret = __change_page_attr_set_clr(&alias_cpa, 0);
649 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100650
Arjan van de Ven488fd992008-01-30 13:34:07 +0100651#ifdef CONFIG_X86_64
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100652 if (ret)
653 return ret;
Thomas Gleixner08797502008-01-30 13:34:09 +0100654 /*
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100655 * No need to redo, when the primary call touched the high
656 * mapping already:
657 */
658 if (within(cpa->vaddr, (unsigned long) _text, (unsigned long) _end))
659 return 0;
660
661 /*
Thomas Gleixner08797502008-01-30 13:34:09 +0100662 * If the physical address is inside the kernel map, we need
663 * to touch the high mapped kernel as well:
664 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100665 if (!within(cpa->pfn, highmap_start_pfn(), highmap_end_pfn()))
666 return 0;
Thomas Gleixner08797502008-01-30 13:34:09 +0100667
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100668 alias_cpa = *cpa;
669 alias_cpa.vaddr =
670 (cpa->pfn << PAGE_SHIFT) + __START_KERNEL_map - phys_base;
671
672 /*
673 * The high mapping range is imprecise, so ignore the return value.
674 */
675 __change_page_attr_set_clr(&alias_cpa, 0);
Thomas Gleixner08797502008-01-30 13:34:09 +0100676#endif
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100677 return ret;
Ingo Molnar44af6c42008-01-30 13:34:03 +0100678}
679
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100680static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100681{
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100682 int ret, numpages = cpa->numpages;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100683
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100684 while (numpages) {
685 /*
686 * Store the remaining nr of pages for the large page
687 * preservation check.
688 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100689 cpa->numpages = numpages;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100690
691 ret = __change_page_attr(cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100692 if (ret)
693 return ret;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100694
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100695 if (checkalias) {
696 ret = cpa_process_alias(cpa);
697 if (ret)
698 return ret;
699 }
700
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100701 /*
702 * Adjust the number of pages with the result of the
703 * CPA operation. Either a large page has been
704 * preserved or a single page update happened.
705 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100706 BUG_ON(cpa->numpages > numpages);
707 numpages -= cpa->numpages;
708 cpa->vaddr += cpa->numpages * PAGE_SIZE;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100709 }
Thomas Gleixnerff314522008-01-30 13:34:08 +0100710 return 0;
711}
712
Andi Kleen6bb83832008-02-04 16:48:06 +0100713static inline int cache_attr(pgprot_t attr)
714{
715 return pgprot_val(attr) &
716 (_PAGE_PAT | _PAGE_PAT_LARGE | _PAGE_PWT | _PAGE_PCD);
717}
718
Thomas Gleixnerff314522008-01-30 13:34:08 +0100719static int change_page_attr_set_clr(unsigned long addr, int numpages,
Andi Kleenc9caa022008-03-12 03:53:29 +0100720 pgprot_t mask_set, pgprot_t mask_clr,
721 int force_split)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100722{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100723 struct cpa_data cpa;
Thomas Gleixneraf96e442008-02-15 21:49:46 +0100724 int ret, cache, checkalias;
Thomas Gleixner331e4062008-02-04 16:48:06 +0100725
726 /*
727 * Check, if we are requested to change a not supported
728 * feature:
729 */
730 mask_set = canon_pgprot(mask_set);
731 mask_clr = canon_pgprot(mask_clr);
Andi Kleenc9caa022008-03-12 03:53:29 +0100732 if (!pgprot_val(mask_set) && !pgprot_val(mask_clr) && !force_split)
Thomas Gleixner331e4062008-02-04 16:48:06 +0100733 return 0;
734
Thomas Gleixner69b14152008-02-13 11:04:50 +0100735 /* Ensure we are PAGE_SIZE aligned */
736 if (addr & ~PAGE_MASK) {
737 addr &= PAGE_MASK;
738 /*
739 * People should not be passing in unaligned addresses:
740 */
741 WARN_ON_ONCE(1);
742 }
743
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100744 cpa.vaddr = addr;
745 cpa.numpages = numpages;
746 cpa.mask_set = mask_set;
747 cpa.mask_clr = mask_clr;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100748 cpa.flushtlb = 0;
Andi Kleenc9caa022008-03-12 03:53:29 +0100749 cpa.force_split = force_split;
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100750
Thomas Gleixneraf96e442008-02-15 21:49:46 +0100751 /* No alias checking for _NX bit modifications */
752 checkalias = (pgprot_val(mask_set) | pgprot_val(mask_clr)) != _PAGE_NX;
753
754 ret = __change_page_attr_set_clr(&cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100755
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100756 /*
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100757 * Check whether we really changed something:
758 */
759 if (!cpa.flushtlb)
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100760 goto out;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100761
762 /*
Andi Kleen6bb83832008-02-04 16:48:06 +0100763 * No need to flush, when we did not set any of the caching
764 * attributes:
765 */
766 cache = cache_attr(mask_set);
767
768 /*
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100769 * On success we use clflush, when the CPU supports it to
770 * avoid the wbindv. If the CPU does not support it and in the
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100771 * error case we fall back to cpa_flush_all (which uses
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100772 * wbindv):
773 */
774 if (!ret && cpu_has_clflush)
Andi Kleen6bb83832008-02-04 16:48:06 +0100775 cpa_flush_range(addr, numpages, cache);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100776 else
Andi Kleen6bb83832008-02-04 16:48:06 +0100777 cpa_flush_all(cache);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100778
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100779out:
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100780 cpa_fill_pool(NULL);
781
Thomas Gleixnerff314522008-01-30 13:34:08 +0100782 return ret;
783}
784
Thomas Gleixner56744542008-01-30 13:34:08 +0100785static inline int change_page_attr_set(unsigned long addr, int numpages,
786 pgprot_t mask)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100787{
Andi Kleenc9caa022008-03-12 03:53:29 +0100788 return change_page_attr_set_clr(addr, numpages, mask, __pgprot(0), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100789}
790
Thomas Gleixner56744542008-01-30 13:34:08 +0100791static inline int change_page_attr_clear(unsigned long addr, int numpages,
792 pgprot_t mask)
Thomas Gleixner72932c72008-01-30 13:34:08 +0100793{
Andi Kleenc9caa022008-03-12 03:53:29 +0100794 return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask, 0);
Thomas Gleixner72932c72008-01-30 13:34:08 +0100795}
796
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700797int _set_memory_uc(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100798{
Suresh Siddhade33c442008-04-25 17:07:22 -0700799 /*
800 * for now UC MINUS. see comments in ioremap_nocache()
801 */
Thomas Gleixner72932c72008-01-30 13:34:08 +0100802 return change_page_attr_set(addr, numpages,
Suresh Siddhade33c442008-04-25 17:07:22 -0700803 __pgprot(_PAGE_CACHE_UC_MINUS));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100804}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700805
806int set_memory_uc(unsigned long addr, int numpages)
807{
Suresh Siddhade33c442008-04-25 17:07:22 -0700808 /*
809 * for now UC MINUS. see comments in ioremap_nocache()
810 */
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700811 if (reserve_memtype(addr, addr + numpages * PAGE_SIZE,
Suresh Siddhade33c442008-04-25 17:07:22 -0700812 _PAGE_CACHE_UC_MINUS, NULL))
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700813 return -EINVAL;
814
815 return _set_memory_uc(addr, numpages);
816}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100817EXPORT_SYMBOL(set_memory_uc);
818
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700819int _set_memory_wc(unsigned long addr, int numpages)
820{
821 return change_page_attr_set(addr, numpages,
822 __pgprot(_PAGE_CACHE_WC));
823}
824
825int set_memory_wc(unsigned long addr, int numpages)
826{
827 if (!pat_wc_enabled)
828 return set_memory_uc(addr, numpages);
829
830 if (reserve_memtype(addr, addr + numpages * PAGE_SIZE,
831 _PAGE_CACHE_WC, NULL))
832 return -EINVAL;
833
834 return _set_memory_wc(addr, numpages);
835}
836EXPORT_SYMBOL(set_memory_wc);
837
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700838int _set_memory_wb(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100839{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100840 return change_page_attr_clear(addr, numpages,
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700841 __pgprot(_PAGE_CACHE_MASK));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100842}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700843
844int set_memory_wb(unsigned long addr, int numpages)
845{
846 free_memtype(addr, addr + numpages * PAGE_SIZE);
847
848 return _set_memory_wb(addr, numpages);
849}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100850EXPORT_SYMBOL(set_memory_wb);
851
852int set_memory_x(unsigned long addr, int numpages)
853{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100854 return change_page_attr_clear(addr, numpages, __pgprot(_PAGE_NX));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100855}
856EXPORT_SYMBOL(set_memory_x);
857
858int set_memory_nx(unsigned long addr, int numpages)
859{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100860 return change_page_attr_set(addr, numpages, __pgprot(_PAGE_NX));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100861}
862EXPORT_SYMBOL(set_memory_nx);
863
864int set_memory_ro(unsigned long addr, int numpages)
865{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100866 return change_page_attr_clear(addr, numpages, __pgprot(_PAGE_RW));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100867}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100868
869int set_memory_rw(unsigned long addr, int numpages)
870{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100871 return change_page_attr_set(addr, numpages, __pgprot(_PAGE_RW));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100872}
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100873
874int set_memory_np(unsigned long addr, int numpages)
875{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100876 return change_page_attr_clear(addr, numpages, __pgprot(_PAGE_PRESENT));
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100877}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100878
Andi Kleenc9caa022008-03-12 03:53:29 +0100879int set_memory_4k(unsigned long addr, int numpages)
880{
881 return change_page_attr_set_clr(addr, numpages, __pgprot(0),
882 __pgprot(0), 1);
883}
884
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100885int set_pages_uc(struct page *page, int numpages)
886{
887 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100888
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100889 return set_memory_uc(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100890}
891EXPORT_SYMBOL(set_pages_uc);
892
893int set_pages_wb(struct page *page, int numpages)
894{
895 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100896
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100897 return set_memory_wb(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100898}
899EXPORT_SYMBOL(set_pages_wb);
900
901int set_pages_x(struct page *page, int numpages)
902{
903 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100904
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100905 return set_memory_x(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100906}
907EXPORT_SYMBOL(set_pages_x);
908
909int set_pages_nx(struct page *page, int numpages)
910{
911 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100912
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100913 return set_memory_nx(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100914}
915EXPORT_SYMBOL(set_pages_nx);
916
917int set_pages_ro(struct page *page, int numpages)
918{
919 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100920
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100921 return set_memory_ro(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100922}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100923
924int set_pages_rw(struct page *page, int numpages)
925{
926 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100927
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100928 return set_memory_rw(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100929}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931#ifdef CONFIG_DEBUG_PAGEALLOC
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100932
933static int __set_pages_p(struct page *page, int numpages)
934{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100935 struct cpa_data cpa = { .vaddr = (unsigned long) page_address(page),
936 .numpages = numpages,
937 .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW),
938 .mask_clr = __pgprot(0)};
Thomas Gleixner72932c72008-01-30 13:34:08 +0100939
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100940 return __change_page_attr_set_clr(&cpa, 1);
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100941}
942
943static int __set_pages_np(struct page *page, int numpages)
944{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100945 struct cpa_data cpa = { .vaddr = (unsigned long) page_address(page),
946 .numpages = numpages,
947 .mask_set = __pgprot(0),
948 .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW)};
Thomas Gleixner72932c72008-01-30 13:34:08 +0100949
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100950 return __change_page_attr_set_clr(&cpa, 1);
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100951}
952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953void kernel_map_pages(struct page *page, int numpages, int enable)
954{
955 if (PageHighMem(page))
956 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100957 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -0700958 debug_check_no_locks_freed(page_address(page),
959 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100960 }
Ingo Molnarde5097c2006-01-09 15:59:21 -0800961
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100962 /*
Ingo Molnar12d6f212008-01-30 13:33:58 +0100963 * If page allocator is not up yet then do not call c_p_a():
964 */
965 if (!debug_pagealloc_enabled)
966 return;
967
968 /*
Ingo Molnarf8d84062008-02-13 14:09:53 +0100969 * The return value is ignored as the calls cannot fail.
970 * Large pages are kept enabled at boot time, and are
971 * split up quickly with DEBUG_PAGEALLOC. If a splitup
972 * fails here (due to temporary memory shortage) no damage
973 * is done because we just keep the largepage intact up
974 * to the next attempt when it will likely be split up:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 */
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100976 if (enable)
977 __set_pages_p(page, numpages);
978 else
979 __set_pages_np(page, numpages);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100980
981 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100982 * We should perform an IPI and flush all tlbs,
983 * but that can deadlock->flush only current cpu:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 */
985 __flush_tlb_all();
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100986
987 /*
988 * Try to refill the page pool here. We can do this only after
989 * the tlb flush.
990 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100991 cpa_fill_pool(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992}
Rafael J. Wysocki8a235ef2008-02-20 01:47:44 +0100993
Thomas Gleixneree7ae7a2008-04-17 17:40:45 +0200994#ifdef CONFIG_DEBUG_FS
995static int dpa_show(struct seq_file *m, void *v)
996{
997 seq_puts(m, "DEBUG_PAGEALLOC\n");
998 seq_printf(m, "pool_size : %lu\n", pool_size);
999 seq_printf(m, "pool_pages : %lu\n", pool_pages);
1000 seq_printf(m, "pool_low : %lu\n", pool_low);
1001 seq_printf(m, "pool_used : %lu\n", pool_used);
1002 seq_printf(m, "pool_failed : %lu\n", pool_failed);
1003
1004 return 0;
1005}
1006
1007static int dpa_open(struct inode *inode, struct file *filp)
1008{
1009 return single_open(filp, dpa_show, NULL);
1010}
1011
1012static const struct file_operations dpa_fops = {
1013 .open = dpa_open,
1014 .read = seq_read,
1015 .llseek = seq_lseek,
1016 .release = single_release,
1017};
1018
Ingo Molnara4928cf2008-04-23 13:20:56 +02001019static int __init debug_pagealloc_proc_init(void)
Thomas Gleixneree7ae7a2008-04-17 17:40:45 +02001020{
1021 struct dentry *de;
1022
1023 de = debugfs_create_file("debug_pagealloc", 0600, NULL, NULL,
1024 &dpa_fops);
1025 if (!de)
1026 return -ENOMEM;
1027
1028 return 0;
1029}
1030__initcall(debug_pagealloc_proc_init);
1031#endif
1032
Rafael J. Wysocki8a235ef2008-02-20 01:47:44 +01001033#ifdef CONFIG_HIBERNATION
1034
1035bool kernel_page_present(struct page *page)
1036{
1037 unsigned int level;
1038 pte_t *pte;
1039
1040 if (PageHighMem(page))
1041 return false;
1042
1043 pte = lookup_address((unsigned long)page_address(page), &level);
1044 return (pte_val(*pte) & _PAGE_PRESENT);
1045}
1046
1047#endif /* CONFIG_HIBERNATION */
1048
1049#endif /* CONFIG_DEBUG_PAGEALLOC */
Arjan van de Vend1028a12008-01-30 13:34:07 +01001050
Andi Kleence0c0e52008-05-02 11:46:49 +02001051#ifdef CONFIG_PROC_FS
1052int arch_report_meminfo(char *page)
1053{
1054 int n;
1055 n = sprintf(page, "DirectMap4k: %8lu\n"
1056 "DirectMap2M: %8lu\n",
1057 direct_pages_count[PG_LEVEL_4K],
1058 direct_pages_count[PG_LEVEL_2M]);
1059#ifdef CONFIG_X86_64
1060 n += sprintf(page + n, "DirectMap1G: %8lu\n",
1061 direct_pages_count[PG_LEVEL_1G]);
1062#endif
1063 return n;
1064}
1065#endif
1066
Arjan van de Vend1028a12008-01-30 13:34:07 +01001067/*
1068 * The testcases use internal knowledge of the implementation that shouldn't
1069 * be exposed to the rest of the kernel. Include these directly here.
1070 */
1071#ifdef CONFIG_CPA_DEBUG
1072#include "pageattr-test.c"
1073#endif