blob: 43e2f8483e4f59c33559263c0011e1e5bf041f9d [file] [log] [blame]
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001/*
2 * Copyright 2002 Andi Kleen, SuSE Labs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Thanks to Ben LaHaise for precious feedback.
Ingo Molnar9f4c8152008-01-30 13:33:41 +01004 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/highmem.h>
Ingo Molnar81922062008-01-30 13:34:04 +01006#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/module.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +01008#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/slab.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010010#include <linux/mm.h>
Thomas Gleixner76ebd052008-02-09 23:24:09 +010011#include <linux/interrupt.h>
Thomas Gleixneree7ae7a2008-04-17 17:40:45 +020012#include <linux/seq_file.h>
13#include <linux/debugfs.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010014
Thomas Gleixner950f9d92008-01-30 13:34:06 +010015#include <asm/e820.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/processor.h>
17#include <asm/tlbflush.h>
Dave Jonesf8af0952006-01-06 00:12:10 -080018#include <asm/sections.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010019#include <asm/uaccess.h>
20#include <asm/pgalloc.h>
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010021#include <asm/proto.h>
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -070022#include <asm/pat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Ingo Molnar9df84992008-02-04 16:48:09 +010024/*
25 * The current flushing context - we pass it instead of 5 arguments:
26 */
Thomas Gleixner72e458d2008-02-04 16:48:07 +010027struct cpa_data {
28 unsigned long vaddr;
Thomas Gleixner72e458d2008-02-04 16:48:07 +010029 pgprot_t mask_set;
30 pgprot_t mask_clr;
Thomas Gleixner65e074d2008-02-04 16:48:07 +010031 int numpages;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +010032 int flushtlb;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010033 unsigned long pfn;
Andi Kleenc9caa022008-03-12 03:53:29 +010034 unsigned force_split : 1;
Thomas Gleixner72e458d2008-02-04 16:48:07 +010035};
36
Thomas Gleixner65280e62008-05-05 16:35:21 +020037#ifdef CONFIG_PROC_FS
Andi Kleence0c0e52008-05-02 11:46:49 +020038static unsigned long direct_pages_count[PG_LEVEL_NUM];
39
Thomas Gleixner65280e62008-05-05 16:35:21 +020040void update_page_count(int level, unsigned long pages)
Andi Kleence0c0e52008-05-02 11:46:49 +020041{
Andi Kleence0c0e52008-05-02 11:46:49 +020042 unsigned long flags;
Thomas Gleixner65280e62008-05-05 16:35:21 +020043
Andi Kleence0c0e52008-05-02 11:46:49 +020044 /* Protect against CPA */
45 spin_lock_irqsave(&pgd_lock, flags);
46 direct_pages_count[level] += pages;
47 spin_unlock_irqrestore(&pgd_lock, flags);
Andi Kleence0c0e52008-05-02 11:46:49 +020048}
49
Thomas Gleixner65280e62008-05-05 16:35:21 +020050static void split_page_count(int level)
51{
52 direct_pages_count[level]--;
53 direct_pages_count[level - 1] += PTRS_PER_PTE;
54}
55
56int arch_report_meminfo(char *page)
57{
Hugh Dickinsa06de632008-08-15 13:58:32 +010058 int n = sprintf(page, "DirectMap4k: %8lu kB\n",
59 direct_pages_count[PG_LEVEL_4K] << 2);
60#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
61 n += sprintf(page + n, "DirectMap2M: %8lu kB\n",
62 direct_pages_count[PG_LEVEL_2M] << 11);
63#else
64 n += sprintf(page + n, "DirectMap4M: %8lu kB\n",
65 direct_pages_count[PG_LEVEL_2M] << 12);
66#endif
Thomas Gleixner65280e62008-05-05 16:35:21 +020067#ifdef CONFIG_X86_64
Hugh Dickinsa06de632008-08-15 13:58:32 +010068 if (direct_gbpages)
69 n += sprintf(page + n, "DirectMap1G: %8lu kB\n",
70 direct_pages_count[PG_LEVEL_1G] << 20);
Thomas Gleixner65280e62008-05-05 16:35:21 +020071#endif
72 return n;
73}
74#else
75static inline void split_page_count(int level) { }
76#endif
77
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010078#ifdef CONFIG_X86_64
79
80static inline unsigned long highmap_start_pfn(void)
81{
82 return __pa(_text) >> PAGE_SHIFT;
83}
84
85static inline unsigned long highmap_end_pfn(void)
86{
87 return __pa(round_up((unsigned long)_end, PMD_SIZE)) >> PAGE_SHIFT;
88}
89
90#endif
91
Ingo Molnar92cb54a2008-02-13 14:37:52 +010092#ifdef CONFIG_DEBUG_PAGEALLOC
93# define debug_pagealloc 1
94#else
95# define debug_pagealloc 0
96#endif
97
Arjan van de Vened724be2008-01-30 13:34:04 +010098static inline int
99within(unsigned long addr, unsigned long start, unsigned long end)
Ingo Molnar687c4822008-01-30 13:34:04 +0100100{
Arjan van de Vened724be2008-01-30 13:34:04 +0100101 return addr >= start && addr < end;
102}
103
104/*
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100105 * Flushing functions
106 */
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100107
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100108/**
109 * clflush_cache_range - flush a cache range with clflush
110 * @addr: virtual start address
111 * @size: number of bytes to flush
112 *
113 * clflush is an unordered instruction which needs fencing with mfence
114 * to avoid ordering issues.
115 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100116void clflush_cache_range(void *vaddr, unsigned int size)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100117{
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100118 void *vend = vaddr + size - 1;
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100119
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100120 mb();
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100121
122 for (; vaddr < vend; vaddr += boot_cpu_data.x86_clflush_size)
123 clflush(vaddr);
124 /*
125 * Flush any possible final partial cacheline:
126 */
127 clflush(vend);
128
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100129 mb();
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100130}
131
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100132static void __cpa_flush_all(void *arg)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100133{
Andi Kleen6bb83832008-02-04 16:48:06 +0100134 unsigned long cache = (unsigned long)arg;
135
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100136 /*
137 * Flush all to work around Errata in early athlons regarding
138 * large page flushing.
139 */
140 __flush_tlb_all();
141
Andi Kleen6bb83832008-02-04 16:48:06 +0100142 if (cache && boot_cpu_data.x86_model >= 4)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100143 wbinvd();
144}
145
Andi Kleen6bb83832008-02-04 16:48:06 +0100146static void cpa_flush_all(unsigned long cache)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100147{
148 BUG_ON(irqs_disabled());
149
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200150 on_each_cpu(__cpa_flush_all, (void *) cache, 1);
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100151}
152
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100153static void __cpa_flush_range(void *arg)
154{
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100155 /*
156 * We could optimize that further and do individual per page
157 * tlb invalidates for a low number of pages. Caveat: we must
158 * flush the high aliases on 64bit as well.
159 */
160 __flush_tlb_all();
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100161}
162
Andi Kleen6bb83832008-02-04 16:48:06 +0100163static void cpa_flush_range(unsigned long start, int numpages, int cache)
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100164{
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100165 unsigned int i, level;
166 unsigned long addr;
167
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100168 BUG_ON(irqs_disabled());
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100169 WARN_ON(PAGE_ALIGN(start) != start);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100170
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200171 on_each_cpu(__cpa_flush_range, NULL, 1);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100172
Andi Kleen6bb83832008-02-04 16:48:06 +0100173 if (!cache)
174 return;
175
Thomas Gleixner3b233e52008-01-30 13:34:08 +0100176 /*
177 * We only need to flush on one CPU,
178 * clflush is a MESI-coherent instruction that
179 * will cause all other CPUs to flush the same
180 * cachelines:
181 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100182 for (i = 0, addr = start; i < numpages; i++, addr += PAGE_SIZE) {
183 pte_t *pte = lookup_address(addr, &level);
184
185 /*
186 * Only flush present addresses:
187 */
Thomas Gleixner7bfb72e2008-02-04 16:48:08 +0100188 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100189 clflush_cache_range((void *) addr, PAGE_SIZE);
190 }
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100191}
192
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100193/*
Arjan van de Vened724be2008-01-30 13:34:04 +0100194 * Certain areas of memory on x86 require very specific protection flags,
195 * for example the BIOS area or kernel text. Callers don't always get this
196 * right (again, ioremap() on BIOS memory is not uncommon) so this function
197 * checks and fixes these known static required protection bits.
198 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100199static inline pgprot_t static_protections(pgprot_t prot, unsigned long address,
200 unsigned long pfn)
Arjan van de Vened724be2008-01-30 13:34:04 +0100201{
202 pgprot_t forbidden = __pgprot(0);
203
Ingo Molnar687c4822008-01-30 13:34:04 +0100204 /*
Arjan van de Vened724be2008-01-30 13:34:04 +0100205 * The BIOS area between 640k and 1Mb needs to be executable for
206 * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support.
Ingo Molnar687c4822008-01-30 13:34:04 +0100207 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100208 if (within(pfn, BIOS_BEGIN >> PAGE_SHIFT, BIOS_END >> PAGE_SHIFT))
Arjan van de Vened724be2008-01-30 13:34:04 +0100209 pgprot_val(forbidden) |= _PAGE_NX;
210
211 /*
212 * The kernel text needs to be executable for obvious reasons
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100213 * Does not cover __inittext since that is gone later on. On
214 * 64bit we do not enforce !NX on the low mapping
Arjan van de Vened724be2008-01-30 13:34:04 +0100215 */
216 if (within(address, (unsigned long)_text, (unsigned long)_etext))
217 pgprot_val(forbidden) |= _PAGE_NX;
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100218
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100219 /*
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100220 * The .rodata section needs to be read-only. Using the pfn
221 * catches all aliases.
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100222 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100223 if (within(pfn, __pa((unsigned long)__start_rodata) >> PAGE_SHIFT,
224 __pa((unsigned long)__end_rodata) >> PAGE_SHIFT))
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100225 pgprot_val(forbidden) |= _PAGE_RW;
Arjan van de Vened724be2008-01-30 13:34:04 +0100226
227 prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden));
Ingo Molnar687c4822008-01-30 13:34:04 +0100228
229 return prot;
230}
231
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100232/*
233 * Lookup the page table entry for a virtual address. Return a pointer
234 * to the entry and the level of the mapping.
235 *
236 * Note: We return pud and pmd either when the entry is marked large
237 * or when the present bit is not set. Otherwise we would return a
238 * pointer to a nonexisting mapping.
239 */
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100240pte_t *lookup_address(unsigned long address, unsigned int *level)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100241{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 pgd_t *pgd = pgd_offset_k(address);
243 pud_t *pud;
244 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100245
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100246 *level = PG_LEVEL_NONE;
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (pgd_none(*pgd))
249 return NULL;
Ingo Molnar9df84992008-02-04 16:48:09 +0100250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 pud = pud_offset(pgd, address);
252 if (pud_none(*pud))
253 return NULL;
Andi Kleenc2f71ee2008-02-04 16:48:09 +0100254
255 *level = PG_LEVEL_1G;
256 if (pud_large(*pud) || !pud_present(*pud))
257 return (pte_t *)pud;
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 pmd = pmd_offset(pud, address);
260 if (pmd_none(*pmd))
261 return NULL;
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100262
263 *level = PG_LEVEL_2M;
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100264 if (pmd_large(*pmd) || !pmd_present(*pmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return (pte_t *)pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100267 *level = PG_LEVEL_4K;
Ingo Molnar9df84992008-02-04 16:48:09 +0100268
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100269 return pte_offset_kernel(pmd, address);
270}
Pekka Paalanen75bb8832008-05-12 21:20:56 +0200271EXPORT_SYMBOL_GPL(lookup_address);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100272
Ingo Molnar9df84992008-02-04 16:48:09 +0100273/*
274 * Set the new pmd in all the pgds we know about:
275 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100276static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100277{
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100278 /* change init_mm */
279 set_pte_atomic(kpte, pte);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100280#ifdef CONFIG_X86_32
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100281 if (!SHARED_KERNEL_PMD) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100282 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Jeremy Fitzhardingee3ed9102008-01-30 13:34:11 +0100284 list_for_each_entry(page, &pgd_list, lru) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100285 pgd_t *pgd;
286 pud_t *pud;
287 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100288
Ingo Molnar44af6c42008-01-30 13:34:03 +0100289 pgd = (pgd_t *)page_address(page) + pgd_index(address);
290 pud = pud_offset(pgd, address);
291 pmd = pmd_offset(pud, address);
292 set_pte_atomic((pte_t *)pmd, pte);
293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100295#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
Ingo Molnar9df84992008-02-04 16:48:09 +0100298static int
299try_preserve_large_page(pte_t *kpte, unsigned long address,
300 struct cpa_data *cpa)
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100301{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100302 unsigned long nextpage_addr, numpages, pmask, psize, flags, addr, pfn;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100303 pte_t new_pte, old_pte, *tmp;
304 pgprot_t old_prot, new_prot;
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100305 int i, do_split = 1;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100306 unsigned int level;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100307
Andi Kleenc9caa022008-03-12 03:53:29 +0100308 if (cpa->force_split)
309 return 1;
310
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100311 spin_lock_irqsave(&pgd_lock, flags);
312 /*
313 * Check for races, another CPU might have split this page
314 * up already:
315 */
316 tmp = lookup_address(address, &level);
317 if (tmp != kpte)
318 goto out_unlock;
319
320 switch (level) {
321 case PG_LEVEL_2M:
Andi Kleen31422c52008-02-04 16:48:08 +0100322 psize = PMD_PAGE_SIZE;
323 pmask = PMD_PAGE_MASK;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100324 break;
Andi Kleenf07333f2008-02-04 16:48:09 +0100325#ifdef CONFIG_X86_64
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100326 case PG_LEVEL_1G:
Andi Kleen5d3c8b22008-02-13 16:20:35 +0100327 psize = PUD_PAGE_SIZE;
328 pmask = PUD_PAGE_MASK;
Andi Kleenf07333f2008-02-04 16:48:09 +0100329 break;
330#endif
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100331 default:
Ingo Molnarbeaff632008-02-04 16:48:09 +0100332 do_split = -EINVAL;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100333 goto out_unlock;
334 }
335
336 /*
337 * Calculate the number of pages, which fit into this large
338 * page starting at address:
339 */
340 nextpage_addr = (address + psize) & pmask;
341 numpages = (nextpage_addr - address) >> PAGE_SHIFT;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100342 if (numpages < cpa->numpages)
343 cpa->numpages = numpages;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100344
345 /*
346 * We are safe now. Check whether the new pgprot is the same:
347 */
348 old_pte = *kpte;
349 old_prot = new_prot = pte_pgprot(old_pte);
350
351 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
352 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100353
354 /*
355 * old_pte points to the large page base address. So we need
356 * to add the offset of the virtual address:
357 */
358 pfn = pte_pfn(old_pte) + ((address & (psize - 1)) >> PAGE_SHIFT);
359 cpa->pfn = pfn;
360
361 new_prot = static_protections(new_prot, address, pfn);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100362
363 /*
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100364 * We need to check the full range, whether
365 * static_protection() requires a different pgprot for one of
366 * the pages in the range we try to preserve:
367 */
368 addr = address + PAGE_SIZE;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100369 pfn++;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100370 for (i = 1; i < cpa->numpages; i++, addr += PAGE_SIZE, pfn++) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100371 pgprot_t chk_prot = static_protections(new_prot, addr, pfn);
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100372
373 if (pgprot_val(chk_prot) != pgprot_val(new_prot))
374 goto out_unlock;
375 }
376
377 /*
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100378 * If there are no changes, return. maxpages has been updated
379 * above:
380 */
381 if (pgprot_val(new_prot) == pgprot_val(old_prot)) {
Ingo Molnarbeaff632008-02-04 16:48:09 +0100382 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100383 goto out_unlock;
384 }
385
386 /*
387 * We need to change the attributes. Check, whether we can
388 * change the large page in one go. We request a split, when
389 * the address is not aligned and the number of pages is
390 * smaller than the number of pages in the large page. Note
391 * that we limited the number of possible pages already to
392 * the number of pages in the large page.
393 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100394 if (address == (nextpage_addr - psize) && cpa->numpages == numpages) {
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100395 /*
396 * The address is aligned and the number of pages
397 * covers the full page.
398 */
399 new_pte = pfn_pte(pte_pfn(old_pte), canon_pgprot(new_prot));
400 __set_pmd_pte(kpte, address, new_pte);
401 cpa->flushtlb = 1;
Ingo Molnarbeaff632008-02-04 16:48:09 +0100402 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100403 }
404
405out_unlock:
406 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnar9df84992008-02-04 16:48:09 +0100407
Ingo Molnarbeaff632008-02-04 16:48:09 +0100408 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100409}
410
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100411static LIST_HEAD(page_pool);
412static unsigned long pool_size, pool_pages, pool_low;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100413static unsigned long pool_used, pool_failed;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100414
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100415static void cpa_fill_pool(struct page **ret)
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100416{
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100417 gfp_t gfp = GFP_KERNEL;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100418 unsigned long flags;
419 struct page *p;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100420
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100421 /*
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100422 * Avoid recursion (on debug-pagealloc) and also signal
423 * our priority to get to these pagetables:
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100424 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100425 if (current->flags & PF_MEMALLOC)
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100426 return;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100427 current->flags |= PF_MEMALLOC;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100428
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100429 /*
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100430 * Allocate atomically from atomic contexts:
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100431 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100432 if (in_atomic() || irqs_disabled() || debug_pagealloc)
433 gfp = GFP_ATOMIC | __GFP_NORETRY | __GFP_NOWARN;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100434
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100435 while (pool_pages < pool_size || (ret && !*ret)) {
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100436 p = alloc_pages(gfp, 0);
437 if (!p) {
438 pool_failed++;
439 break;
440 }
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100441 /*
442 * If the call site needs a page right now, provide it:
443 */
444 if (ret && !*ret) {
445 *ret = p;
446 continue;
447 }
448 spin_lock_irqsave(&pgd_lock, flags);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100449 list_add(&p->lru, &page_pool);
450 pool_pages++;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100451 spin_unlock_irqrestore(&pgd_lock, flags);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100452 }
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100453
454 current->flags &= ~PF_MEMALLOC;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100455}
456
457#define SHIFT_MB (20 - PAGE_SHIFT)
458#define ROUND_MB_GB ((1 << 10) - 1)
459#define SHIFT_MB_GB 10
460#define POOL_PAGES_PER_GB 16
461
462void __init cpa_init(void)
463{
464 struct sysinfo si;
465 unsigned long gb;
466
467 si_meminfo(&si);
468 /*
469 * Calculate the number of pool pages:
470 *
471 * Convert totalram (nr of pages) to MiB and round to the next
472 * GiB. Shift MiB to Gib and multiply the result by
473 * POOL_PAGES_PER_GB:
474 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100475 if (debug_pagealloc) {
476 gb = ((si.totalram >> SHIFT_MB) + ROUND_MB_GB) >> SHIFT_MB_GB;
477 pool_size = POOL_PAGES_PER_GB * gb;
478 } else {
479 pool_size = 1;
480 }
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100481 pool_low = pool_size;
482
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100483 cpa_fill_pool(NULL);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100484 printk(KERN_DEBUG
485 "CPA: page pool initialized %lu of %lu pages preallocated\n",
486 pool_pages, pool_size);
487}
488
Ingo Molnar7afe15b2008-01-30 13:33:57 +0100489static int split_large_page(pte_t *kpte, unsigned long address)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100490{
Thomas Gleixner7b610ee2008-02-04 16:48:10 +0100491 unsigned long flags, pfn, pfninc = 1;
Ingo Molnar86f03982008-01-30 13:34:09 +0100492 unsigned int i, level;
Ingo Molnar9df84992008-02-04 16:48:09 +0100493 pte_t *pbase, *tmp;
494 pgprot_t ref_prot;
495 struct page *base;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100496
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100497 /*
498 * Get a page from the pool. The pool list is protected by the
499 * pgd_lock, which we have to take anyway for the split
500 * operation:
501 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100502 spin_lock_irqsave(&pgd_lock, flags);
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100503 if (list_empty(&page_pool)) {
504 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100505 base = NULL;
506 cpa_fill_pool(&base);
507 if (!base)
508 return -ENOMEM;
509 spin_lock_irqsave(&pgd_lock, flags);
510 } else {
511 base = list_first_entry(&page_pool, struct page, lru);
512 list_del(&base->lru);
513 pool_pages--;
514
515 if (pool_pages < pool_low)
516 pool_low = pool_pages;
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100517 }
518
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100519 /*
520 * Check for races, another CPU might have split this page
521 * up for us already:
522 */
523 tmp = lookup_address(address, &level);
Ingo Molnar6ce9fc12008-02-04 16:48:08 +0100524 if (tmp != kpte)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100525 goto out_unlock;
526
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100527 pbase = (pte_t *)page_address(base);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700528 paravirt_alloc_pte(&init_mm, page_to_pfn(base));
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100529 ref_prot = pte_pgprot(pte_clrhuge(*kpte));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100530
Andi Kleenf07333f2008-02-04 16:48:09 +0100531#ifdef CONFIG_X86_64
532 if (level == PG_LEVEL_1G) {
533 pfninc = PMD_PAGE_SIZE >> PAGE_SHIFT;
534 pgprot_val(ref_prot) |= _PAGE_PSE;
Andi Kleenf07333f2008-02-04 16:48:09 +0100535 }
536#endif
537
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100538 /*
539 * Get the target pfn from the original entry:
540 */
541 pfn = pte_pfn(*kpte);
Andi Kleenf07333f2008-02-04 16:48:09 +0100542 for (i = 0; i < PTRS_PER_PTE; i++, pfn += pfninc)
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100543 set_pte(&pbase[i], pfn_pte(pfn, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100544
Andi Kleence0c0e52008-05-02 11:46:49 +0200545 if (address >= (unsigned long)__va(0) &&
Yinghai Luf361a452008-07-10 20:38:26 -0700546 address < (unsigned long)__va(max_low_pfn_mapped << PAGE_SHIFT))
547 split_page_count(level);
548
549#ifdef CONFIG_X86_64
550 if (address >= (unsigned long)__va(1UL<<32) &&
Thomas Gleixner65280e62008-05-05 16:35:21 +0200551 address < (unsigned long)__va(max_pfn_mapped << PAGE_SHIFT))
552 split_page_count(level);
Yinghai Luf361a452008-07-10 20:38:26 -0700553#endif
Andi Kleence0c0e52008-05-02 11:46:49 +0200554
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100555 /*
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100556 * Install the new, split up pagetable. Important details here:
Huang, Ying4c881ca2008-01-30 13:34:04 +0100557 *
558 * On Intel the NX bit of all levels must be cleared to make a
559 * page executable. See section 4.13.2 of Intel 64 and IA-32
560 * Architectures Software Developer's Manual).
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100561 *
562 * Mark the entry present. The current mapping might be
563 * set to not present, which we preserved above.
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100564 */
Huang, Ying4c881ca2008-01-30 13:34:04 +0100565 ref_prot = pte_pgprot(pte_mkexec(pte_clrhuge(*kpte)));
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100566 pgprot_val(ref_prot) |= _PAGE_PRESENT;
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100567 __set_pmd_pte(kpte, address, mk_pte(base, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100568 base = NULL;
569
570out_unlock:
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100571 /*
572 * If we dropped out via the lookup_address check under
573 * pgd_lock then stick the page back into the pool:
574 */
575 if (base) {
576 list_add(&base->lru, &page_pool);
577 pool_pages++;
578 } else
579 pool_used++;
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100580 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100581
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100582 return 0;
583}
584
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100585static int __change_page_attr(struct cpa_data *cpa, int primary)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100586{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100587 unsigned long address = cpa->vaddr;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100588 int do_split, err;
589 unsigned int level;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100590 pte_t *kpte, old_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Ingo Molnar97f99fe2008-01-30 13:33:55 +0100592repeat:
Ingo Molnarf0646e42008-01-30 13:33:43 +0100593 kpte = lookup_address(address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 if (!kpte)
Ingo Molnard1a4be62008-04-18 21:32:22 +0200595 return 0;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100596
597 old_pte = *kpte;
598 if (!pte_val(old_pte)) {
599 if (!primary)
600 return 0;
Arjan van de Ven875e40b2008-07-30 12:26:26 -0700601 WARN(1, KERN_WARNING "CPA: called for zero pte. "
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100602 "vaddr = %lx cpa->vaddr = %lx\n", address,
603 cpa->vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 return -EINVAL;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100605 }
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100606
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100607 if (level == PG_LEVEL_4K) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100608 pte_t new_pte;
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100609 pgprot_t new_prot = pte_pgprot(old_pte);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100610 unsigned long pfn = pte_pfn(old_pte);
Thomas Gleixnera72a08a2008-01-30 13:34:07 +0100611
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100612 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
613 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Ingo Molnar86f03982008-01-30 13:34:09 +0100614
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100615 new_prot = static_protections(new_prot, address, pfn);
Ingo Molnar86f03982008-01-30 13:34:09 +0100616
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100617 /*
618 * We need to keep the pfn from the existing PTE,
619 * after all we're only going to change it's attributes
620 * not the memory it points to
621 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100622 new_pte = pfn_pte(pfn, canon_pgprot(new_prot));
623 cpa->pfn = pfn;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100624 /*
625 * Do we really change anything ?
626 */
627 if (pte_val(old_pte) != pte_val(new_pte)) {
628 set_pte_atomic(kpte, new_pte);
629 cpa->flushtlb = 1;
630 }
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100631 cpa->numpages = 1;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100632 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100634
635 /*
636 * Check, whether we can keep the large page intact
637 * and just change the pte:
638 */
Ingo Molnarbeaff632008-02-04 16:48:09 +0100639 do_split = try_preserve_large_page(kpte, address, cpa);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100640 /*
641 * When the range fits into the existing large page,
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100642 * return. cp->numpages and cpa->tlbflush have been updated in
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100643 * try_large_page:
644 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100645 if (do_split <= 0)
646 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100647
648 /*
649 * We have to split the large page:
650 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100651 err = split_large_page(kpte, address);
652 if (!err) {
653 cpa->flushtlb = 1;
654 goto repeat;
655 }
Ingo Molnarbeaff632008-02-04 16:48:09 +0100656
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100657 return err;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100658}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100660static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias);
661
662static int cpa_process_alias(struct cpa_data *cpa)
Ingo Molnar44af6c42008-01-30 13:34:03 +0100663{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100664 struct cpa_data alias_cpa;
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100665 int ret = 0;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100666
Yinghai Lu965194c2008-07-12 14:31:28 -0700667 if (cpa->pfn >= max_pfn_mapped)
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100668 return 0;
669
Yinghai Luf361a452008-07-10 20:38:26 -0700670#ifdef CONFIG_X86_64
Yinghai Lu965194c2008-07-12 14:31:28 -0700671 if (cpa->pfn >= max_low_pfn_mapped && cpa->pfn < (1UL<<(32-PAGE_SHIFT)))
Yinghai Luf361a452008-07-10 20:38:26 -0700672 return 0;
673#endif
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100674 /*
675 * No need to redo, when the primary call touched the direct
676 * mapping already:
677 */
Yinghai Luf361a452008-07-10 20:38:26 -0700678 if (!(within(cpa->vaddr, PAGE_OFFSET,
679 PAGE_OFFSET + (max_low_pfn_mapped << PAGE_SHIFT))
680#ifdef CONFIG_X86_64
681 || within(cpa->vaddr, PAGE_OFFSET + (1UL<<32),
682 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT))
683#endif
684 )) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100685
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100686 alias_cpa = *cpa;
687 alias_cpa.vaddr = (unsigned long) __va(cpa->pfn << PAGE_SHIFT);
688
689 ret = __change_page_attr_set_clr(&alias_cpa, 0);
690 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100691
Arjan van de Ven488fd992008-01-30 13:34:07 +0100692#ifdef CONFIG_X86_64
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100693 if (ret)
694 return ret;
Thomas Gleixner08797502008-01-30 13:34:09 +0100695 /*
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100696 * No need to redo, when the primary call touched the high
697 * mapping already:
698 */
699 if (within(cpa->vaddr, (unsigned long) _text, (unsigned long) _end))
700 return 0;
701
702 /*
Thomas Gleixner08797502008-01-30 13:34:09 +0100703 * If the physical address is inside the kernel map, we need
704 * to touch the high mapped kernel as well:
705 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100706 if (!within(cpa->pfn, highmap_start_pfn(), highmap_end_pfn()))
707 return 0;
Thomas Gleixner08797502008-01-30 13:34:09 +0100708
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100709 alias_cpa = *cpa;
710 alias_cpa.vaddr =
711 (cpa->pfn << PAGE_SHIFT) + __START_KERNEL_map - phys_base;
712
713 /*
714 * The high mapping range is imprecise, so ignore the return value.
715 */
716 __change_page_attr_set_clr(&alias_cpa, 0);
Thomas Gleixner08797502008-01-30 13:34:09 +0100717#endif
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100718 return ret;
Ingo Molnar44af6c42008-01-30 13:34:03 +0100719}
720
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100721static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100722{
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100723 int ret, numpages = cpa->numpages;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100724
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100725 while (numpages) {
726 /*
727 * Store the remaining nr of pages for the large page
728 * preservation check.
729 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100730 cpa->numpages = numpages;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100731
732 ret = __change_page_attr(cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100733 if (ret)
734 return ret;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100735
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100736 if (checkalias) {
737 ret = cpa_process_alias(cpa);
738 if (ret)
739 return ret;
740 }
741
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100742 /*
743 * Adjust the number of pages with the result of the
744 * CPA operation. Either a large page has been
745 * preserved or a single page update happened.
746 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100747 BUG_ON(cpa->numpages > numpages);
748 numpages -= cpa->numpages;
749 cpa->vaddr += cpa->numpages * PAGE_SIZE;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100750 }
Thomas Gleixnerff314522008-01-30 13:34:08 +0100751 return 0;
752}
753
Andi Kleen6bb83832008-02-04 16:48:06 +0100754static inline int cache_attr(pgprot_t attr)
755{
756 return pgprot_val(attr) &
757 (_PAGE_PAT | _PAGE_PAT_LARGE | _PAGE_PWT | _PAGE_PCD);
758}
759
Thomas Gleixnerff314522008-01-30 13:34:08 +0100760static int change_page_attr_set_clr(unsigned long addr, int numpages,
Andi Kleenc9caa022008-03-12 03:53:29 +0100761 pgprot_t mask_set, pgprot_t mask_clr,
762 int force_split)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100763{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100764 struct cpa_data cpa;
Thomas Gleixneraf96e442008-02-15 21:49:46 +0100765 int ret, cache, checkalias;
Thomas Gleixner331e4062008-02-04 16:48:06 +0100766
767 /*
768 * Check, if we are requested to change a not supported
769 * feature:
770 */
771 mask_set = canon_pgprot(mask_set);
772 mask_clr = canon_pgprot(mask_clr);
Andi Kleenc9caa022008-03-12 03:53:29 +0100773 if (!pgprot_val(mask_set) && !pgprot_val(mask_clr) && !force_split)
Thomas Gleixner331e4062008-02-04 16:48:06 +0100774 return 0;
775
Thomas Gleixner69b14152008-02-13 11:04:50 +0100776 /* Ensure we are PAGE_SIZE aligned */
777 if (addr & ~PAGE_MASK) {
778 addr &= PAGE_MASK;
779 /*
780 * People should not be passing in unaligned addresses:
781 */
782 WARN_ON_ONCE(1);
783 }
784
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100785 cpa.vaddr = addr;
786 cpa.numpages = numpages;
787 cpa.mask_set = mask_set;
788 cpa.mask_clr = mask_clr;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100789 cpa.flushtlb = 0;
Andi Kleenc9caa022008-03-12 03:53:29 +0100790 cpa.force_split = force_split;
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100791
Thomas Gleixneraf96e442008-02-15 21:49:46 +0100792 /* No alias checking for _NX bit modifications */
793 checkalias = (pgprot_val(mask_set) | pgprot_val(mask_clr)) != _PAGE_NX;
794
795 ret = __change_page_attr_set_clr(&cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100796
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100797 /*
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100798 * Check whether we really changed something:
799 */
800 if (!cpa.flushtlb)
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100801 goto out;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100802
803 /*
Andi Kleen6bb83832008-02-04 16:48:06 +0100804 * No need to flush, when we did not set any of the caching
805 * attributes:
806 */
807 cache = cache_attr(mask_set);
808
809 /*
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100810 * On success we use clflush, when the CPU supports it to
811 * avoid the wbindv. If the CPU does not support it and in the
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100812 * error case we fall back to cpa_flush_all (which uses
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100813 * wbindv):
814 */
815 if (!ret && cpu_has_clflush)
Andi Kleen6bb83832008-02-04 16:48:06 +0100816 cpa_flush_range(addr, numpages, cache);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100817 else
Andi Kleen6bb83832008-02-04 16:48:06 +0100818 cpa_flush_all(cache);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100819
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100820out:
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100821 cpa_fill_pool(NULL);
822
Thomas Gleixnerff314522008-01-30 13:34:08 +0100823 return ret;
824}
825
Thomas Gleixner56744542008-01-30 13:34:08 +0100826static inline int change_page_attr_set(unsigned long addr, int numpages,
827 pgprot_t mask)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100828{
Andi Kleenc9caa022008-03-12 03:53:29 +0100829 return change_page_attr_set_clr(addr, numpages, mask, __pgprot(0), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100830}
831
Thomas Gleixner56744542008-01-30 13:34:08 +0100832static inline int change_page_attr_clear(unsigned long addr, int numpages,
833 pgprot_t mask)
Thomas Gleixner72932c72008-01-30 13:34:08 +0100834{
Andi Kleenc9caa022008-03-12 03:53:29 +0100835 return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask, 0);
Thomas Gleixner72932c72008-01-30 13:34:08 +0100836}
837
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700838int _set_memory_uc(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100839{
Suresh Siddhade33c442008-04-25 17:07:22 -0700840 /*
841 * for now UC MINUS. see comments in ioremap_nocache()
842 */
Thomas Gleixner72932c72008-01-30 13:34:08 +0100843 return change_page_attr_set(addr, numpages,
Suresh Siddhade33c442008-04-25 17:07:22 -0700844 __pgprot(_PAGE_CACHE_UC_MINUS));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100845}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700846
847int set_memory_uc(unsigned long addr, int numpages)
848{
Suresh Siddhade33c442008-04-25 17:07:22 -0700849 /*
850 * for now UC MINUS. see comments in ioremap_nocache()
851 */
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -0700852 if (reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
Suresh Siddhade33c442008-04-25 17:07:22 -0700853 _PAGE_CACHE_UC_MINUS, NULL))
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700854 return -EINVAL;
855
856 return _set_memory_uc(addr, numpages);
857}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100858EXPORT_SYMBOL(set_memory_uc);
859
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700860int _set_memory_wc(unsigned long addr, int numpages)
861{
862 return change_page_attr_set(addr, numpages,
863 __pgprot(_PAGE_CACHE_WC));
864}
865
866int set_memory_wc(unsigned long addr, int numpages)
867{
Andreas Herrmann499f8f82008-06-10 16:06:21 +0200868 if (!pat_enabled)
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700869 return set_memory_uc(addr, numpages);
870
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -0700871 if (reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700872 _PAGE_CACHE_WC, NULL))
873 return -EINVAL;
874
875 return _set_memory_wc(addr, numpages);
876}
877EXPORT_SYMBOL(set_memory_wc);
878
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700879int _set_memory_wb(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100880{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100881 return change_page_attr_clear(addr, numpages,
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700882 __pgprot(_PAGE_CACHE_MASK));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100883}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700884
885int set_memory_wb(unsigned long addr, int numpages)
886{
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -0700887 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700888
889 return _set_memory_wb(addr, numpages);
890}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100891EXPORT_SYMBOL(set_memory_wb);
892
893int set_memory_x(unsigned long addr, int numpages)
894{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100895 return change_page_attr_clear(addr, numpages, __pgprot(_PAGE_NX));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100896}
897EXPORT_SYMBOL(set_memory_x);
898
899int set_memory_nx(unsigned long addr, int numpages)
900{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100901 return change_page_attr_set(addr, numpages, __pgprot(_PAGE_NX));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100902}
903EXPORT_SYMBOL(set_memory_nx);
904
905int set_memory_ro(unsigned long addr, int numpages)
906{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100907 return change_page_attr_clear(addr, numpages, __pgprot(_PAGE_RW));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100908}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100909
910int set_memory_rw(unsigned long addr, int numpages)
911{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100912 return change_page_attr_set(addr, numpages, __pgprot(_PAGE_RW));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100913}
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100914
915int set_memory_np(unsigned long addr, int numpages)
916{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100917 return change_page_attr_clear(addr, numpages, __pgprot(_PAGE_PRESENT));
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100918}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100919
Andi Kleenc9caa022008-03-12 03:53:29 +0100920int set_memory_4k(unsigned long addr, int numpages)
921{
922 return change_page_attr_set_clr(addr, numpages, __pgprot(0),
923 __pgprot(0), 1);
924}
925
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100926int set_pages_uc(struct page *page, int numpages)
927{
928 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100929
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100930 return set_memory_uc(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100931}
932EXPORT_SYMBOL(set_pages_uc);
933
934int set_pages_wb(struct page *page, int numpages)
935{
936 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100937
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100938 return set_memory_wb(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100939}
940EXPORT_SYMBOL(set_pages_wb);
941
942int set_pages_x(struct page *page, int numpages)
943{
944 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100945
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100946 return set_memory_x(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100947}
948EXPORT_SYMBOL(set_pages_x);
949
950int set_pages_nx(struct page *page, int numpages)
951{
952 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100953
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100954 return set_memory_nx(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100955}
956EXPORT_SYMBOL(set_pages_nx);
957
958int set_pages_ro(struct page *page, int numpages)
959{
960 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100961
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100962 return set_memory_ro(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100963}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100964
965int set_pages_rw(struct page *page, int numpages)
966{
967 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100968
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100969 return set_memory_rw(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100970}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972#ifdef CONFIG_DEBUG_PAGEALLOC
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100973
974static int __set_pages_p(struct page *page, int numpages)
975{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100976 struct cpa_data cpa = { .vaddr = (unsigned long) page_address(page),
977 .numpages = numpages,
978 .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW),
979 .mask_clr = __pgprot(0)};
Thomas Gleixner72932c72008-01-30 13:34:08 +0100980
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100981 return __change_page_attr_set_clr(&cpa, 1);
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100982}
983
984static int __set_pages_np(struct page *page, int numpages)
985{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100986 struct cpa_data cpa = { .vaddr = (unsigned long) page_address(page),
987 .numpages = numpages,
988 .mask_set = __pgprot(0),
989 .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW)};
Thomas Gleixner72932c72008-01-30 13:34:08 +0100990
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100991 return __change_page_attr_set_clr(&cpa, 1);
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100992}
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994void kernel_map_pages(struct page *page, int numpages, int enable)
995{
996 if (PageHighMem(page))
997 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100998 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -0700999 debug_check_no_locks_freed(page_address(page),
1000 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001001 }
Ingo Molnarde5097c2006-01-09 15:59:21 -08001002
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001003 /*
Ingo Molnar12d6f212008-01-30 13:33:58 +01001004 * If page allocator is not up yet then do not call c_p_a():
1005 */
1006 if (!debug_pagealloc_enabled)
1007 return;
1008
1009 /*
Ingo Molnarf8d84062008-02-13 14:09:53 +01001010 * The return value is ignored as the calls cannot fail.
1011 * Large pages are kept enabled at boot time, and are
1012 * split up quickly with DEBUG_PAGEALLOC. If a splitup
1013 * fails here (due to temporary memory shortage) no damage
1014 * is done because we just keep the largepage intact up
1015 * to the next attempt when it will likely be split up:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 */
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001017 if (enable)
1018 __set_pages_p(page, numpages);
1019 else
1020 __set_pages_np(page, numpages);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001021
1022 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +01001023 * We should perform an IPI and flush all tlbs,
1024 * but that can deadlock->flush only current cpu:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 */
1026 __flush_tlb_all();
Thomas Gleixner76ebd052008-02-09 23:24:09 +01001027
1028 /*
1029 * Try to refill the page pool here. We can do this only after
1030 * the tlb flush.
1031 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +01001032 cpa_fill_pool(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033}
Rafael J. Wysocki8a235ef2008-02-20 01:47:44 +01001034
Thomas Gleixneree7ae7a2008-04-17 17:40:45 +02001035#ifdef CONFIG_DEBUG_FS
1036static int dpa_show(struct seq_file *m, void *v)
1037{
1038 seq_puts(m, "DEBUG_PAGEALLOC\n");
1039 seq_printf(m, "pool_size : %lu\n", pool_size);
1040 seq_printf(m, "pool_pages : %lu\n", pool_pages);
1041 seq_printf(m, "pool_low : %lu\n", pool_low);
1042 seq_printf(m, "pool_used : %lu\n", pool_used);
1043 seq_printf(m, "pool_failed : %lu\n", pool_failed);
1044
1045 return 0;
1046}
1047
1048static int dpa_open(struct inode *inode, struct file *filp)
1049{
1050 return single_open(filp, dpa_show, NULL);
1051}
1052
1053static const struct file_operations dpa_fops = {
1054 .open = dpa_open,
1055 .read = seq_read,
1056 .llseek = seq_lseek,
1057 .release = single_release,
1058};
1059
Ingo Molnara4928cf2008-04-23 13:20:56 +02001060static int __init debug_pagealloc_proc_init(void)
Thomas Gleixneree7ae7a2008-04-17 17:40:45 +02001061{
1062 struct dentry *de;
1063
1064 de = debugfs_create_file("debug_pagealloc", 0600, NULL, NULL,
1065 &dpa_fops);
1066 if (!de)
1067 return -ENOMEM;
1068
1069 return 0;
1070}
1071__initcall(debug_pagealloc_proc_init);
1072#endif
1073
Rafael J. Wysocki8a235ef2008-02-20 01:47:44 +01001074#ifdef CONFIG_HIBERNATION
1075
1076bool kernel_page_present(struct page *page)
1077{
1078 unsigned int level;
1079 pte_t *pte;
1080
1081 if (PageHighMem(page))
1082 return false;
1083
1084 pte = lookup_address((unsigned long)page_address(page), &level);
1085 return (pte_val(*pte) & _PAGE_PRESENT);
1086}
1087
1088#endif /* CONFIG_HIBERNATION */
1089
1090#endif /* CONFIG_DEBUG_PAGEALLOC */
Arjan van de Vend1028a12008-01-30 13:34:07 +01001091
1092/*
1093 * The testcases use internal knowledge of the implementation that shouldn't
1094 * be exposed to the rest of the kernel. Include these directly here.
1095 */
1096#ifdef CONFIG_CPA_DEBUG
1097#include "pageattr-test.c"
1098#endif