blob: 57970f2935c0aaef818b27e9f8a94ef493c0738c [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 Gleixnerc31c7d42008-02-18 20:54:14 +010037#ifdef CONFIG_X86_64
38
39static inline unsigned long highmap_start_pfn(void)
40{
41 return __pa(_text) >> PAGE_SHIFT;
42}
43
44static inline unsigned long highmap_end_pfn(void)
45{
46 return __pa(round_up((unsigned long)_end, PMD_SIZE)) >> PAGE_SHIFT;
47}
48
49#endif
50
Ingo Molnar92cb54a2008-02-13 14:37:52 +010051#ifdef CONFIG_DEBUG_PAGEALLOC
52# define debug_pagealloc 1
53#else
54# define debug_pagealloc 0
55#endif
56
Arjan van de Vened724be2008-01-30 13:34:04 +010057static inline int
58within(unsigned long addr, unsigned long start, unsigned long end)
Ingo Molnar687c4822008-01-30 13:34:04 +010059{
Arjan van de Vened724be2008-01-30 13:34:04 +010060 return addr >= start && addr < end;
61}
62
63/*
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010064 * Flushing functions
65 */
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +010066
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +010067/**
68 * clflush_cache_range - flush a cache range with clflush
69 * @addr: virtual start address
70 * @size: number of bytes to flush
71 *
72 * clflush is an unordered instruction which needs fencing with mfence
73 * to avoid ordering issues.
74 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +010075void clflush_cache_range(void *vaddr, unsigned int size)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010076{
Ingo Molnar4c61afc2008-01-30 13:34:09 +010077 void *vend = vaddr + size - 1;
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010078
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +010079 mb();
Ingo Molnar4c61afc2008-01-30 13:34:09 +010080
81 for (; vaddr < vend; vaddr += boot_cpu_data.x86_clflush_size)
82 clflush(vaddr);
83 /*
84 * Flush any possible final partial cacheline:
85 */
86 clflush(vend);
87
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +010088 mb();
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010089}
90
Thomas Gleixneraf1e6842008-01-30 13:34:08 +010091static void __cpa_flush_all(void *arg)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010092{
Andi Kleen6bb83832008-02-04 16:48:06 +010093 unsigned long cache = (unsigned long)arg;
94
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010095 /*
96 * Flush all to work around Errata in early athlons regarding
97 * large page flushing.
98 */
99 __flush_tlb_all();
100
Andi Kleen6bb83832008-02-04 16:48:06 +0100101 if (cache && boot_cpu_data.x86_model >= 4)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100102 wbinvd();
103}
104
Andi Kleen6bb83832008-02-04 16:48:06 +0100105static void cpa_flush_all(unsigned long cache)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100106{
107 BUG_ON(irqs_disabled());
108
Andi Kleen6bb83832008-02-04 16:48:06 +0100109 on_each_cpu(__cpa_flush_all, (void *) cache, 1, 1);
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100110}
111
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100112static void __cpa_flush_range(void *arg)
113{
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100114 /*
115 * We could optimize that further and do individual per page
116 * tlb invalidates for a low number of pages. Caveat: we must
117 * flush the high aliases on 64bit as well.
118 */
119 __flush_tlb_all();
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100120}
121
Andi Kleen6bb83832008-02-04 16:48:06 +0100122static void cpa_flush_range(unsigned long start, int numpages, int cache)
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100123{
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100124 unsigned int i, level;
125 unsigned long addr;
126
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100127 BUG_ON(irqs_disabled());
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100128 WARN_ON(PAGE_ALIGN(start) != start);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100129
Thomas Gleixner3b233e52008-01-30 13:34:08 +0100130 on_each_cpu(__cpa_flush_range, NULL, 1, 1);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100131
Andi Kleen6bb83832008-02-04 16:48:06 +0100132 if (!cache)
133 return;
134
Thomas Gleixner3b233e52008-01-30 13:34:08 +0100135 /*
136 * We only need to flush on one CPU,
137 * clflush is a MESI-coherent instruction that
138 * will cause all other CPUs to flush the same
139 * cachelines:
140 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100141 for (i = 0, addr = start; i < numpages; i++, addr += PAGE_SIZE) {
142 pte_t *pte = lookup_address(addr, &level);
143
144 /*
145 * Only flush present addresses:
146 */
Thomas Gleixner7bfb72e2008-02-04 16:48:08 +0100147 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100148 clflush_cache_range((void *) addr, PAGE_SIZE);
149 }
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100150}
151
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100152/*
Arjan van de Vened724be2008-01-30 13:34:04 +0100153 * Certain areas of memory on x86 require very specific protection flags,
154 * for example the BIOS area or kernel text. Callers don't always get this
155 * right (again, ioremap() on BIOS memory is not uncommon) so this function
156 * checks and fixes these known static required protection bits.
157 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100158static inline pgprot_t static_protections(pgprot_t prot, unsigned long address,
159 unsigned long pfn)
Arjan van de Vened724be2008-01-30 13:34:04 +0100160{
161 pgprot_t forbidden = __pgprot(0);
162
Ingo Molnar687c4822008-01-30 13:34:04 +0100163 /*
Arjan van de Vened724be2008-01-30 13:34:04 +0100164 * The BIOS area between 640k and 1Mb needs to be executable for
165 * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support.
Ingo Molnar687c4822008-01-30 13:34:04 +0100166 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100167 if (within(pfn, BIOS_BEGIN >> PAGE_SHIFT, BIOS_END >> PAGE_SHIFT))
Arjan van de Vened724be2008-01-30 13:34:04 +0100168 pgprot_val(forbidden) |= _PAGE_NX;
169
170 /*
171 * The kernel text needs to be executable for obvious reasons
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100172 * Does not cover __inittext since that is gone later on. On
173 * 64bit we do not enforce !NX on the low mapping
Arjan van de Vened724be2008-01-30 13:34:04 +0100174 */
175 if (within(address, (unsigned long)_text, (unsigned long)_etext))
176 pgprot_val(forbidden) |= _PAGE_NX;
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100177
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100178 /*
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100179 * The .rodata section needs to be read-only. Using the pfn
180 * catches all aliases.
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100181 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100182 if (within(pfn, __pa((unsigned long)__start_rodata) >> PAGE_SHIFT,
183 __pa((unsigned long)__end_rodata) >> PAGE_SHIFT))
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100184 pgprot_val(forbidden) |= _PAGE_RW;
Arjan van de Vened724be2008-01-30 13:34:04 +0100185
186 prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden));
Ingo Molnar687c4822008-01-30 13:34:04 +0100187
188 return prot;
189}
190
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100191/*
192 * Lookup the page table entry for a virtual address. Return a pointer
193 * to the entry and the level of the mapping.
194 *
195 * Note: We return pud and pmd either when the entry is marked large
196 * or when the present bit is not set. Otherwise we would return a
197 * pointer to a nonexisting mapping.
198 */
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100199pte_t *lookup_address(unsigned long address, unsigned int *level)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100200{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 pgd_t *pgd = pgd_offset_k(address);
202 pud_t *pud;
203 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100204
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100205 *level = PG_LEVEL_NONE;
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 if (pgd_none(*pgd))
208 return NULL;
Ingo Molnar9df84992008-02-04 16:48:09 +0100209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 pud = pud_offset(pgd, address);
211 if (pud_none(*pud))
212 return NULL;
Andi Kleenc2f71ee2008-02-04 16:48:09 +0100213
214 *level = PG_LEVEL_1G;
215 if (pud_large(*pud) || !pud_present(*pud))
216 return (pte_t *)pud;
217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 pmd = pmd_offset(pud, address);
219 if (pmd_none(*pmd))
220 return NULL;
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100221
222 *level = PG_LEVEL_2M;
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100223 if (pmd_large(*pmd) || !pmd_present(*pmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return (pte_t *)pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100226 *level = PG_LEVEL_4K;
Ingo Molnar9df84992008-02-04 16:48:09 +0100227
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100228 return pte_offset_kernel(pmd, address);
229}
Pekka Paalanen75bb8832008-05-12 21:20:56 +0200230EXPORT_SYMBOL_GPL(lookup_address);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100231
Ingo Molnar9df84992008-02-04 16:48:09 +0100232/*
233 * Set the new pmd in all the pgds we know about:
234 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100235static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100236{
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100237 /* change init_mm */
238 set_pte_atomic(kpte, pte);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100239#ifdef CONFIG_X86_32
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100240 if (!SHARED_KERNEL_PMD) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100241 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Jeremy Fitzhardingee3ed9102008-01-30 13:34:11 +0100243 list_for_each_entry(page, &pgd_list, lru) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100244 pgd_t *pgd;
245 pud_t *pud;
246 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100247
Ingo Molnar44af6c42008-01-30 13:34:03 +0100248 pgd = (pgd_t *)page_address(page) + pgd_index(address);
249 pud = pud_offset(pgd, address);
250 pmd = pmd_offset(pud, address);
251 set_pte_atomic((pte_t *)pmd, pte);
252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100254#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
256
Ingo Molnar9df84992008-02-04 16:48:09 +0100257static int
258try_preserve_large_page(pte_t *kpte, unsigned long address,
259 struct cpa_data *cpa)
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100260{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100261 unsigned long nextpage_addr, numpages, pmask, psize, flags, addr, pfn;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100262 pte_t new_pte, old_pte, *tmp;
263 pgprot_t old_prot, new_prot;
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100264 int i, do_split = 1;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100265 unsigned int level;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100266
Andi Kleenc9caa022008-03-12 03:53:29 +0100267 if (cpa->force_split)
268 return 1;
269
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100270 spin_lock_irqsave(&pgd_lock, flags);
271 /*
272 * Check for races, another CPU might have split this page
273 * up already:
274 */
275 tmp = lookup_address(address, &level);
276 if (tmp != kpte)
277 goto out_unlock;
278
279 switch (level) {
280 case PG_LEVEL_2M:
Andi Kleen31422c52008-02-04 16:48:08 +0100281 psize = PMD_PAGE_SIZE;
282 pmask = PMD_PAGE_MASK;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100283 break;
Andi Kleenf07333f2008-02-04 16:48:09 +0100284#ifdef CONFIG_X86_64
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100285 case PG_LEVEL_1G:
Andi Kleen5d3c8b22008-02-13 16:20:35 +0100286 psize = PUD_PAGE_SIZE;
287 pmask = PUD_PAGE_MASK;
Andi Kleenf07333f2008-02-04 16:48:09 +0100288 break;
289#endif
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100290 default:
Ingo Molnarbeaff632008-02-04 16:48:09 +0100291 do_split = -EINVAL;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100292 goto out_unlock;
293 }
294
295 /*
296 * Calculate the number of pages, which fit into this large
297 * page starting at address:
298 */
299 nextpage_addr = (address + psize) & pmask;
300 numpages = (nextpage_addr - address) >> PAGE_SHIFT;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100301 if (numpages < cpa->numpages)
302 cpa->numpages = numpages;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100303
304 /*
305 * We are safe now. Check whether the new pgprot is the same:
306 */
307 old_pte = *kpte;
308 old_prot = new_prot = pte_pgprot(old_pte);
309
310 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
311 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100312
313 /*
314 * old_pte points to the large page base address. So we need
315 * to add the offset of the virtual address:
316 */
317 pfn = pte_pfn(old_pte) + ((address & (psize - 1)) >> PAGE_SHIFT);
318 cpa->pfn = pfn;
319
320 new_prot = static_protections(new_prot, address, pfn);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100321
322 /*
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100323 * We need to check the full range, whether
324 * static_protection() requires a different pgprot for one of
325 * the pages in the range we try to preserve:
326 */
327 addr = address + PAGE_SIZE;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100328 pfn++;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100329 for (i = 1; i < cpa->numpages; i++, addr += PAGE_SIZE, pfn++) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100330 pgprot_t chk_prot = static_protections(new_prot, addr, pfn);
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100331
332 if (pgprot_val(chk_prot) != pgprot_val(new_prot))
333 goto out_unlock;
334 }
335
336 /*
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100337 * If there are no changes, return. maxpages has been updated
338 * above:
339 */
340 if (pgprot_val(new_prot) == pgprot_val(old_prot)) {
Ingo Molnarbeaff632008-02-04 16:48:09 +0100341 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100342 goto out_unlock;
343 }
344
345 /*
346 * We need to change the attributes. Check, whether we can
347 * change the large page in one go. We request a split, when
348 * the address is not aligned and the number of pages is
349 * smaller than the number of pages in the large page. Note
350 * that we limited the number of possible pages already to
351 * the number of pages in the large page.
352 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100353 if (address == (nextpage_addr - psize) && cpa->numpages == numpages) {
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100354 /*
355 * The address is aligned and the number of pages
356 * covers the full page.
357 */
358 new_pte = pfn_pte(pte_pfn(old_pte), canon_pgprot(new_prot));
359 __set_pmd_pte(kpte, address, new_pte);
360 cpa->flushtlb = 1;
Ingo Molnarbeaff632008-02-04 16:48:09 +0100361 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100362 }
363
364out_unlock:
365 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnar9df84992008-02-04 16:48:09 +0100366
Ingo Molnarbeaff632008-02-04 16:48:09 +0100367 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100368}
369
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100370static LIST_HEAD(page_pool);
371static unsigned long pool_size, pool_pages, pool_low;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100372static unsigned long pool_used, pool_failed;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100373
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100374static void cpa_fill_pool(struct page **ret)
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100375{
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100376 gfp_t gfp = GFP_KERNEL;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100377 unsigned long flags;
378 struct page *p;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100379
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100380 /*
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100381 * Avoid recursion (on debug-pagealloc) and also signal
382 * our priority to get to these pagetables:
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100383 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100384 if (current->flags & PF_MEMALLOC)
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100385 return;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100386 current->flags |= PF_MEMALLOC;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100387
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100388 /*
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100389 * Allocate atomically from atomic contexts:
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100390 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100391 if (in_atomic() || irqs_disabled() || debug_pagealloc)
392 gfp = GFP_ATOMIC | __GFP_NORETRY | __GFP_NOWARN;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100393
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100394 while (pool_pages < pool_size || (ret && !*ret)) {
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100395 p = alloc_pages(gfp, 0);
396 if (!p) {
397 pool_failed++;
398 break;
399 }
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100400 /*
401 * If the call site needs a page right now, provide it:
402 */
403 if (ret && !*ret) {
404 *ret = p;
405 continue;
406 }
407 spin_lock_irqsave(&pgd_lock, flags);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100408 list_add(&p->lru, &page_pool);
409 pool_pages++;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100410 spin_unlock_irqrestore(&pgd_lock, flags);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100411 }
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100412
413 current->flags &= ~PF_MEMALLOC;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100414}
415
416#define SHIFT_MB (20 - PAGE_SHIFT)
417#define ROUND_MB_GB ((1 << 10) - 1)
418#define SHIFT_MB_GB 10
419#define POOL_PAGES_PER_GB 16
420
421void __init cpa_init(void)
422{
423 struct sysinfo si;
424 unsigned long gb;
425
426 si_meminfo(&si);
427 /*
428 * Calculate the number of pool pages:
429 *
430 * Convert totalram (nr of pages) to MiB and round to the next
431 * GiB. Shift MiB to Gib and multiply the result by
432 * POOL_PAGES_PER_GB:
433 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100434 if (debug_pagealloc) {
435 gb = ((si.totalram >> SHIFT_MB) + ROUND_MB_GB) >> SHIFT_MB_GB;
436 pool_size = POOL_PAGES_PER_GB * gb;
437 } else {
438 pool_size = 1;
439 }
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100440 pool_low = pool_size;
441
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100442 cpa_fill_pool(NULL);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100443 printk(KERN_DEBUG
444 "CPA: page pool initialized %lu of %lu pages preallocated\n",
445 pool_pages, pool_size);
446}
447
Ingo Molnar7afe15b2008-01-30 13:33:57 +0100448static int split_large_page(pte_t *kpte, unsigned long address)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100449{
Thomas Gleixner7b610ee2008-02-04 16:48:10 +0100450 unsigned long flags, pfn, pfninc = 1;
Ingo Molnar86f03982008-01-30 13:34:09 +0100451 unsigned int i, level;
Ingo Molnar9df84992008-02-04 16:48:09 +0100452 pte_t *pbase, *tmp;
453 pgprot_t ref_prot;
454 struct page *base;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100455
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100456 /*
457 * Get a page from the pool. The pool list is protected by the
458 * pgd_lock, which we have to take anyway for the split
459 * operation:
460 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100461 spin_lock_irqsave(&pgd_lock, flags);
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100462 if (list_empty(&page_pool)) {
463 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100464 base = NULL;
465 cpa_fill_pool(&base);
466 if (!base)
467 return -ENOMEM;
468 spin_lock_irqsave(&pgd_lock, flags);
469 } else {
470 base = list_first_entry(&page_pool, struct page, lru);
471 list_del(&base->lru);
472 pool_pages--;
473
474 if (pool_pages < pool_low)
475 pool_low = pool_pages;
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100476 }
477
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100478 /*
479 * Check for races, another CPU might have split this page
480 * up for us already:
481 */
482 tmp = lookup_address(address, &level);
Ingo Molnar6ce9fc12008-02-04 16:48:08 +0100483 if (tmp != kpte)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100484 goto out_unlock;
485
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100486 pbase = (pte_t *)page_address(base);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700487 paravirt_alloc_pte(&init_mm, page_to_pfn(base));
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100488 ref_prot = pte_pgprot(pte_clrhuge(*kpte));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100489
Andi Kleenf07333f2008-02-04 16:48:09 +0100490#ifdef CONFIG_X86_64
491 if (level == PG_LEVEL_1G) {
492 pfninc = PMD_PAGE_SIZE >> PAGE_SHIFT;
493 pgprot_val(ref_prot) |= _PAGE_PSE;
Andi Kleenf07333f2008-02-04 16:48:09 +0100494 }
495#endif
496
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100497 /*
498 * Get the target pfn from the original entry:
499 */
500 pfn = pte_pfn(*kpte);
Andi Kleenf07333f2008-02-04 16:48:09 +0100501 for (i = 0; i < PTRS_PER_PTE; i++, pfn += pfninc)
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100502 set_pte(&pbase[i], pfn_pte(pfn, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100503
504 /*
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100505 * Install the new, split up pagetable. Important details here:
Huang, Ying4c881ca2008-01-30 13:34:04 +0100506 *
507 * On Intel the NX bit of all levels must be cleared to make a
508 * page executable. See section 4.13.2 of Intel 64 and IA-32
509 * Architectures Software Developer's Manual).
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100510 *
511 * Mark the entry present. The current mapping might be
512 * set to not present, which we preserved above.
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100513 */
Huang, Ying4c881ca2008-01-30 13:34:04 +0100514 ref_prot = pte_pgprot(pte_mkexec(pte_clrhuge(*kpte)));
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100515 pgprot_val(ref_prot) |= _PAGE_PRESENT;
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100516 __set_pmd_pte(kpte, address, mk_pte(base, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100517 base = NULL;
518
519out_unlock:
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100520 /*
521 * If we dropped out via the lookup_address check under
522 * pgd_lock then stick the page back into the pool:
523 */
524 if (base) {
525 list_add(&base->lru, &page_pool);
526 pool_pages++;
527 } else
528 pool_used++;
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100529 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100530
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100531 return 0;
532}
533
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100534static int __change_page_attr(struct cpa_data *cpa, int primary)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100535{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100536 unsigned long address = cpa->vaddr;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100537 int do_split, err;
538 unsigned int level;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100539 pte_t *kpte, old_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Ingo Molnar97f99fe2008-01-30 13:33:55 +0100541repeat:
Ingo Molnarf0646e42008-01-30 13:33:43 +0100542 kpte = lookup_address(address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (!kpte)
Ingo Molnard1a4be62008-04-18 21:32:22 +0200544 return 0;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100545
546 old_pte = *kpte;
547 if (!pte_val(old_pte)) {
548 if (!primary)
549 return 0;
550 printk(KERN_WARNING "CPA: called for zero pte. "
551 "vaddr = %lx cpa->vaddr = %lx\n", address,
552 cpa->vaddr);
553 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return -EINVAL;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100555 }
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100556
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100557 if (level == PG_LEVEL_4K) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100558 pte_t new_pte;
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100559 pgprot_t new_prot = pte_pgprot(old_pte);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100560 unsigned long pfn = pte_pfn(old_pte);
Thomas Gleixnera72a08a2008-01-30 13:34:07 +0100561
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100562 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
563 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Ingo Molnar86f03982008-01-30 13:34:09 +0100564
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100565 new_prot = static_protections(new_prot, address, pfn);
Ingo Molnar86f03982008-01-30 13:34:09 +0100566
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100567 /*
568 * We need to keep the pfn from the existing PTE,
569 * after all we're only going to change it's attributes
570 * not the memory it points to
571 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100572 new_pte = pfn_pte(pfn, canon_pgprot(new_prot));
573 cpa->pfn = pfn;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100574 /*
575 * Do we really change anything ?
576 */
577 if (pte_val(old_pte) != pte_val(new_pte)) {
578 set_pte_atomic(kpte, new_pte);
579 cpa->flushtlb = 1;
580 }
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100581 cpa->numpages = 1;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100582 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 }
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100584
585 /*
586 * Check, whether we can keep the large page intact
587 * and just change the pte:
588 */
Ingo Molnarbeaff632008-02-04 16:48:09 +0100589 do_split = try_preserve_large_page(kpte, address, cpa);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100590 /*
591 * When the range fits into the existing large page,
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100592 * return. cp->numpages and cpa->tlbflush have been updated in
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100593 * try_large_page:
594 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100595 if (do_split <= 0)
596 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100597
598 /*
599 * We have to split the large page:
600 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100601 err = split_large_page(kpte, address);
602 if (!err) {
603 cpa->flushtlb = 1;
604 goto repeat;
605 }
Ingo Molnarbeaff632008-02-04 16:48:09 +0100606
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100607 return err;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100608}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100610static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias);
611
612static int cpa_process_alias(struct cpa_data *cpa)
Ingo Molnar44af6c42008-01-30 13:34:03 +0100613{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100614 struct cpa_data alias_cpa;
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100615 int ret = 0;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100616
617 if (cpa->pfn > max_pfn_mapped)
618 return 0;
619
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100620 /*
621 * No need to redo, when the primary call touched the direct
622 * mapping already:
623 */
624 if (!within(cpa->vaddr, PAGE_OFFSET,
625 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT))) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100626
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100627 alias_cpa = *cpa;
628 alias_cpa.vaddr = (unsigned long) __va(cpa->pfn << PAGE_SHIFT);
629
630 ret = __change_page_attr_set_clr(&alias_cpa, 0);
631 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100632
Arjan van de Ven488fd992008-01-30 13:34:07 +0100633#ifdef CONFIG_X86_64
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100634 if (ret)
635 return ret;
Thomas Gleixner08797502008-01-30 13:34:09 +0100636 /*
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100637 * No need to redo, when the primary call touched the high
638 * mapping already:
639 */
640 if (within(cpa->vaddr, (unsigned long) _text, (unsigned long) _end))
641 return 0;
642
643 /*
Thomas Gleixner08797502008-01-30 13:34:09 +0100644 * If the physical address is inside the kernel map, we need
645 * to touch the high mapped kernel as well:
646 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100647 if (!within(cpa->pfn, highmap_start_pfn(), highmap_end_pfn()))
648 return 0;
Thomas Gleixner08797502008-01-30 13:34:09 +0100649
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100650 alias_cpa = *cpa;
651 alias_cpa.vaddr =
652 (cpa->pfn << PAGE_SHIFT) + __START_KERNEL_map - phys_base;
653
654 /*
655 * The high mapping range is imprecise, so ignore the return value.
656 */
657 __change_page_attr_set_clr(&alias_cpa, 0);
Thomas Gleixner08797502008-01-30 13:34:09 +0100658#endif
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100659 return ret;
Ingo Molnar44af6c42008-01-30 13:34:03 +0100660}
661
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100662static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100663{
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100664 int ret, numpages = cpa->numpages;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100665
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100666 while (numpages) {
667 /*
668 * Store the remaining nr of pages for the large page
669 * preservation check.
670 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100671 cpa->numpages = numpages;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100672
673 ret = __change_page_attr(cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100674 if (ret)
675 return ret;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100676
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100677 if (checkalias) {
678 ret = cpa_process_alias(cpa);
679 if (ret)
680 return ret;
681 }
682
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100683 /*
684 * Adjust the number of pages with the result of the
685 * CPA operation. Either a large page has been
686 * preserved or a single page update happened.
687 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100688 BUG_ON(cpa->numpages > numpages);
689 numpages -= cpa->numpages;
690 cpa->vaddr += cpa->numpages * PAGE_SIZE;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100691 }
Thomas Gleixnerff314522008-01-30 13:34:08 +0100692 return 0;
693}
694
Andi Kleen6bb83832008-02-04 16:48:06 +0100695static inline int cache_attr(pgprot_t attr)
696{
697 return pgprot_val(attr) &
698 (_PAGE_PAT | _PAGE_PAT_LARGE | _PAGE_PWT | _PAGE_PCD);
699}
700
Thomas Gleixnerff314522008-01-30 13:34:08 +0100701static int change_page_attr_set_clr(unsigned long addr, int numpages,
Andi Kleenc9caa022008-03-12 03:53:29 +0100702 pgprot_t mask_set, pgprot_t mask_clr,
703 int force_split)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100704{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100705 struct cpa_data cpa;
Thomas Gleixneraf96e442008-02-15 21:49:46 +0100706 int ret, cache, checkalias;
Thomas Gleixner331e4062008-02-04 16:48:06 +0100707
708 /*
709 * Check, if we are requested to change a not supported
710 * feature:
711 */
712 mask_set = canon_pgprot(mask_set);
713 mask_clr = canon_pgprot(mask_clr);
Andi Kleenc9caa022008-03-12 03:53:29 +0100714 if (!pgprot_val(mask_set) && !pgprot_val(mask_clr) && !force_split)
Thomas Gleixner331e4062008-02-04 16:48:06 +0100715 return 0;
716
Thomas Gleixner69b14152008-02-13 11:04:50 +0100717 /* Ensure we are PAGE_SIZE aligned */
718 if (addr & ~PAGE_MASK) {
719 addr &= PAGE_MASK;
720 /*
721 * People should not be passing in unaligned addresses:
722 */
723 WARN_ON_ONCE(1);
724 }
725
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100726 cpa.vaddr = addr;
727 cpa.numpages = numpages;
728 cpa.mask_set = mask_set;
729 cpa.mask_clr = mask_clr;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100730 cpa.flushtlb = 0;
Andi Kleenc9caa022008-03-12 03:53:29 +0100731 cpa.force_split = force_split;
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100732
Thomas Gleixneraf96e442008-02-15 21:49:46 +0100733 /* No alias checking for _NX bit modifications */
734 checkalias = (pgprot_val(mask_set) | pgprot_val(mask_clr)) != _PAGE_NX;
735
736 ret = __change_page_attr_set_clr(&cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100737
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100738 /*
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100739 * Check whether we really changed something:
740 */
741 if (!cpa.flushtlb)
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100742 goto out;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100743
744 /*
Andi Kleen6bb83832008-02-04 16:48:06 +0100745 * No need to flush, when we did not set any of the caching
746 * attributes:
747 */
748 cache = cache_attr(mask_set);
749
750 /*
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100751 * On success we use clflush, when the CPU supports it to
752 * avoid the wbindv. If the CPU does not support it and in the
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100753 * error case we fall back to cpa_flush_all (which uses
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100754 * wbindv):
755 */
756 if (!ret && cpu_has_clflush)
Andi Kleen6bb83832008-02-04 16:48:06 +0100757 cpa_flush_range(addr, numpages, cache);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100758 else
Andi Kleen6bb83832008-02-04 16:48:06 +0100759 cpa_flush_all(cache);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100760
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100761out:
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100762 cpa_fill_pool(NULL);
763
Thomas Gleixnerff314522008-01-30 13:34:08 +0100764 return ret;
765}
766
Thomas Gleixner56744542008-01-30 13:34:08 +0100767static inline int change_page_attr_set(unsigned long addr, int numpages,
768 pgprot_t mask)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100769{
Andi Kleenc9caa022008-03-12 03:53:29 +0100770 return change_page_attr_set_clr(addr, numpages, mask, __pgprot(0), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100771}
772
Thomas Gleixner56744542008-01-30 13:34:08 +0100773static inline int change_page_attr_clear(unsigned long addr, int numpages,
774 pgprot_t mask)
Thomas Gleixner72932c72008-01-30 13:34:08 +0100775{
Andi Kleenc9caa022008-03-12 03:53:29 +0100776 return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask, 0);
Thomas Gleixner72932c72008-01-30 13:34:08 +0100777}
778
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700779int _set_memory_uc(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100780{
Suresh Siddhade33c442008-04-25 17:07:22 -0700781 /*
782 * for now UC MINUS. see comments in ioremap_nocache()
783 */
Thomas Gleixner72932c72008-01-30 13:34:08 +0100784 return change_page_attr_set(addr, numpages,
Suresh Siddhade33c442008-04-25 17:07:22 -0700785 __pgprot(_PAGE_CACHE_UC_MINUS));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100786}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700787
788int set_memory_uc(unsigned long addr, int numpages)
789{
Suresh Siddhade33c442008-04-25 17:07:22 -0700790 /*
791 * for now UC MINUS. see comments in ioremap_nocache()
792 */
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700793 if (reserve_memtype(addr, addr + numpages * PAGE_SIZE,
Suresh Siddhade33c442008-04-25 17:07:22 -0700794 _PAGE_CACHE_UC_MINUS, NULL))
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700795 return -EINVAL;
796
797 return _set_memory_uc(addr, numpages);
798}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100799EXPORT_SYMBOL(set_memory_uc);
800
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700801int _set_memory_wc(unsigned long addr, int numpages)
802{
803 return change_page_attr_set(addr, numpages,
804 __pgprot(_PAGE_CACHE_WC));
805}
806
807int set_memory_wc(unsigned long addr, int numpages)
808{
809 if (!pat_wc_enabled)
810 return set_memory_uc(addr, numpages);
811
812 if (reserve_memtype(addr, addr + numpages * PAGE_SIZE,
813 _PAGE_CACHE_WC, NULL))
814 return -EINVAL;
815
816 return _set_memory_wc(addr, numpages);
817}
818EXPORT_SYMBOL(set_memory_wc);
819
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700820int _set_memory_wb(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100821{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100822 return change_page_attr_clear(addr, numpages,
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700823 __pgprot(_PAGE_CACHE_MASK));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100824}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700825
826int set_memory_wb(unsigned long addr, int numpages)
827{
828 free_memtype(addr, addr + numpages * PAGE_SIZE);
829
830 return _set_memory_wb(addr, numpages);
831}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100832EXPORT_SYMBOL(set_memory_wb);
833
834int set_memory_x(unsigned long addr, int numpages)
835{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100836 return change_page_attr_clear(addr, numpages, __pgprot(_PAGE_NX));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100837}
838EXPORT_SYMBOL(set_memory_x);
839
840int set_memory_nx(unsigned long addr, int numpages)
841{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100842 return change_page_attr_set(addr, numpages, __pgprot(_PAGE_NX));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100843}
844EXPORT_SYMBOL(set_memory_nx);
845
846int set_memory_ro(unsigned long addr, int numpages)
847{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100848 return change_page_attr_clear(addr, numpages, __pgprot(_PAGE_RW));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100849}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100850
851int set_memory_rw(unsigned long addr, int numpages)
852{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100853 return change_page_attr_set(addr, numpages, __pgprot(_PAGE_RW));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100854}
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100855
856int set_memory_np(unsigned long addr, int numpages)
857{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100858 return change_page_attr_clear(addr, numpages, __pgprot(_PAGE_PRESENT));
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100859}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100860
Andi Kleenc9caa022008-03-12 03:53:29 +0100861int set_memory_4k(unsigned long addr, int numpages)
862{
863 return change_page_attr_set_clr(addr, numpages, __pgprot(0),
864 __pgprot(0), 1);
865}
866
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100867int set_pages_uc(struct page *page, int numpages)
868{
869 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100870
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100871 return set_memory_uc(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100872}
873EXPORT_SYMBOL(set_pages_uc);
874
875int set_pages_wb(struct page *page, int numpages)
876{
877 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100878
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100879 return set_memory_wb(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100880}
881EXPORT_SYMBOL(set_pages_wb);
882
883int set_pages_x(struct page *page, int numpages)
884{
885 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100886
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100887 return set_memory_x(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100888}
889EXPORT_SYMBOL(set_pages_x);
890
891int set_pages_nx(struct page *page, int numpages)
892{
893 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100894
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100895 return set_memory_nx(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100896}
897EXPORT_SYMBOL(set_pages_nx);
898
899int set_pages_ro(struct page *page, int numpages)
900{
901 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100902
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100903 return set_memory_ro(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100904}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100905
906int set_pages_rw(struct page *page, int numpages)
907{
908 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100909
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100910 return set_memory_rw(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100911}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913#ifdef CONFIG_DEBUG_PAGEALLOC
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100914
915static int __set_pages_p(struct page *page, int numpages)
916{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100917 struct cpa_data cpa = { .vaddr = (unsigned long) page_address(page),
918 .numpages = numpages,
919 .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW),
920 .mask_clr = __pgprot(0)};
Thomas Gleixner72932c72008-01-30 13:34:08 +0100921
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100922 return __change_page_attr_set_clr(&cpa, 1);
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100923}
924
925static int __set_pages_np(struct page *page, int numpages)
926{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100927 struct cpa_data cpa = { .vaddr = (unsigned long) page_address(page),
928 .numpages = numpages,
929 .mask_set = __pgprot(0),
930 .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW)};
Thomas Gleixner72932c72008-01-30 13:34:08 +0100931
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100932 return __change_page_attr_set_clr(&cpa, 1);
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100933}
934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935void kernel_map_pages(struct page *page, int numpages, int enable)
936{
937 if (PageHighMem(page))
938 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100939 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -0700940 debug_check_no_locks_freed(page_address(page),
941 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100942 }
Ingo Molnarde5097c2006-01-09 15:59:21 -0800943
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100944 /*
Ingo Molnar12d6f212008-01-30 13:33:58 +0100945 * If page allocator is not up yet then do not call c_p_a():
946 */
947 if (!debug_pagealloc_enabled)
948 return;
949
950 /*
Ingo Molnarf8d84062008-02-13 14:09:53 +0100951 * The return value is ignored as the calls cannot fail.
952 * Large pages are kept enabled at boot time, and are
953 * split up quickly with DEBUG_PAGEALLOC. If a splitup
954 * fails here (due to temporary memory shortage) no damage
955 * is done because we just keep the largepage intact up
956 * to the next attempt when it will likely be split up:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 */
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100958 if (enable)
959 __set_pages_p(page, numpages);
960 else
961 __set_pages_np(page, numpages);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100962
963 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100964 * We should perform an IPI and flush all tlbs,
965 * but that can deadlock->flush only current cpu:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 */
967 __flush_tlb_all();
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100968
969 /*
970 * Try to refill the page pool here. We can do this only after
971 * the tlb flush.
972 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100973 cpa_fill_pool(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974}
Rafael J. Wysocki8a235ef2008-02-20 01:47:44 +0100975
Thomas Gleixneree7ae7a2008-04-17 17:40:45 +0200976#ifdef CONFIG_DEBUG_FS
977static int dpa_show(struct seq_file *m, void *v)
978{
979 seq_puts(m, "DEBUG_PAGEALLOC\n");
980 seq_printf(m, "pool_size : %lu\n", pool_size);
981 seq_printf(m, "pool_pages : %lu\n", pool_pages);
982 seq_printf(m, "pool_low : %lu\n", pool_low);
983 seq_printf(m, "pool_used : %lu\n", pool_used);
984 seq_printf(m, "pool_failed : %lu\n", pool_failed);
985
986 return 0;
987}
988
989static int dpa_open(struct inode *inode, struct file *filp)
990{
991 return single_open(filp, dpa_show, NULL);
992}
993
994static const struct file_operations dpa_fops = {
995 .open = dpa_open,
996 .read = seq_read,
997 .llseek = seq_lseek,
998 .release = single_release,
999};
1000
Ingo Molnara4928cf2008-04-23 13:20:56 +02001001static int __init debug_pagealloc_proc_init(void)
Thomas Gleixneree7ae7a2008-04-17 17:40:45 +02001002{
1003 struct dentry *de;
1004
1005 de = debugfs_create_file("debug_pagealloc", 0600, NULL, NULL,
1006 &dpa_fops);
1007 if (!de)
1008 return -ENOMEM;
1009
1010 return 0;
1011}
1012__initcall(debug_pagealloc_proc_init);
1013#endif
1014
Rafael J. Wysocki8a235ef2008-02-20 01:47:44 +01001015#ifdef CONFIG_HIBERNATION
1016
1017bool kernel_page_present(struct page *page)
1018{
1019 unsigned int level;
1020 pte_t *pte;
1021
1022 if (PageHighMem(page))
1023 return false;
1024
1025 pte = lookup_address((unsigned long)page_address(page), &level);
1026 return (pte_val(*pte) & _PAGE_PRESENT);
1027}
1028
1029#endif /* CONFIG_HIBERNATION */
1030
1031#endif /* CONFIG_DEBUG_PAGEALLOC */
Arjan van de Vend1028a12008-01-30 13:34:07 +01001032
1033/*
1034 * The testcases use internal knowledge of the implementation that shouldn't
1035 * be exposed to the rest of the kernel. Include these directly here.
1036 */
1037#ifdef CONFIG_CPA_DEBUG
1038#include "pageattr-test.c"
1039#endif