blob: 162812b05d2826ff36c0ca4ad151e121b72fa7db [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 {
Shaohua Lid75586a2008-08-21 10:46:06 +080028 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;
Shaohua Lid75586a2008-08-21 10:46:06 +080032 int flags;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010033 unsigned long pfn;
Andi Kleenc9caa022008-03-12 03:53:29 +010034 unsigned force_split : 1;
Shaohua Lid75586a2008-08-21 10:46:06 +080035 int curpage;
Thomas Gleixner72e458d2008-02-04 16:48:07 +010036};
37
Shaohua Lid75586a2008-08-21 10:46:06 +080038#define CPA_FLUSHTLB 1
39#define CPA_ARRAY 2
40
Thomas Gleixner65280e62008-05-05 16:35:21 +020041#ifdef CONFIG_PROC_FS
Andi Kleence0c0e52008-05-02 11:46:49 +020042static unsigned long direct_pages_count[PG_LEVEL_NUM];
43
Thomas Gleixner65280e62008-05-05 16:35:21 +020044void update_page_count(int level, unsigned long pages)
Andi Kleence0c0e52008-05-02 11:46:49 +020045{
Andi Kleence0c0e52008-05-02 11:46:49 +020046 unsigned long flags;
Thomas Gleixner65280e62008-05-05 16:35:21 +020047
Andi Kleence0c0e52008-05-02 11:46:49 +020048 /* Protect against CPA */
49 spin_lock_irqsave(&pgd_lock, flags);
50 direct_pages_count[level] += pages;
51 spin_unlock_irqrestore(&pgd_lock, flags);
Andi Kleence0c0e52008-05-02 11:46:49 +020052}
53
Thomas Gleixner65280e62008-05-05 16:35:21 +020054static void split_page_count(int level)
55{
56 direct_pages_count[level]--;
57 direct_pages_count[level - 1] += PTRS_PER_PTE;
58}
59
60int arch_report_meminfo(char *page)
61{
Hugh Dickinsa06de632008-08-15 13:58:32 +010062 int n = sprintf(page, "DirectMap4k: %8lu kB\n",
63 direct_pages_count[PG_LEVEL_4K] << 2);
64#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
65 n += sprintf(page + n, "DirectMap2M: %8lu kB\n",
66 direct_pages_count[PG_LEVEL_2M] << 11);
67#else
68 n += sprintf(page + n, "DirectMap4M: %8lu kB\n",
69 direct_pages_count[PG_LEVEL_2M] << 12);
70#endif
Thomas Gleixner65280e62008-05-05 16:35:21 +020071#ifdef CONFIG_X86_64
Hugh Dickinsa06de632008-08-15 13:58:32 +010072 if (direct_gbpages)
73 n += sprintf(page + n, "DirectMap1G: %8lu kB\n",
74 direct_pages_count[PG_LEVEL_1G] << 20);
Thomas Gleixner65280e62008-05-05 16:35:21 +020075#endif
76 return n;
77}
78#else
79static inline void split_page_count(int level) { }
80#endif
81
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010082#ifdef CONFIG_X86_64
83
84static inline unsigned long highmap_start_pfn(void)
85{
86 return __pa(_text) >> PAGE_SHIFT;
87}
88
89static inline unsigned long highmap_end_pfn(void)
90{
91 return __pa(round_up((unsigned long)_end, PMD_SIZE)) >> PAGE_SHIFT;
92}
93
94#endif
95
Ingo Molnar92cb54a2008-02-13 14:37:52 +010096#ifdef CONFIG_DEBUG_PAGEALLOC
97# define debug_pagealloc 1
98#else
99# define debug_pagealloc 0
100#endif
101
Arjan van de Vened724be2008-01-30 13:34:04 +0100102static inline int
103within(unsigned long addr, unsigned long start, unsigned long end)
Ingo Molnar687c4822008-01-30 13:34:04 +0100104{
Arjan van de Vened724be2008-01-30 13:34:04 +0100105 return addr >= start && addr < end;
106}
107
108/*
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100109 * Flushing functions
110 */
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100111
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100112/**
113 * clflush_cache_range - flush a cache range with clflush
114 * @addr: virtual start address
115 * @size: number of bytes to flush
116 *
117 * clflush is an unordered instruction which needs fencing with mfence
118 * to avoid ordering issues.
119 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100120void clflush_cache_range(void *vaddr, unsigned int size)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100121{
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100122 void *vend = vaddr + size - 1;
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100123
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100124 mb();
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100125
126 for (; vaddr < vend; vaddr += boot_cpu_data.x86_clflush_size)
127 clflush(vaddr);
128 /*
129 * Flush any possible final partial cacheline:
130 */
131 clflush(vend);
132
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100133 mb();
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100134}
135
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100136static void __cpa_flush_all(void *arg)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100137{
Andi Kleen6bb83832008-02-04 16:48:06 +0100138 unsigned long cache = (unsigned long)arg;
139
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100140 /*
141 * Flush all to work around Errata in early athlons regarding
142 * large page flushing.
143 */
144 __flush_tlb_all();
145
Andi Kleen6bb83832008-02-04 16:48:06 +0100146 if (cache && boot_cpu_data.x86_model >= 4)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100147 wbinvd();
148}
149
Andi Kleen6bb83832008-02-04 16:48:06 +0100150static void cpa_flush_all(unsigned long cache)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100151{
152 BUG_ON(irqs_disabled());
153
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200154 on_each_cpu(__cpa_flush_all, (void *) cache, 1);
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100155}
156
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100157static void __cpa_flush_range(void *arg)
158{
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100159 /*
160 * We could optimize that further and do individual per page
161 * tlb invalidates for a low number of pages. Caveat: we must
162 * flush the high aliases on 64bit as well.
163 */
164 __flush_tlb_all();
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100165}
166
Andi Kleen6bb83832008-02-04 16:48:06 +0100167static void cpa_flush_range(unsigned long start, int numpages, int cache)
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100168{
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100169 unsigned int i, level;
170 unsigned long addr;
171
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100172 BUG_ON(irqs_disabled());
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100173 WARN_ON(PAGE_ALIGN(start) != start);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100174
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200175 on_each_cpu(__cpa_flush_range, NULL, 1);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100176
Andi Kleen6bb83832008-02-04 16:48:06 +0100177 if (!cache)
178 return;
179
Thomas Gleixner3b233e52008-01-30 13:34:08 +0100180 /*
181 * We only need to flush on one CPU,
182 * clflush is a MESI-coherent instruction that
183 * will cause all other CPUs to flush the same
184 * cachelines:
185 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100186 for (i = 0, addr = start; i < numpages; i++, addr += PAGE_SIZE) {
187 pte_t *pte = lookup_address(addr, &level);
188
189 /*
190 * Only flush present addresses:
191 */
Thomas Gleixner7bfb72e2008-02-04 16:48:08 +0100192 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100193 clflush_cache_range((void *) addr, PAGE_SIZE);
194 }
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100195}
196
Shaohua Lid75586a2008-08-21 10:46:06 +0800197static void cpa_flush_array(unsigned long *start, int numpages, int cache)
198{
199 unsigned int i, level;
200 unsigned long *addr;
201
202 BUG_ON(irqs_disabled());
203
204 on_each_cpu(__cpa_flush_range, NULL, 1);
205
206 if (!cache)
207 return;
208
209 /* 4M threshold */
210 if (numpages >= 1024) {
211 if (boot_cpu_data.x86_model >= 4)
212 wbinvd();
213 return;
214 }
215 /*
216 * We only need to flush on one CPU,
217 * clflush is a MESI-coherent instruction that
218 * will cause all other CPUs to flush the same
219 * cachelines:
220 */
221 for (i = 0, addr = start; i < numpages; i++, addr++) {
222 pte_t *pte = lookup_address(*addr, &level);
223
224 /*
225 * Only flush present addresses:
226 */
227 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
228 clflush_cache_range((void *) *addr, PAGE_SIZE);
229 }
230}
231
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100232/*
Arjan van de Vened724be2008-01-30 13:34:04 +0100233 * Certain areas of memory on x86 require very specific protection flags,
234 * for example the BIOS area or kernel text. Callers don't always get this
235 * right (again, ioremap() on BIOS memory is not uncommon) so this function
236 * checks and fixes these known static required protection bits.
237 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100238static inline pgprot_t static_protections(pgprot_t prot, unsigned long address,
239 unsigned long pfn)
Arjan van de Vened724be2008-01-30 13:34:04 +0100240{
241 pgprot_t forbidden = __pgprot(0);
242
Ingo Molnar687c4822008-01-30 13:34:04 +0100243 /*
Arjan van de Vened724be2008-01-30 13:34:04 +0100244 * The BIOS area between 640k and 1Mb needs to be executable for
245 * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support.
Ingo Molnar687c4822008-01-30 13:34:04 +0100246 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100247 if (within(pfn, BIOS_BEGIN >> PAGE_SHIFT, BIOS_END >> PAGE_SHIFT))
Arjan van de Vened724be2008-01-30 13:34:04 +0100248 pgprot_val(forbidden) |= _PAGE_NX;
249
250 /*
251 * The kernel text needs to be executable for obvious reasons
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100252 * Does not cover __inittext since that is gone later on. On
253 * 64bit we do not enforce !NX on the low mapping
Arjan van de Vened724be2008-01-30 13:34:04 +0100254 */
255 if (within(address, (unsigned long)_text, (unsigned long)_etext))
256 pgprot_val(forbidden) |= _PAGE_NX;
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100257
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100258 /*
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100259 * The .rodata section needs to be read-only. Using the pfn
260 * catches all aliases.
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100261 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100262 if (within(pfn, __pa((unsigned long)__start_rodata) >> PAGE_SHIFT,
263 __pa((unsigned long)__end_rodata) >> PAGE_SHIFT))
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100264 pgprot_val(forbidden) |= _PAGE_RW;
Arjan van de Vened724be2008-01-30 13:34:04 +0100265
266 prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden));
Ingo Molnar687c4822008-01-30 13:34:04 +0100267
268 return prot;
269}
270
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100271/*
272 * Lookup the page table entry for a virtual address. Return a pointer
273 * to the entry and the level of the mapping.
274 *
275 * Note: We return pud and pmd either when the entry is marked large
276 * or when the present bit is not set. Otherwise we would return a
277 * pointer to a nonexisting mapping.
278 */
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100279pte_t *lookup_address(unsigned long address, unsigned int *level)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100280{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 pgd_t *pgd = pgd_offset_k(address);
282 pud_t *pud;
283 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100284
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100285 *level = PG_LEVEL_NONE;
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 if (pgd_none(*pgd))
288 return NULL;
Ingo Molnar9df84992008-02-04 16:48:09 +0100289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 pud = pud_offset(pgd, address);
291 if (pud_none(*pud))
292 return NULL;
Andi Kleenc2f71ee2008-02-04 16:48:09 +0100293
294 *level = PG_LEVEL_1G;
295 if (pud_large(*pud) || !pud_present(*pud))
296 return (pte_t *)pud;
297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 pmd = pmd_offset(pud, address);
299 if (pmd_none(*pmd))
300 return NULL;
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100301
302 *level = PG_LEVEL_2M;
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100303 if (pmd_large(*pmd) || !pmd_present(*pmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return (pte_t *)pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100306 *level = PG_LEVEL_4K;
Ingo Molnar9df84992008-02-04 16:48:09 +0100307
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100308 return pte_offset_kernel(pmd, address);
309}
Pekka Paalanen75bb8832008-05-12 21:20:56 +0200310EXPORT_SYMBOL_GPL(lookup_address);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100311
Ingo Molnar9df84992008-02-04 16:48:09 +0100312/*
313 * Set the new pmd in all the pgds we know about:
314 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100315static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100316{
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100317 /* change init_mm */
318 set_pte_atomic(kpte, pte);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100319#ifdef CONFIG_X86_32
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100320 if (!SHARED_KERNEL_PMD) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100321 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Jeremy Fitzhardingee3ed9102008-01-30 13:34:11 +0100323 list_for_each_entry(page, &pgd_list, lru) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100324 pgd_t *pgd;
325 pud_t *pud;
326 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100327
Ingo Molnar44af6c42008-01-30 13:34:03 +0100328 pgd = (pgd_t *)page_address(page) + pgd_index(address);
329 pud = pud_offset(pgd, address);
330 pmd = pmd_offset(pud, address);
331 set_pte_atomic((pte_t *)pmd, pte);
332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100334#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Ingo Molnar9df84992008-02-04 16:48:09 +0100337static int
338try_preserve_large_page(pte_t *kpte, unsigned long address,
339 struct cpa_data *cpa)
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100340{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100341 unsigned long nextpage_addr, numpages, pmask, psize, flags, addr, pfn;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100342 pte_t new_pte, old_pte, *tmp;
343 pgprot_t old_prot, new_prot;
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100344 int i, do_split = 1;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100345 unsigned int level;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100346
Andi Kleenc9caa022008-03-12 03:53:29 +0100347 if (cpa->force_split)
348 return 1;
349
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100350 spin_lock_irqsave(&pgd_lock, flags);
351 /*
352 * Check for races, another CPU might have split this page
353 * up already:
354 */
355 tmp = lookup_address(address, &level);
356 if (tmp != kpte)
357 goto out_unlock;
358
359 switch (level) {
360 case PG_LEVEL_2M:
Andi Kleen31422c52008-02-04 16:48:08 +0100361 psize = PMD_PAGE_SIZE;
362 pmask = PMD_PAGE_MASK;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100363 break;
Andi Kleenf07333f2008-02-04 16:48:09 +0100364#ifdef CONFIG_X86_64
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100365 case PG_LEVEL_1G:
Andi Kleen5d3c8b22008-02-13 16:20:35 +0100366 psize = PUD_PAGE_SIZE;
367 pmask = PUD_PAGE_MASK;
Andi Kleenf07333f2008-02-04 16:48:09 +0100368 break;
369#endif
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100370 default:
Ingo Molnarbeaff632008-02-04 16:48:09 +0100371 do_split = -EINVAL;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100372 goto out_unlock;
373 }
374
375 /*
376 * Calculate the number of pages, which fit into this large
377 * page starting at address:
378 */
379 nextpage_addr = (address + psize) & pmask;
380 numpages = (nextpage_addr - address) >> PAGE_SHIFT;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100381 if (numpages < cpa->numpages)
382 cpa->numpages = numpages;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100383
384 /*
385 * We are safe now. Check whether the new pgprot is the same:
386 */
387 old_pte = *kpte;
388 old_prot = new_prot = pte_pgprot(old_pte);
389
390 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
391 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100392
393 /*
394 * old_pte points to the large page base address. So we need
395 * to add the offset of the virtual address:
396 */
397 pfn = pte_pfn(old_pte) + ((address & (psize - 1)) >> PAGE_SHIFT);
398 cpa->pfn = pfn;
399
400 new_prot = static_protections(new_prot, address, pfn);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100401
402 /*
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100403 * We need to check the full range, whether
404 * static_protection() requires a different pgprot for one of
405 * the pages in the range we try to preserve:
406 */
407 addr = address + PAGE_SIZE;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100408 pfn++;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100409 for (i = 1; i < cpa->numpages; i++, addr += PAGE_SIZE, pfn++) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100410 pgprot_t chk_prot = static_protections(new_prot, addr, pfn);
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100411
412 if (pgprot_val(chk_prot) != pgprot_val(new_prot))
413 goto out_unlock;
414 }
415
416 /*
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100417 * If there are no changes, return. maxpages has been updated
418 * above:
419 */
420 if (pgprot_val(new_prot) == pgprot_val(old_prot)) {
Ingo Molnarbeaff632008-02-04 16:48:09 +0100421 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100422 goto out_unlock;
423 }
424
425 /*
426 * We need to change the attributes. Check, whether we can
427 * change the large page in one go. We request a split, when
428 * the address is not aligned and the number of pages is
429 * smaller than the number of pages in the large page. Note
430 * that we limited the number of possible pages already to
431 * the number of pages in the large page.
432 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100433 if (address == (nextpage_addr - psize) && cpa->numpages == numpages) {
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100434 /*
435 * The address is aligned and the number of pages
436 * covers the full page.
437 */
438 new_pte = pfn_pte(pte_pfn(old_pte), canon_pgprot(new_prot));
439 __set_pmd_pte(kpte, address, new_pte);
Shaohua Lid75586a2008-08-21 10:46:06 +0800440 cpa->flags |= CPA_FLUSHTLB;
Ingo Molnarbeaff632008-02-04 16:48:09 +0100441 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100442 }
443
444out_unlock:
445 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnar9df84992008-02-04 16:48:09 +0100446
Ingo Molnarbeaff632008-02-04 16:48:09 +0100447 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100448}
449
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100450static LIST_HEAD(page_pool);
451static unsigned long pool_size, pool_pages, pool_low;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100452static unsigned long pool_used, pool_failed;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100453
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100454static void cpa_fill_pool(struct page **ret)
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100455{
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100456 gfp_t gfp = GFP_KERNEL;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100457 unsigned long flags;
458 struct page *p;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100459
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100460 /*
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100461 * Avoid recursion (on debug-pagealloc) and also signal
462 * our priority to get to these pagetables:
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100463 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100464 if (current->flags & PF_MEMALLOC)
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100465 return;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100466 current->flags |= PF_MEMALLOC;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100467
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100468 /*
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100469 * Allocate atomically from atomic contexts:
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100470 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100471 if (in_atomic() || irqs_disabled() || debug_pagealloc)
472 gfp = GFP_ATOMIC | __GFP_NORETRY | __GFP_NOWARN;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100473
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100474 while (pool_pages < pool_size || (ret && !*ret)) {
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100475 p = alloc_pages(gfp, 0);
476 if (!p) {
477 pool_failed++;
478 break;
479 }
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100480 /*
481 * If the call site needs a page right now, provide it:
482 */
483 if (ret && !*ret) {
484 *ret = p;
485 continue;
486 }
487 spin_lock_irqsave(&pgd_lock, flags);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100488 list_add(&p->lru, &page_pool);
489 pool_pages++;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100490 spin_unlock_irqrestore(&pgd_lock, flags);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100491 }
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100492
493 current->flags &= ~PF_MEMALLOC;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100494}
495
496#define SHIFT_MB (20 - PAGE_SHIFT)
497#define ROUND_MB_GB ((1 << 10) - 1)
498#define SHIFT_MB_GB 10
499#define POOL_PAGES_PER_GB 16
500
501void __init cpa_init(void)
502{
503 struct sysinfo si;
504 unsigned long gb;
505
506 si_meminfo(&si);
507 /*
508 * Calculate the number of pool pages:
509 *
510 * Convert totalram (nr of pages) to MiB and round to the next
511 * GiB. Shift MiB to Gib and multiply the result by
512 * POOL_PAGES_PER_GB:
513 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100514 if (debug_pagealloc) {
515 gb = ((si.totalram >> SHIFT_MB) + ROUND_MB_GB) >> SHIFT_MB_GB;
516 pool_size = POOL_PAGES_PER_GB * gb;
517 } else {
518 pool_size = 1;
519 }
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100520 pool_low = pool_size;
521
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100522 cpa_fill_pool(NULL);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100523 printk(KERN_DEBUG
524 "CPA: page pool initialized %lu of %lu pages preallocated\n",
525 pool_pages, pool_size);
526}
527
Ingo Molnar7afe15b2008-01-30 13:33:57 +0100528static int split_large_page(pte_t *kpte, unsigned long address)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100529{
Thomas Gleixner7b610ee2008-02-04 16:48:10 +0100530 unsigned long flags, pfn, pfninc = 1;
Ingo Molnar86f03982008-01-30 13:34:09 +0100531 unsigned int i, level;
Ingo Molnar9df84992008-02-04 16:48:09 +0100532 pte_t *pbase, *tmp;
533 pgprot_t ref_prot;
534 struct page *base;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100535
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100536 /*
537 * Get a page from the pool. The pool list is protected by the
538 * pgd_lock, which we have to take anyway for the split
539 * operation:
540 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100541 spin_lock_irqsave(&pgd_lock, flags);
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100542 if (list_empty(&page_pool)) {
543 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100544 base = NULL;
545 cpa_fill_pool(&base);
546 if (!base)
547 return -ENOMEM;
548 spin_lock_irqsave(&pgd_lock, flags);
549 } else {
550 base = list_first_entry(&page_pool, struct page, lru);
551 list_del(&base->lru);
552 pool_pages--;
553
554 if (pool_pages < pool_low)
555 pool_low = pool_pages;
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100556 }
557
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100558 /*
559 * Check for races, another CPU might have split this page
560 * up for us already:
561 */
562 tmp = lookup_address(address, &level);
Ingo Molnar6ce9fc12008-02-04 16:48:08 +0100563 if (tmp != kpte)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100564 goto out_unlock;
565
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100566 pbase = (pte_t *)page_address(base);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700567 paravirt_alloc_pte(&init_mm, page_to_pfn(base));
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100568 ref_prot = pte_pgprot(pte_clrhuge(*kpte));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100569
Andi Kleenf07333f2008-02-04 16:48:09 +0100570#ifdef CONFIG_X86_64
571 if (level == PG_LEVEL_1G) {
572 pfninc = PMD_PAGE_SIZE >> PAGE_SHIFT;
573 pgprot_val(ref_prot) |= _PAGE_PSE;
Andi Kleenf07333f2008-02-04 16:48:09 +0100574 }
575#endif
576
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100577 /*
578 * Get the target pfn from the original entry:
579 */
580 pfn = pte_pfn(*kpte);
Andi Kleenf07333f2008-02-04 16:48:09 +0100581 for (i = 0; i < PTRS_PER_PTE; i++, pfn += pfninc)
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100582 set_pte(&pbase[i], pfn_pte(pfn, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100583
Andi Kleence0c0e52008-05-02 11:46:49 +0200584 if (address >= (unsigned long)__va(0) &&
Yinghai Luf361a452008-07-10 20:38:26 -0700585 address < (unsigned long)__va(max_low_pfn_mapped << PAGE_SHIFT))
586 split_page_count(level);
587
588#ifdef CONFIG_X86_64
589 if (address >= (unsigned long)__va(1UL<<32) &&
Thomas Gleixner65280e62008-05-05 16:35:21 +0200590 address < (unsigned long)__va(max_pfn_mapped << PAGE_SHIFT))
591 split_page_count(level);
Yinghai Luf361a452008-07-10 20:38:26 -0700592#endif
Andi Kleence0c0e52008-05-02 11:46:49 +0200593
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100594 /*
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100595 * Install the new, split up pagetable. Important details here:
Huang, Ying4c881ca2008-01-30 13:34:04 +0100596 *
597 * On Intel the NX bit of all levels must be cleared to make a
598 * page executable. See section 4.13.2 of Intel 64 and IA-32
599 * Architectures Software Developer's Manual).
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100600 *
601 * Mark the entry present. The current mapping might be
602 * set to not present, which we preserved above.
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100603 */
Huang, Ying4c881ca2008-01-30 13:34:04 +0100604 ref_prot = pte_pgprot(pte_mkexec(pte_clrhuge(*kpte)));
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100605 pgprot_val(ref_prot) |= _PAGE_PRESENT;
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100606 __set_pmd_pte(kpte, address, mk_pte(base, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100607 base = NULL;
608
609out_unlock:
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100610 /*
611 * If we dropped out via the lookup_address check under
612 * pgd_lock then stick the page back into the pool:
613 */
614 if (base) {
615 list_add(&base->lru, &page_pool);
616 pool_pages++;
617 } else
618 pool_used++;
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100619 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100620
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100621 return 0;
622}
623
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100624static int __change_page_attr(struct cpa_data *cpa, int primary)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100625{
Shaohua Lid75586a2008-08-21 10:46:06 +0800626 unsigned long address;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100627 int do_split, err;
628 unsigned int level;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100629 pte_t *kpte, old_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Shaohua Lid75586a2008-08-21 10:46:06 +0800631 if (cpa->flags & CPA_ARRAY)
632 address = cpa->vaddr[cpa->curpage];
633 else
634 address = *cpa->vaddr;
635
Ingo Molnar97f99fe2008-01-30 13:33:55 +0100636repeat:
Ingo Molnarf0646e42008-01-30 13:33:43 +0100637 kpte = lookup_address(address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 if (!kpte)
Ingo Molnard1a4be62008-04-18 21:32:22 +0200639 return 0;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100640
641 old_pte = *kpte;
642 if (!pte_val(old_pte)) {
643 if (!primary)
644 return 0;
Arjan van de Ven875e40b2008-07-30 12:26:26 -0700645 WARN(1, KERN_WARNING "CPA: called for zero pte. "
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100646 "vaddr = %lx cpa->vaddr = %lx\n", address,
Shaohua Lid75586a2008-08-21 10:46:06 +0800647 *cpa->vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 return -EINVAL;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100649 }
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100650
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100651 if (level == PG_LEVEL_4K) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100652 pte_t new_pte;
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100653 pgprot_t new_prot = pte_pgprot(old_pte);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100654 unsigned long pfn = pte_pfn(old_pte);
Thomas Gleixnera72a08a2008-01-30 13:34:07 +0100655
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100656 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
657 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Ingo Molnar86f03982008-01-30 13:34:09 +0100658
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100659 new_prot = static_protections(new_prot, address, pfn);
Ingo Molnar86f03982008-01-30 13:34:09 +0100660
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100661 /*
662 * We need to keep the pfn from the existing PTE,
663 * after all we're only going to change it's attributes
664 * not the memory it points to
665 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100666 new_pte = pfn_pte(pfn, canon_pgprot(new_prot));
667 cpa->pfn = pfn;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100668 /*
669 * Do we really change anything ?
670 */
671 if (pte_val(old_pte) != pte_val(new_pte)) {
672 set_pte_atomic(kpte, new_pte);
Shaohua Lid75586a2008-08-21 10:46:06 +0800673 cpa->flags |= CPA_FLUSHTLB;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100674 }
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100675 cpa->numpages = 1;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100676 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100678
679 /*
680 * Check, whether we can keep the large page intact
681 * and just change the pte:
682 */
Ingo Molnarbeaff632008-02-04 16:48:09 +0100683 do_split = try_preserve_large_page(kpte, address, cpa);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100684 /*
685 * When the range fits into the existing large page,
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100686 * return. cp->numpages and cpa->tlbflush have been updated in
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100687 * try_large_page:
688 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100689 if (do_split <= 0)
690 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100691
692 /*
693 * We have to split the large page:
694 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100695 err = split_large_page(kpte, address);
696 if (!err) {
Shaohua Lid75586a2008-08-21 10:46:06 +0800697 cpa->flags |= CPA_FLUSHTLB;
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100698 goto repeat;
699 }
Ingo Molnarbeaff632008-02-04 16:48:09 +0100700
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100701 return err;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100702}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100704static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias);
705
706static int cpa_process_alias(struct cpa_data *cpa)
Ingo Molnar44af6c42008-01-30 13:34:03 +0100707{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100708 struct cpa_data alias_cpa;
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100709 int ret = 0;
Shaohua Lid75586a2008-08-21 10:46:06 +0800710 unsigned long temp_cpa_vaddr, vaddr;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100711
Yinghai Lu965194c2008-07-12 14:31:28 -0700712 if (cpa->pfn >= max_pfn_mapped)
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100713 return 0;
714
Yinghai Luf361a452008-07-10 20:38:26 -0700715#ifdef CONFIG_X86_64
Yinghai Lu965194c2008-07-12 14:31:28 -0700716 if (cpa->pfn >= max_low_pfn_mapped && cpa->pfn < (1UL<<(32-PAGE_SHIFT)))
Yinghai Luf361a452008-07-10 20:38:26 -0700717 return 0;
718#endif
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100719 /*
720 * No need to redo, when the primary call touched the direct
721 * mapping already:
722 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800723 if (cpa->flags & CPA_ARRAY)
724 vaddr = cpa->vaddr[cpa->curpage];
725 else
726 vaddr = *cpa->vaddr;
727
728 if (!(within(vaddr, PAGE_OFFSET,
Yinghai Luf361a452008-07-10 20:38:26 -0700729 PAGE_OFFSET + (max_low_pfn_mapped << PAGE_SHIFT))
730#ifdef CONFIG_X86_64
Shaohua Lid75586a2008-08-21 10:46:06 +0800731 || within(vaddr, PAGE_OFFSET + (1UL<<32),
Yinghai Luf361a452008-07-10 20:38:26 -0700732 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT))
733#endif
734 )) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100735
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100736 alias_cpa = *cpa;
Shaohua Lid75586a2008-08-21 10:46:06 +0800737 temp_cpa_vaddr = (unsigned long) __va(cpa->pfn << PAGE_SHIFT);
738 alias_cpa.vaddr = &temp_cpa_vaddr;
739 alias_cpa.flags &= ~CPA_ARRAY;
740
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100741
742 ret = __change_page_attr_set_clr(&alias_cpa, 0);
743 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100744
Arjan van de Ven488fd992008-01-30 13:34:07 +0100745#ifdef CONFIG_X86_64
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100746 if (ret)
747 return ret;
Thomas Gleixner08797502008-01-30 13:34:09 +0100748 /*
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100749 * No need to redo, when the primary call touched the high
750 * mapping already:
751 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800752 if (within(vaddr, (unsigned long) _text, (unsigned long) _end))
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100753 return 0;
754
755 /*
Thomas Gleixner08797502008-01-30 13:34:09 +0100756 * If the physical address is inside the kernel map, we need
757 * to touch the high mapped kernel as well:
758 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100759 if (!within(cpa->pfn, highmap_start_pfn(), highmap_end_pfn()))
760 return 0;
Thomas Gleixner08797502008-01-30 13:34:09 +0100761
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100762 alias_cpa = *cpa;
Shaohua Lid75586a2008-08-21 10:46:06 +0800763 temp_cpa_vaddr = (cpa->pfn << PAGE_SHIFT) + __START_KERNEL_map - phys_base;
764 alias_cpa.vaddr = &temp_cpa_vaddr;
765 alias_cpa.flags &= ~CPA_ARRAY;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100766
767 /*
768 * The high mapping range is imprecise, so ignore the return value.
769 */
770 __change_page_attr_set_clr(&alias_cpa, 0);
Thomas Gleixner08797502008-01-30 13:34:09 +0100771#endif
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100772 return ret;
Ingo Molnar44af6c42008-01-30 13:34:03 +0100773}
774
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100775static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100776{
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100777 int ret, numpages = cpa->numpages;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100778
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100779 while (numpages) {
780 /*
781 * Store the remaining nr of pages for the large page
782 * preservation check.
783 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100784 cpa->numpages = numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +0800785 /* for array changes, we can't use large page */
786 if (cpa->flags & CPA_ARRAY)
787 cpa->numpages = 1;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100788
789 ret = __change_page_attr(cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100790 if (ret)
791 return ret;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100792
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100793 if (checkalias) {
794 ret = cpa_process_alias(cpa);
795 if (ret)
796 return ret;
797 }
798
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100799 /*
800 * Adjust the number of pages with the result of the
801 * CPA operation. Either a large page has been
802 * preserved or a single page update happened.
803 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100804 BUG_ON(cpa->numpages > numpages);
805 numpages -= cpa->numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +0800806 if (cpa->flags & CPA_ARRAY)
807 cpa->curpage++;
808 else
809 *cpa->vaddr += cpa->numpages * PAGE_SIZE;
810
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100811 }
Thomas Gleixnerff314522008-01-30 13:34:08 +0100812 return 0;
813}
814
Andi Kleen6bb83832008-02-04 16:48:06 +0100815static inline int cache_attr(pgprot_t attr)
816{
817 return pgprot_val(attr) &
818 (_PAGE_PAT | _PAGE_PAT_LARGE | _PAGE_PWT | _PAGE_PCD);
819}
820
Shaohua Lid75586a2008-08-21 10:46:06 +0800821static int change_page_attr_set_clr(unsigned long *addr, int numpages,
Andi Kleenc9caa022008-03-12 03:53:29 +0100822 pgprot_t mask_set, pgprot_t mask_clr,
Shaohua Lid75586a2008-08-21 10:46:06 +0800823 int force_split, int array)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100824{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100825 struct cpa_data cpa;
Ingo Molnarcacf8902008-08-21 13:46:33 +0200826 int ret, cache, checkalias;
Thomas Gleixner331e4062008-02-04 16:48:06 +0100827
828 /*
829 * Check, if we are requested to change a not supported
830 * feature:
831 */
832 mask_set = canon_pgprot(mask_set);
833 mask_clr = canon_pgprot(mask_clr);
Andi Kleenc9caa022008-03-12 03:53:29 +0100834 if (!pgprot_val(mask_set) && !pgprot_val(mask_clr) && !force_split)
Thomas Gleixner331e4062008-02-04 16:48:06 +0100835 return 0;
836
Thomas Gleixner69b14152008-02-13 11:04:50 +0100837 /* Ensure we are PAGE_SIZE aligned */
Shaohua Lid75586a2008-08-21 10:46:06 +0800838 if (!array) {
839 if (*addr & ~PAGE_MASK) {
840 *addr &= PAGE_MASK;
841 /*
842 * People should not be passing in unaligned addresses:
843 */
844 WARN_ON_ONCE(1);
845 }
846 } else {
847 int i;
848 for (i = 0; i < numpages; i++) {
849 if (addr[i] & ~PAGE_MASK) {
850 addr[i] &= PAGE_MASK;
851 WARN_ON_ONCE(1);
852 }
853 }
Thomas Gleixner69b14152008-02-13 11:04:50 +0100854 }
855
Nick Piggin5843d9a2008-08-01 03:15:21 +0200856 /* Must avoid aliasing mappings in the highmem code */
857 kmap_flush_unused();
858
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100859 cpa.vaddr = addr;
860 cpa.numpages = numpages;
861 cpa.mask_set = mask_set;
862 cpa.mask_clr = mask_clr;
Shaohua Lid75586a2008-08-21 10:46:06 +0800863 cpa.flags = 0;
864 cpa.curpage = 0;
Andi Kleenc9caa022008-03-12 03:53:29 +0100865 cpa.force_split = force_split;
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100866
Shaohua Lid75586a2008-08-21 10:46:06 +0800867 if (array)
868 cpa.flags |= CPA_ARRAY;
869
Thomas Gleixneraf96e442008-02-15 21:49:46 +0100870 /* No alias checking for _NX bit modifications */
871 checkalias = (pgprot_val(mask_set) | pgprot_val(mask_clr)) != _PAGE_NX;
872
873 ret = __change_page_attr_set_clr(&cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100874
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100875 /*
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100876 * Check whether we really changed something:
877 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800878 if (!(cpa.flags & CPA_FLUSHTLB))
Shaohua Li1ac2f7d2008-08-04 14:51:24 +0800879 goto out;
Ingo Molnarcacf8902008-08-21 13:46:33 +0200880
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100881 /*
Andi Kleen6bb83832008-02-04 16:48:06 +0100882 * No need to flush, when we did not set any of the caching
883 * attributes:
884 */
885 cache = cache_attr(mask_set);
886
887 /*
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100888 * On success we use clflush, when the CPU supports it to
889 * avoid the wbindv. If the CPU does not support it and in the
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100890 * error case we fall back to cpa_flush_all (which uses
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100891 * wbindv):
892 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800893 if (!ret && cpu_has_clflush) {
894 if (cpa.flags & CPA_ARRAY)
895 cpa_flush_array(addr, numpages, cache);
896 else
897 cpa_flush_range(*addr, numpages, cache);
898 } else
Andi Kleen6bb83832008-02-04 16:48:06 +0100899 cpa_flush_all(cache);
Ingo Molnarcacf8902008-08-21 13:46:33 +0200900
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100901out:
Ingo Molnarcacf8902008-08-21 13:46:33 +0200902 cpa_fill_pool(NULL);
903
Thomas Gleixnerff314522008-01-30 13:34:08 +0100904 return ret;
905}
906
Shaohua Lid75586a2008-08-21 10:46:06 +0800907static inline int change_page_attr_set(unsigned long *addr, int numpages,
908 pgprot_t mask, int array)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100909{
Shaohua Lid75586a2008-08-21 10:46:06 +0800910 return change_page_attr_set_clr(addr, numpages, mask, __pgprot(0), 0,
911 array);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100912}
913
Shaohua Lid75586a2008-08-21 10:46:06 +0800914static inline int change_page_attr_clear(unsigned long *addr, int numpages,
915 pgprot_t mask, int array)
Thomas Gleixner72932c72008-01-30 13:34:08 +0100916{
Shaohua Lid75586a2008-08-21 10:46:06 +0800917 return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask, 0,
918 array);
Thomas Gleixner72932c72008-01-30 13:34:08 +0100919}
920
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700921int _set_memory_uc(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100922{
Suresh Siddhade33c442008-04-25 17:07:22 -0700923 /*
924 * for now UC MINUS. see comments in ioremap_nocache()
925 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800926 return change_page_attr_set(&addr, numpages,
927 __pgprot(_PAGE_CACHE_UC_MINUS), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100928}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700929
930int set_memory_uc(unsigned long addr, int numpages)
931{
Suresh Siddhade33c442008-04-25 17:07:22 -0700932 /*
933 * for now UC MINUS. see comments in ioremap_nocache()
934 */
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -0700935 if (reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
Suresh Siddhade33c442008-04-25 17:07:22 -0700936 _PAGE_CACHE_UC_MINUS, NULL))
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700937 return -EINVAL;
938
939 return _set_memory_uc(addr, numpages);
940}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100941EXPORT_SYMBOL(set_memory_uc);
942
Shaohua Lid75586a2008-08-21 10:46:06 +0800943int set_memory_array_uc(unsigned long *addr, int addrinarray)
944{
Rene Hermanc5e147c2008-08-22 01:02:20 +0200945 unsigned long start;
946 unsigned long end;
Shaohua Lid75586a2008-08-21 10:46:06 +0800947 int i;
948 /*
949 * for now UC MINUS. see comments in ioremap_nocache()
950 */
951 for (i = 0; i < addrinarray; i++) {
Rene Hermanc5e147c2008-08-22 01:02:20 +0200952 start = __pa(addr[i]);
953 for (end = start + PAGE_SIZE; i < addrinarray - 1; end += PAGE_SIZE) {
954 if (end != __pa(addr[i + 1]))
955 break;
956 i++;
957 }
958 if (reserve_memtype(start, end, _PAGE_CACHE_UC_MINUS, NULL))
Shaohua Lid75586a2008-08-21 10:46:06 +0800959 goto out;
960 }
961
962 return change_page_attr_set(addr, addrinarray,
963 __pgprot(_PAGE_CACHE_UC_MINUS), 1);
964out:
Rene Hermanc5e147c2008-08-22 01:02:20 +0200965 for (i = 0; i < addrinarray; i++) {
966 unsigned long tmp = __pa(addr[i]);
967
968 if (tmp == start)
969 break;
Venki Pallipadi01de05a2008-08-22 12:08:17 -0700970 for (end = tmp + PAGE_SIZE; i < addrinarray - 1; end += PAGE_SIZE) {
Rene Hermanc5e147c2008-08-22 01:02:20 +0200971 if (end != __pa(addr[i + 1]))
972 break;
973 i++;
974 }
975 free_memtype(tmp, end);
976 }
Shaohua Lid75586a2008-08-21 10:46:06 +0800977 return -EINVAL;
978}
979EXPORT_SYMBOL(set_memory_array_uc);
980
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700981int _set_memory_wc(unsigned long addr, int numpages)
982{
Shaohua Lid75586a2008-08-21 10:46:06 +0800983 return change_page_attr_set(&addr, numpages,
984 __pgprot(_PAGE_CACHE_WC), 0);
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700985}
986
987int set_memory_wc(unsigned long addr, int numpages)
988{
Andreas Herrmann499f8f82008-06-10 16:06:21 +0200989 if (!pat_enabled)
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700990 return set_memory_uc(addr, numpages);
991
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -0700992 if (reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700993 _PAGE_CACHE_WC, NULL))
994 return -EINVAL;
995
996 return _set_memory_wc(addr, numpages);
997}
998EXPORT_SYMBOL(set_memory_wc);
999
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001000int _set_memory_wb(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001001{
Shaohua Lid75586a2008-08-21 10:46:06 +08001002 return change_page_attr_clear(&addr, numpages,
1003 __pgprot(_PAGE_CACHE_MASK), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001004}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001005
1006int set_memory_wb(unsigned long addr, int numpages)
1007{
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -07001008 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001009
1010 return _set_memory_wb(addr, numpages);
1011}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001012EXPORT_SYMBOL(set_memory_wb);
1013
Shaohua Lid75586a2008-08-21 10:46:06 +08001014int set_memory_array_wb(unsigned long *addr, int addrinarray)
1015{
1016 int i;
Shaohua Lid75586a2008-08-21 10:46:06 +08001017
Rene Hermanc5e147c2008-08-22 01:02:20 +02001018 for (i = 0; i < addrinarray; i++) {
1019 unsigned long start = __pa(addr[i]);
1020 unsigned long end;
1021
1022 for (end = start + PAGE_SIZE; i < addrinarray - 1; end += PAGE_SIZE) {
1023 if (end != __pa(addr[i + 1]))
1024 break;
1025 i++;
1026 }
1027 free_memtype(start, end);
1028 }
Shaohua Lid75586a2008-08-21 10:46:06 +08001029 return change_page_attr_clear(addr, addrinarray,
1030 __pgprot(_PAGE_CACHE_MASK), 1);
1031}
1032EXPORT_SYMBOL(set_memory_array_wb);
1033
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001034int set_memory_x(unsigned long addr, int numpages)
1035{
Shaohua Lid75586a2008-08-21 10:46:06 +08001036 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_NX), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001037}
1038EXPORT_SYMBOL(set_memory_x);
1039
1040int set_memory_nx(unsigned long addr, int numpages)
1041{
Shaohua Lid75586a2008-08-21 10:46:06 +08001042 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_NX), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001043}
1044EXPORT_SYMBOL(set_memory_nx);
1045
1046int set_memory_ro(unsigned long addr, int numpages)
1047{
Shaohua Lid75586a2008-08-21 10:46:06 +08001048 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_RW), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001049}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001050
1051int set_memory_rw(unsigned long addr, int numpages)
1052{
Shaohua Lid75586a2008-08-21 10:46:06 +08001053 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_RW), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001054}
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001055
1056int set_memory_np(unsigned long addr, int numpages)
1057{
Shaohua Lid75586a2008-08-21 10:46:06 +08001058 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_PRESENT), 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001059}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001060
Andi Kleenc9caa022008-03-12 03:53:29 +01001061int set_memory_4k(unsigned long addr, int numpages)
1062{
Shaohua Lid75586a2008-08-21 10:46:06 +08001063 return change_page_attr_set_clr(&addr, numpages, __pgprot(0),
1064 __pgprot(0), 1, 0);
Andi Kleenc9caa022008-03-12 03:53:29 +01001065}
1066
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001067int set_pages_uc(struct page *page, int numpages)
1068{
1069 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001070
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001071 return set_memory_uc(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001072}
1073EXPORT_SYMBOL(set_pages_uc);
1074
1075int set_pages_wb(struct page *page, int numpages)
1076{
1077 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001078
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001079 return set_memory_wb(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001080}
1081EXPORT_SYMBOL(set_pages_wb);
1082
1083int set_pages_x(struct page *page, int numpages)
1084{
1085 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001086
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001087 return set_memory_x(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001088}
1089EXPORT_SYMBOL(set_pages_x);
1090
1091int set_pages_nx(struct page *page, int numpages)
1092{
1093 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001094
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001095 return set_memory_nx(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001096}
1097EXPORT_SYMBOL(set_pages_nx);
1098
1099int set_pages_ro(struct page *page, int numpages)
1100{
1101 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001102
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001103 return set_memory_ro(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001104}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001105
1106int set_pages_rw(struct page *page, int numpages)
1107{
1108 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001109
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001110 return set_memory_rw(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001111}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113#ifdef CONFIG_DEBUG_PAGEALLOC
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001114
1115static int __set_pages_p(struct page *page, int numpages)
1116{
Shaohua Lid75586a2008-08-21 10:46:06 +08001117 unsigned long tempaddr = (unsigned long) page_address(page);
1118 struct cpa_data cpa = { .vaddr = &tempaddr,
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001119 .numpages = numpages,
1120 .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW),
Shaohua Lid75586a2008-08-21 10:46:06 +08001121 .mask_clr = __pgprot(0),
1122 .flags = 0};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001123
Suresh Siddha55121b42008-09-23 14:00:40 -07001124 /*
1125 * No alias checking needed for setting present flag. otherwise,
1126 * we may need to break large pages for 64-bit kernel text
1127 * mappings (this adds to complexity if we want to do this from
1128 * atomic context especially). Let's keep it simple!
1129 */
1130 return __change_page_attr_set_clr(&cpa, 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001131}
1132
1133static int __set_pages_np(struct page *page, int numpages)
1134{
Shaohua Lid75586a2008-08-21 10:46:06 +08001135 unsigned long tempaddr = (unsigned long) page_address(page);
1136 struct cpa_data cpa = { .vaddr = &tempaddr,
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001137 .numpages = numpages,
1138 .mask_set = __pgprot(0),
Shaohua Lid75586a2008-08-21 10:46:06 +08001139 .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW),
1140 .flags = 0};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001141
Suresh Siddha55121b42008-09-23 14:00:40 -07001142 /*
1143 * No alias checking needed for setting not present flag. otherwise,
1144 * we may need to break large pages for 64-bit kernel text
1145 * mappings (this adds to complexity if we want to do this from
1146 * atomic context especially). Let's keep it simple!
1147 */
1148 return __change_page_attr_set_clr(&cpa, 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001149}
1150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151void kernel_map_pages(struct page *page, int numpages, int enable)
1152{
1153 if (PageHighMem(page))
1154 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001155 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -07001156 debug_check_no_locks_freed(page_address(page),
1157 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001158 }
Ingo Molnarde5097c2006-01-09 15:59:21 -08001159
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001160 /*
Ingo Molnar12d6f212008-01-30 13:33:58 +01001161 * If page allocator is not up yet then do not call c_p_a():
1162 */
1163 if (!debug_pagealloc_enabled)
1164 return;
1165
1166 /*
Ingo Molnarf8d84062008-02-13 14:09:53 +01001167 * The return value is ignored as the calls cannot fail.
Suresh Siddha55121b42008-09-23 14:00:40 -07001168 * Large pages for identity mappings are not used at boot time
1169 * and hence no memory allocations during large page split.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 */
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001171 if (enable)
1172 __set_pages_p(page, numpages);
1173 else
1174 __set_pages_np(page, numpages);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001175
1176 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +01001177 * We should perform an IPI and flush all tlbs,
1178 * but that can deadlock->flush only current cpu:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 */
1180 __flush_tlb_all();
Thomas Gleixner76ebd052008-02-09 23:24:09 +01001181
1182 /*
1183 * Try to refill the page pool here. We can do this only after
1184 * the tlb flush.
1185 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +01001186 cpa_fill_pool(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187}
Rafael J. Wysocki8a235ef2008-02-20 01:47:44 +01001188
Thomas Gleixneree7ae7a2008-04-17 17:40:45 +02001189#ifdef CONFIG_DEBUG_FS
1190static int dpa_show(struct seq_file *m, void *v)
1191{
1192 seq_puts(m, "DEBUG_PAGEALLOC\n");
1193 seq_printf(m, "pool_size : %lu\n", pool_size);
1194 seq_printf(m, "pool_pages : %lu\n", pool_pages);
1195 seq_printf(m, "pool_low : %lu\n", pool_low);
1196 seq_printf(m, "pool_used : %lu\n", pool_used);
1197 seq_printf(m, "pool_failed : %lu\n", pool_failed);
1198
1199 return 0;
1200}
1201
1202static int dpa_open(struct inode *inode, struct file *filp)
1203{
1204 return single_open(filp, dpa_show, NULL);
1205}
1206
1207static const struct file_operations dpa_fops = {
1208 .open = dpa_open,
1209 .read = seq_read,
1210 .llseek = seq_lseek,
1211 .release = single_release,
1212};
1213
Ingo Molnara4928cf2008-04-23 13:20:56 +02001214static int __init debug_pagealloc_proc_init(void)
Thomas Gleixneree7ae7a2008-04-17 17:40:45 +02001215{
1216 struct dentry *de;
1217
1218 de = debugfs_create_file("debug_pagealloc", 0600, NULL, NULL,
1219 &dpa_fops);
1220 if (!de)
1221 return -ENOMEM;
1222
1223 return 0;
1224}
1225__initcall(debug_pagealloc_proc_init);
1226#endif
1227
Rafael J. Wysocki8a235ef2008-02-20 01:47:44 +01001228#ifdef CONFIG_HIBERNATION
1229
1230bool kernel_page_present(struct page *page)
1231{
1232 unsigned int level;
1233 pte_t *pte;
1234
1235 if (PageHighMem(page))
1236 return false;
1237
1238 pte = lookup_address((unsigned long)page_address(page), &level);
1239 return (pte_val(*pte) & _PAGE_PRESENT);
1240}
1241
1242#endif /* CONFIG_HIBERNATION */
1243
1244#endif /* CONFIG_DEBUG_PAGEALLOC */
Arjan van de Vend1028a12008-01-30 13:34:07 +01001245
1246/*
1247 * The testcases use internal knowledge of the implementation that shouldn't
1248 * be exposed to the rest of the kernel. Include these directly here.
1249 */
1250#ifdef CONFIG_CPA_DEBUG
1251#include "pageattr-test.c"
1252#endif