blob: 041e81ef673a2cf3bbdebf5a65e7e3cae5d3302d [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{
62 int n = sprintf(page, "DirectMap4k: %8lu\n"
63 "DirectMap2M: %8lu\n",
64 direct_pages_count[PG_LEVEL_4K],
65 direct_pages_count[PG_LEVEL_2M]);
66#ifdef CONFIG_X86_64
67 n += sprintf(page + n, "DirectMap1G: %8lu\n",
68 direct_pages_count[PG_LEVEL_1G]);
69#endif
70 return n;
71}
72#else
73static inline void split_page_count(int level) { }
74#endif
75
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010076#ifdef CONFIG_X86_64
77
78static inline unsigned long highmap_start_pfn(void)
79{
80 return __pa(_text) >> PAGE_SHIFT;
81}
82
83static inline unsigned long highmap_end_pfn(void)
84{
85 return __pa(round_up((unsigned long)_end, PMD_SIZE)) >> PAGE_SHIFT;
86}
87
88#endif
89
Ingo Molnar92cb54a2008-02-13 14:37:52 +010090#ifdef CONFIG_DEBUG_PAGEALLOC
91# define debug_pagealloc 1
92#else
93# define debug_pagealloc 0
94#endif
95
Arjan van de Vened724be2008-01-30 13:34:04 +010096static inline int
97within(unsigned long addr, unsigned long start, unsigned long end)
Ingo Molnar687c4822008-01-30 13:34:04 +010098{
Arjan van de Vened724be2008-01-30 13:34:04 +010099 return addr >= start && addr < end;
100}
101
102/*
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100103 * Flushing functions
104 */
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100105
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100106/**
107 * clflush_cache_range - flush a cache range with clflush
108 * @addr: virtual start address
109 * @size: number of bytes to flush
110 *
111 * clflush is an unordered instruction which needs fencing with mfence
112 * to avoid ordering issues.
113 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100114void clflush_cache_range(void *vaddr, unsigned int size)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100115{
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100116 void *vend = vaddr + size - 1;
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100117
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100118 mb();
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100119
120 for (; vaddr < vend; vaddr += boot_cpu_data.x86_clflush_size)
121 clflush(vaddr);
122 /*
123 * Flush any possible final partial cacheline:
124 */
125 clflush(vend);
126
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100127 mb();
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100128}
129
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100130static void __cpa_flush_all(void *arg)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100131{
Andi Kleen6bb83832008-02-04 16:48:06 +0100132 unsigned long cache = (unsigned long)arg;
133
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100134 /*
135 * Flush all to work around Errata in early athlons regarding
136 * large page flushing.
137 */
138 __flush_tlb_all();
139
Andi Kleen6bb83832008-02-04 16:48:06 +0100140 if (cache && boot_cpu_data.x86_model >= 4)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100141 wbinvd();
142}
143
Andi Kleen6bb83832008-02-04 16:48:06 +0100144static void cpa_flush_all(unsigned long cache)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100145{
146 BUG_ON(irqs_disabled());
147
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200148 on_each_cpu(__cpa_flush_all, (void *) cache, 1);
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100149}
150
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100151static void __cpa_flush_range(void *arg)
152{
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100153 /*
154 * We could optimize that further and do individual per page
155 * tlb invalidates for a low number of pages. Caveat: we must
156 * flush the high aliases on 64bit as well.
157 */
158 __flush_tlb_all();
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100159}
160
Andi Kleen6bb83832008-02-04 16:48:06 +0100161static void cpa_flush_range(unsigned long start, int numpages, int cache)
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100162{
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100163 unsigned int i, level;
164 unsigned long addr;
165
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100166 BUG_ON(irqs_disabled());
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100167 WARN_ON(PAGE_ALIGN(start) != start);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100168
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200169 on_each_cpu(__cpa_flush_range, NULL, 1);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100170
Andi Kleen6bb83832008-02-04 16:48:06 +0100171 if (!cache)
172 return;
173
Thomas Gleixner3b233e52008-01-30 13:34:08 +0100174 /*
175 * We only need to flush on one CPU,
176 * clflush is a MESI-coherent instruction that
177 * will cause all other CPUs to flush the same
178 * cachelines:
179 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100180 for (i = 0, addr = start; i < numpages; i++, addr += PAGE_SIZE) {
181 pte_t *pte = lookup_address(addr, &level);
182
183 /*
184 * Only flush present addresses:
185 */
Thomas Gleixner7bfb72e2008-02-04 16:48:08 +0100186 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100187 clflush_cache_range((void *) addr, PAGE_SIZE);
188 }
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100189}
190
Shaohua Lid75586a2008-08-21 10:46:06 +0800191static void cpa_flush_array(unsigned long *start, int numpages, int cache)
192{
193 unsigned int i, level;
194 unsigned long *addr;
195
196 BUG_ON(irqs_disabled());
197
198 on_each_cpu(__cpa_flush_range, NULL, 1);
199
200 if (!cache)
201 return;
202
203 /* 4M threshold */
204 if (numpages >= 1024) {
205 if (boot_cpu_data.x86_model >= 4)
206 wbinvd();
207 return;
208 }
209 /*
210 * We only need to flush on one CPU,
211 * clflush is a MESI-coherent instruction that
212 * will cause all other CPUs to flush the same
213 * cachelines:
214 */
215 for (i = 0, addr = start; i < numpages; i++, addr++) {
216 pte_t *pte = lookup_address(*addr, &level);
217
218 /*
219 * Only flush present addresses:
220 */
221 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
222 clflush_cache_range((void *) *addr, PAGE_SIZE);
223 }
224}
225
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100226/*
Arjan van de Vened724be2008-01-30 13:34:04 +0100227 * Certain areas of memory on x86 require very specific protection flags,
228 * for example the BIOS area or kernel text. Callers don't always get this
229 * right (again, ioremap() on BIOS memory is not uncommon) so this function
230 * checks and fixes these known static required protection bits.
231 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100232static inline pgprot_t static_protections(pgprot_t prot, unsigned long address,
233 unsigned long pfn)
Arjan van de Vened724be2008-01-30 13:34:04 +0100234{
235 pgprot_t forbidden = __pgprot(0);
236
Ingo Molnar687c4822008-01-30 13:34:04 +0100237 /*
Arjan van de Vened724be2008-01-30 13:34:04 +0100238 * The BIOS area between 640k and 1Mb needs to be executable for
239 * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support.
Ingo Molnar687c4822008-01-30 13:34:04 +0100240 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100241 if (within(pfn, BIOS_BEGIN >> PAGE_SHIFT, BIOS_END >> PAGE_SHIFT))
Arjan van de Vened724be2008-01-30 13:34:04 +0100242 pgprot_val(forbidden) |= _PAGE_NX;
243
244 /*
245 * The kernel text needs to be executable for obvious reasons
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100246 * Does not cover __inittext since that is gone later on. On
247 * 64bit we do not enforce !NX on the low mapping
Arjan van de Vened724be2008-01-30 13:34:04 +0100248 */
249 if (within(address, (unsigned long)_text, (unsigned long)_etext))
250 pgprot_val(forbidden) |= _PAGE_NX;
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100251
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100252 /*
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100253 * The .rodata section needs to be read-only. Using the pfn
254 * catches all aliases.
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100255 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100256 if (within(pfn, __pa((unsigned long)__start_rodata) >> PAGE_SHIFT,
257 __pa((unsigned long)__end_rodata) >> PAGE_SHIFT))
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100258 pgprot_val(forbidden) |= _PAGE_RW;
Arjan van de Vened724be2008-01-30 13:34:04 +0100259
260 prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden));
Ingo Molnar687c4822008-01-30 13:34:04 +0100261
262 return prot;
263}
264
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100265/*
266 * Lookup the page table entry for a virtual address. Return a pointer
267 * to the entry and the level of the mapping.
268 *
269 * Note: We return pud and pmd either when the entry is marked large
270 * or when the present bit is not set. Otherwise we would return a
271 * pointer to a nonexisting mapping.
272 */
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100273pte_t *lookup_address(unsigned long address, unsigned int *level)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100274{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 pgd_t *pgd = pgd_offset_k(address);
276 pud_t *pud;
277 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100278
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100279 *level = PG_LEVEL_NONE;
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 if (pgd_none(*pgd))
282 return NULL;
Ingo Molnar9df84992008-02-04 16:48:09 +0100283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 pud = pud_offset(pgd, address);
285 if (pud_none(*pud))
286 return NULL;
Andi Kleenc2f71ee2008-02-04 16:48:09 +0100287
288 *level = PG_LEVEL_1G;
289 if (pud_large(*pud) || !pud_present(*pud))
290 return (pte_t *)pud;
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 pmd = pmd_offset(pud, address);
293 if (pmd_none(*pmd))
294 return NULL;
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100295
296 *level = PG_LEVEL_2M;
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100297 if (pmd_large(*pmd) || !pmd_present(*pmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 return (pte_t *)pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100300 *level = PG_LEVEL_4K;
Ingo Molnar9df84992008-02-04 16:48:09 +0100301
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100302 return pte_offset_kernel(pmd, address);
303}
Pekka Paalanen75bb8832008-05-12 21:20:56 +0200304EXPORT_SYMBOL_GPL(lookup_address);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100305
Ingo Molnar9df84992008-02-04 16:48:09 +0100306/*
307 * Set the new pmd in all the pgds we know about:
308 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100309static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100310{
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100311 /* change init_mm */
312 set_pte_atomic(kpte, pte);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100313#ifdef CONFIG_X86_32
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100314 if (!SHARED_KERNEL_PMD) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100315 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Jeremy Fitzhardingee3ed9102008-01-30 13:34:11 +0100317 list_for_each_entry(page, &pgd_list, lru) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100318 pgd_t *pgd;
319 pud_t *pud;
320 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100321
Ingo Molnar44af6c42008-01-30 13:34:03 +0100322 pgd = (pgd_t *)page_address(page) + pgd_index(address);
323 pud = pud_offset(pgd, address);
324 pmd = pmd_offset(pud, address);
325 set_pte_atomic((pte_t *)pmd, pte);
326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100328#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
Ingo Molnar9df84992008-02-04 16:48:09 +0100331static int
332try_preserve_large_page(pte_t *kpte, unsigned long address,
333 struct cpa_data *cpa)
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100334{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100335 unsigned long nextpage_addr, numpages, pmask, psize, flags, addr, pfn;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100336 pte_t new_pte, old_pte, *tmp;
337 pgprot_t old_prot, new_prot;
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100338 int i, do_split = 1;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100339 unsigned int level;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100340
Andi Kleenc9caa022008-03-12 03:53:29 +0100341 if (cpa->force_split)
342 return 1;
343
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100344 spin_lock_irqsave(&pgd_lock, flags);
345 /*
346 * Check for races, another CPU might have split this page
347 * up already:
348 */
349 tmp = lookup_address(address, &level);
350 if (tmp != kpte)
351 goto out_unlock;
352
353 switch (level) {
354 case PG_LEVEL_2M:
Andi Kleen31422c52008-02-04 16:48:08 +0100355 psize = PMD_PAGE_SIZE;
356 pmask = PMD_PAGE_MASK;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100357 break;
Andi Kleenf07333f2008-02-04 16:48:09 +0100358#ifdef CONFIG_X86_64
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100359 case PG_LEVEL_1G:
Andi Kleen5d3c8b22008-02-13 16:20:35 +0100360 psize = PUD_PAGE_SIZE;
361 pmask = PUD_PAGE_MASK;
Andi Kleenf07333f2008-02-04 16:48:09 +0100362 break;
363#endif
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100364 default:
Ingo Molnarbeaff632008-02-04 16:48:09 +0100365 do_split = -EINVAL;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100366 goto out_unlock;
367 }
368
369 /*
370 * Calculate the number of pages, which fit into this large
371 * page starting at address:
372 */
373 nextpage_addr = (address + psize) & pmask;
374 numpages = (nextpage_addr - address) >> PAGE_SHIFT;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100375 if (numpages < cpa->numpages)
376 cpa->numpages = numpages;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100377
378 /*
379 * We are safe now. Check whether the new pgprot is the same:
380 */
381 old_pte = *kpte;
382 old_prot = new_prot = pte_pgprot(old_pte);
383
384 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
385 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100386
387 /*
388 * old_pte points to the large page base address. So we need
389 * to add the offset of the virtual address:
390 */
391 pfn = pte_pfn(old_pte) + ((address & (psize - 1)) >> PAGE_SHIFT);
392 cpa->pfn = pfn;
393
394 new_prot = static_protections(new_prot, address, pfn);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100395
396 /*
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100397 * We need to check the full range, whether
398 * static_protection() requires a different pgprot for one of
399 * the pages in the range we try to preserve:
400 */
401 addr = address + PAGE_SIZE;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100402 pfn++;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100403 for (i = 1; i < cpa->numpages; i++, addr += PAGE_SIZE, pfn++) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100404 pgprot_t chk_prot = static_protections(new_prot, addr, pfn);
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100405
406 if (pgprot_val(chk_prot) != pgprot_val(new_prot))
407 goto out_unlock;
408 }
409
410 /*
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100411 * If there are no changes, return. maxpages has been updated
412 * above:
413 */
414 if (pgprot_val(new_prot) == pgprot_val(old_prot)) {
Ingo Molnarbeaff632008-02-04 16:48:09 +0100415 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100416 goto out_unlock;
417 }
418
419 /*
420 * We need to change the attributes. Check, whether we can
421 * change the large page in one go. We request a split, when
422 * the address is not aligned and the number of pages is
423 * smaller than the number of pages in the large page. Note
424 * that we limited the number of possible pages already to
425 * the number of pages in the large page.
426 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100427 if (address == (nextpage_addr - psize) && cpa->numpages == numpages) {
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100428 /*
429 * The address is aligned and the number of pages
430 * covers the full page.
431 */
432 new_pte = pfn_pte(pte_pfn(old_pte), canon_pgprot(new_prot));
433 __set_pmd_pte(kpte, address, new_pte);
Shaohua Lid75586a2008-08-21 10:46:06 +0800434 cpa->flags |= CPA_FLUSHTLB;
Ingo Molnarbeaff632008-02-04 16:48:09 +0100435 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100436 }
437
438out_unlock:
439 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnar9df84992008-02-04 16:48:09 +0100440
Ingo Molnarbeaff632008-02-04 16:48:09 +0100441 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100442}
443
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100444static LIST_HEAD(page_pool);
445static unsigned long pool_size, pool_pages, pool_low;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100446static unsigned long pool_used, pool_failed;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100447
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100448static void cpa_fill_pool(struct page **ret)
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100449{
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100450 gfp_t gfp = GFP_KERNEL;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100451 unsigned long flags;
452 struct page *p;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100453
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100454 /*
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100455 * Avoid recursion (on debug-pagealloc) and also signal
456 * our priority to get to these pagetables:
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100457 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100458 if (current->flags & PF_MEMALLOC)
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100459 return;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100460 current->flags |= PF_MEMALLOC;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100461
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100462 /*
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100463 * Allocate atomically from atomic contexts:
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100464 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100465 if (in_atomic() || irqs_disabled() || debug_pagealloc)
466 gfp = GFP_ATOMIC | __GFP_NORETRY | __GFP_NOWARN;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100467
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100468 while (pool_pages < pool_size || (ret && !*ret)) {
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100469 p = alloc_pages(gfp, 0);
470 if (!p) {
471 pool_failed++;
472 break;
473 }
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100474 /*
475 * If the call site needs a page right now, provide it:
476 */
477 if (ret && !*ret) {
478 *ret = p;
479 continue;
480 }
481 spin_lock_irqsave(&pgd_lock, flags);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100482 list_add(&p->lru, &page_pool);
483 pool_pages++;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100484 spin_unlock_irqrestore(&pgd_lock, flags);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100485 }
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100486
487 current->flags &= ~PF_MEMALLOC;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100488}
489
490#define SHIFT_MB (20 - PAGE_SHIFT)
491#define ROUND_MB_GB ((1 << 10) - 1)
492#define SHIFT_MB_GB 10
493#define POOL_PAGES_PER_GB 16
494
495void __init cpa_init(void)
496{
497 struct sysinfo si;
498 unsigned long gb;
499
500 si_meminfo(&si);
501 /*
502 * Calculate the number of pool pages:
503 *
504 * Convert totalram (nr of pages) to MiB and round to the next
505 * GiB. Shift MiB to Gib and multiply the result by
506 * POOL_PAGES_PER_GB:
507 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100508 if (debug_pagealloc) {
509 gb = ((si.totalram >> SHIFT_MB) + ROUND_MB_GB) >> SHIFT_MB_GB;
510 pool_size = POOL_PAGES_PER_GB * gb;
511 } else {
512 pool_size = 1;
513 }
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100514 pool_low = pool_size;
515
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100516 cpa_fill_pool(NULL);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100517 printk(KERN_DEBUG
518 "CPA: page pool initialized %lu of %lu pages preallocated\n",
519 pool_pages, pool_size);
520}
521
Ingo Molnar7afe15b2008-01-30 13:33:57 +0100522static int split_large_page(pte_t *kpte, unsigned long address)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100523{
Thomas Gleixner7b610ee2008-02-04 16:48:10 +0100524 unsigned long flags, pfn, pfninc = 1;
Ingo Molnar86f03982008-01-30 13:34:09 +0100525 unsigned int i, level;
Ingo Molnar9df84992008-02-04 16:48:09 +0100526 pte_t *pbase, *tmp;
527 pgprot_t ref_prot;
528 struct page *base;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100529
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100530 /*
531 * Get a page from the pool. The pool list is protected by the
532 * pgd_lock, which we have to take anyway for the split
533 * operation:
534 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100535 spin_lock_irqsave(&pgd_lock, flags);
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100536 if (list_empty(&page_pool)) {
537 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100538 base = NULL;
539 cpa_fill_pool(&base);
540 if (!base)
541 return -ENOMEM;
542 spin_lock_irqsave(&pgd_lock, flags);
543 } else {
544 base = list_first_entry(&page_pool, struct page, lru);
545 list_del(&base->lru);
546 pool_pages--;
547
548 if (pool_pages < pool_low)
549 pool_low = pool_pages;
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100550 }
551
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100552 /*
553 * Check for races, another CPU might have split this page
554 * up for us already:
555 */
556 tmp = lookup_address(address, &level);
Ingo Molnar6ce9fc12008-02-04 16:48:08 +0100557 if (tmp != kpte)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100558 goto out_unlock;
559
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100560 pbase = (pte_t *)page_address(base);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700561 paravirt_alloc_pte(&init_mm, page_to_pfn(base));
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100562 ref_prot = pte_pgprot(pte_clrhuge(*kpte));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100563
Andi Kleenf07333f2008-02-04 16:48:09 +0100564#ifdef CONFIG_X86_64
565 if (level == PG_LEVEL_1G) {
566 pfninc = PMD_PAGE_SIZE >> PAGE_SHIFT;
567 pgprot_val(ref_prot) |= _PAGE_PSE;
Andi Kleenf07333f2008-02-04 16:48:09 +0100568 }
569#endif
570
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100571 /*
572 * Get the target pfn from the original entry:
573 */
574 pfn = pte_pfn(*kpte);
Andi Kleenf07333f2008-02-04 16:48:09 +0100575 for (i = 0; i < PTRS_PER_PTE; i++, pfn += pfninc)
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100576 set_pte(&pbase[i], pfn_pte(pfn, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100577
Andi Kleence0c0e52008-05-02 11:46:49 +0200578 if (address >= (unsigned long)__va(0) &&
Yinghai Luf361a452008-07-10 20:38:26 -0700579 address < (unsigned long)__va(max_low_pfn_mapped << PAGE_SHIFT))
580 split_page_count(level);
581
582#ifdef CONFIG_X86_64
583 if (address >= (unsigned long)__va(1UL<<32) &&
Thomas Gleixner65280e62008-05-05 16:35:21 +0200584 address < (unsigned long)__va(max_pfn_mapped << PAGE_SHIFT))
585 split_page_count(level);
Yinghai Luf361a452008-07-10 20:38:26 -0700586#endif
Andi Kleence0c0e52008-05-02 11:46:49 +0200587
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100588 /*
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100589 * Install the new, split up pagetable. Important details here:
Huang, Ying4c881ca2008-01-30 13:34:04 +0100590 *
591 * On Intel the NX bit of all levels must be cleared to make a
592 * page executable. See section 4.13.2 of Intel 64 and IA-32
593 * Architectures Software Developer's Manual).
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100594 *
595 * Mark the entry present. The current mapping might be
596 * set to not present, which we preserved above.
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100597 */
Huang, Ying4c881ca2008-01-30 13:34:04 +0100598 ref_prot = pte_pgprot(pte_mkexec(pte_clrhuge(*kpte)));
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100599 pgprot_val(ref_prot) |= _PAGE_PRESENT;
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100600 __set_pmd_pte(kpte, address, mk_pte(base, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100601 base = NULL;
602
603out_unlock:
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100604 /*
605 * If we dropped out via the lookup_address check under
606 * pgd_lock then stick the page back into the pool:
607 */
608 if (base) {
609 list_add(&base->lru, &page_pool);
610 pool_pages++;
611 } else
612 pool_used++;
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100613 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100614
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100615 return 0;
616}
617
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100618static int __change_page_attr(struct cpa_data *cpa, int primary)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100619{
Shaohua Lid75586a2008-08-21 10:46:06 +0800620 unsigned long address;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100621 int do_split, err;
622 unsigned int level;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100623 pte_t *kpte, old_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Shaohua Lid75586a2008-08-21 10:46:06 +0800625 if (cpa->flags & CPA_ARRAY)
626 address = cpa->vaddr[cpa->curpage];
627 else
628 address = *cpa->vaddr;
629
Ingo Molnar97f99fe2008-01-30 13:33:55 +0100630repeat:
Ingo Molnarf0646e42008-01-30 13:33:43 +0100631 kpte = lookup_address(address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 if (!kpte)
Ingo Molnard1a4be62008-04-18 21:32:22 +0200633 return 0;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100634
635 old_pte = *kpte;
636 if (!pte_val(old_pte)) {
637 if (!primary)
638 return 0;
639 printk(KERN_WARNING "CPA: called for zero pte. "
640 "vaddr = %lx cpa->vaddr = %lx\n", address,
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100641 WARN_ON(1);
Shaohua Lid75586a2008-08-21 10:46:06 +0800642 *cpa->vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return -EINVAL;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100644 }
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100645
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100646 if (level == PG_LEVEL_4K) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100647 pte_t new_pte;
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100648 pgprot_t new_prot = pte_pgprot(old_pte);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100649 unsigned long pfn = pte_pfn(old_pte);
Thomas Gleixnera72a08a2008-01-30 13:34:07 +0100650
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100651 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
652 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Ingo Molnar86f03982008-01-30 13:34:09 +0100653
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100654 new_prot = static_protections(new_prot, address, pfn);
Ingo Molnar86f03982008-01-30 13:34:09 +0100655
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100656 /*
657 * We need to keep the pfn from the existing PTE,
658 * after all we're only going to change it's attributes
659 * not the memory it points to
660 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100661 new_pte = pfn_pte(pfn, canon_pgprot(new_prot));
662 cpa->pfn = pfn;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100663 /*
664 * Do we really change anything ?
665 */
666 if (pte_val(old_pte) != pte_val(new_pte)) {
667 set_pte_atomic(kpte, new_pte);
Shaohua Lid75586a2008-08-21 10:46:06 +0800668 cpa->flags |= CPA_FLUSHTLB;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100669 }
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100670 cpa->numpages = 1;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100671 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 }
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100673
674 /*
675 * Check, whether we can keep the large page intact
676 * and just change the pte:
677 */
Ingo Molnarbeaff632008-02-04 16:48:09 +0100678 do_split = try_preserve_large_page(kpte, address, cpa);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100679 /*
680 * When the range fits into the existing large page,
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100681 * return. cp->numpages and cpa->tlbflush have been updated in
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100682 * try_large_page:
683 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100684 if (do_split <= 0)
685 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100686
687 /*
688 * We have to split the large page:
689 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100690 err = split_large_page(kpte, address);
691 if (!err) {
Shaohua Lid75586a2008-08-21 10:46:06 +0800692 cpa->flags |= CPA_FLUSHTLB;
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100693 goto repeat;
694 }
Ingo Molnarbeaff632008-02-04 16:48:09 +0100695
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100696 return err;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100697}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100699static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias);
700
701static int cpa_process_alias(struct cpa_data *cpa)
Ingo Molnar44af6c42008-01-30 13:34:03 +0100702{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100703 struct cpa_data alias_cpa;
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100704 int ret = 0;
Shaohua Lid75586a2008-08-21 10:46:06 +0800705 unsigned long temp_cpa_vaddr, vaddr;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100706
Yinghai Lu965194c2008-07-12 14:31:28 -0700707 if (cpa->pfn >= max_pfn_mapped)
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100708 return 0;
709
Yinghai Luf361a452008-07-10 20:38:26 -0700710#ifdef CONFIG_X86_64
Yinghai Lu965194c2008-07-12 14:31:28 -0700711 if (cpa->pfn >= max_low_pfn_mapped && cpa->pfn < (1UL<<(32-PAGE_SHIFT)))
Yinghai Luf361a452008-07-10 20:38:26 -0700712 return 0;
713#endif
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100714 /*
715 * No need to redo, when the primary call touched the direct
716 * mapping already:
717 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800718 if (cpa->flags & CPA_ARRAY)
719 vaddr = cpa->vaddr[cpa->curpage];
720 else
721 vaddr = *cpa->vaddr;
722
723 if (!(within(vaddr, PAGE_OFFSET,
Yinghai Luf361a452008-07-10 20:38:26 -0700724 PAGE_OFFSET + (max_low_pfn_mapped << PAGE_SHIFT))
725#ifdef CONFIG_X86_64
Shaohua Lid75586a2008-08-21 10:46:06 +0800726 || within(vaddr, PAGE_OFFSET + (1UL<<32),
Yinghai Luf361a452008-07-10 20:38:26 -0700727 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT))
728#endif
729 )) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100730
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100731 alias_cpa = *cpa;
Shaohua Lid75586a2008-08-21 10:46:06 +0800732 temp_cpa_vaddr = (unsigned long) __va(cpa->pfn << PAGE_SHIFT);
733 alias_cpa.vaddr = &temp_cpa_vaddr;
734 alias_cpa.flags &= ~CPA_ARRAY;
735
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100736
737 ret = __change_page_attr_set_clr(&alias_cpa, 0);
738 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100739
Arjan van de Ven488fd992008-01-30 13:34:07 +0100740#ifdef CONFIG_X86_64
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100741 if (ret)
742 return ret;
Thomas Gleixner08797502008-01-30 13:34:09 +0100743 /*
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100744 * No need to redo, when the primary call touched the high
745 * mapping already:
746 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800747 if (within(vaddr, (unsigned long) _text, (unsigned long) _end))
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100748 return 0;
749
750 /*
Thomas Gleixner08797502008-01-30 13:34:09 +0100751 * If the physical address is inside the kernel map, we need
752 * to touch the high mapped kernel as well:
753 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100754 if (!within(cpa->pfn, highmap_start_pfn(), highmap_end_pfn()))
755 return 0;
Thomas Gleixner08797502008-01-30 13:34:09 +0100756
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100757 alias_cpa = *cpa;
Shaohua Lid75586a2008-08-21 10:46:06 +0800758 temp_cpa_vaddr = (cpa->pfn << PAGE_SHIFT) + __START_KERNEL_map - phys_base;
759 alias_cpa.vaddr = &temp_cpa_vaddr;
760 alias_cpa.flags &= ~CPA_ARRAY;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100761
762 /*
763 * The high mapping range is imprecise, so ignore the return value.
764 */
765 __change_page_attr_set_clr(&alias_cpa, 0);
Thomas Gleixner08797502008-01-30 13:34:09 +0100766#endif
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100767 return ret;
Ingo Molnar44af6c42008-01-30 13:34:03 +0100768}
769
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100770static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100771{
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100772 int ret, numpages = cpa->numpages;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100773
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100774 while (numpages) {
775 /*
776 * Store the remaining nr of pages for the large page
777 * preservation check.
778 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100779 cpa->numpages = numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +0800780 /* for array changes, we can't use large page */
781 if (cpa->flags & CPA_ARRAY)
782 cpa->numpages = 1;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100783
784 ret = __change_page_attr(cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100785 if (ret)
786 return ret;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100787
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100788 if (checkalias) {
789 ret = cpa_process_alias(cpa);
790 if (ret)
791 return ret;
792 }
793
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100794 /*
795 * Adjust the number of pages with the result of the
796 * CPA operation. Either a large page has been
797 * preserved or a single page update happened.
798 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100799 BUG_ON(cpa->numpages > numpages);
800 numpages -= cpa->numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +0800801 if (cpa->flags & CPA_ARRAY)
802 cpa->curpage++;
803 else
804 *cpa->vaddr += cpa->numpages * PAGE_SIZE;
805
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100806 }
Thomas Gleixnerff314522008-01-30 13:34:08 +0100807 return 0;
808}
809
Andi Kleen6bb83832008-02-04 16:48:06 +0100810static inline int cache_attr(pgprot_t attr)
811{
812 return pgprot_val(attr) &
813 (_PAGE_PAT | _PAGE_PAT_LARGE | _PAGE_PWT | _PAGE_PCD);
814}
815
Shaohua Lid75586a2008-08-21 10:46:06 +0800816static int change_page_attr_set_clr(unsigned long *addr, int numpages,
Andi Kleenc9caa022008-03-12 03:53:29 +0100817 pgprot_t mask_set, pgprot_t mask_clr,
Shaohua Lid75586a2008-08-21 10:46:06 +0800818 int force_split, int array)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100819{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100820 struct cpa_data cpa;
Ingo Molnarcacf8902008-08-21 13:46:33 +0200821 int ret, cache, checkalias;
Thomas Gleixner331e4062008-02-04 16:48:06 +0100822
823 /*
824 * Check, if we are requested to change a not supported
825 * feature:
826 */
827 mask_set = canon_pgprot(mask_set);
828 mask_clr = canon_pgprot(mask_clr);
Andi Kleenc9caa022008-03-12 03:53:29 +0100829 if (!pgprot_val(mask_set) && !pgprot_val(mask_clr) && !force_split)
Thomas Gleixner331e4062008-02-04 16:48:06 +0100830 return 0;
831
Thomas Gleixner69b14152008-02-13 11:04:50 +0100832 /* Ensure we are PAGE_SIZE aligned */
Shaohua Lid75586a2008-08-21 10:46:06 +0800833 if (!array) {
834 if (*addr & ~PAGE_MASK) {
835 *addr &= PAGE_MASK;
836 /*
837 * People should not be passing in unaligned addresses:
838 */
839 WARN_ON_ONCE(1);
840 }
841 } else {
842 int i;
843 for (i = 0; i < numpages; i++) {
844 if (addr[i] & ~PAGE_MASK) {
845 addr[i] &= PAGE_MASK;
846 WARN_ON_ONCE(1);
847 }
848 }
Thomas Gleixner69b14152008-02-13 11:04:50 +0100849 }
850
Nick Piggin5843d9a2008-08-01 03:15:21 +0200851 /* Must avoid aliasing mappings in the highmem code */
852 kmap_flush_unused();
853
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100854 cpa.vaddr = addr;
855 cpa.numpages = numpages;
856 cpa.mask_set = mask_set;
857 cpa.mask_clr = mask_clr;
Shaohua Lid75586a2008-08-21 10:46:06 +0800858 cpa.flags = 0;
859 cpa.curpage = 0;
Andi Kleenc9caa022008-03-12 03:53:29 +0100860 cpa.force_split = force_split;
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100861
Shaohua Lid75586a2008-08-21 10:46:06 +0800862 if (array)
863 cpa.flags |= CPA_ARRAY;
864
Thomas Gleixneraf96e442008-02-15 21:49:46 +0100865 /* No alias checking for _NX bit modifications */
866 checkalias = (pgprot_val(mask_set) | pgprot_val(mask_clr)) != _PAGE_NX;
867
868 ret = __change_page_attr_set_clr(&cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100869
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100870 /*
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100871 * Check whether we really changed something:
872 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800873 if (!(cpa.flags & CPA_FLUSHTLB))
Shaohua Li1ac2f7d2008-08-04 14:51:24 +0800874 goto out;
Ingo Molnarcacf8902008-08-21 13:46:33 +0200875
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100876 /*
Andi Kleen6bb83832008-02-04 16:48:06 +0100877 * No need to flush, when we did not set any of the caching
878 * attributes:
879 */
880 cache = cache_attr(mask_set);
881
882 /*
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100883 * On success we use clflush, when the CPU supports it to
884 * avoid the wbindv. If the CPU does not support it and in the
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100885 * error case we fall back to cpa_flush_all (which uses
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100886 * wbindv):
887 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800888 if (!ret && cpu_has_clflush) {
889 if (cpa.flags & CPA_ARRAY)
890 cpa_flush_array(addr, numpages, cache);
891 else
892 cpa_flush_range(*addr, numpages, cache);
893 } else
Andi Kleen6bb83832008-02-04 16:48:06 +0100894 cpa_flush_all(cache);
Ingo Molnarcacf8902008-08-21 13:46:33 +0200895
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100896out:
Ingo Molnarcacf8902008-08-21 13:46:33 +0200897 cpa_fill_pool(NULL);
898
Thomas Gleixnerff314522008-01-30 13:34:08 +0100899 return ret;
900}
901
Shaohua Lid75586a2008-08-21 10:46:06 +0800902static inline int change_page_attr_set(unsigned long *addr, int numpages,
903 pgprot_t mask, int array)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100904{
Shaohua Lid75586a2008-08-21 10:46:06 +0800905 return change_page_attr_set_clr(addr, numpages, mask, __pgprot(0), 0,
906 array);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100907}
908
Shaohua Lid75586a2008-08-21 10:46:06 +0800909static inline int change_page_attr_clear(unsigned long *addr, int numpages,
910 pgprot_t mask, int array)
Thomas Gleixner72932c72008-01-30 13:34:08 +0100911{
Shaohua Lid75586a2008-08-21 10:46:06 +0800912 return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask, 0,
913 array);
Thomas Gleixner72932c72008-01-30 13:34:08 +0100914}
915
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700916int _set_memory_uc(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100917{
Suresh Siddhade33c442008-04-25 17:07:22 -0700918 /*
919 * for now UC MINUS. see comments in ioremap_nocache()
920 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800921 return change_page_attr_set(&addr, numpages,
922 __pgprot(_PAGE_CACHE_UC_MINUS), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100923}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700924
925int set_memory_uc(unsigned long addr, int numpages)
926{
Suresh Siddhade33c442008-04-25 17:07:22 -0700927 /*
928 * for now UC MINUS. see comments in ioremap_nocache()
929 */
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700930 if (reserve_memtype(addr, addr + numpages * PAGE_SIZE,
Suresh Siddhade33c442008-04-25 17:07:22 -0700931 _PAGE_CACHE_UC_MINUS, NULL))
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700932 return -EINVAL;
933
934 return _set_memory_uc(addr, numpages);
935}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100936EXPORT_SYMBOL(set_memory_uc);
937
Shaohua Lid75586a2008-08-21 10:46:06 +0800938int set_memory_array_uc(unsigned long *addr, int addrinarray)
939{
940 int i;
941 /*
942 * for now UC MINUS. see comments in ioremap_nocache()
943 */
944 for (i = 0; i < addrinarray; i++) {
945 if (reserve_memtype(addr[i], addr[i] + PAGE_SIZE,
946 _PAGE_CACHE_UC_MINUS, NULL))
947 goto out;
948 }
949
950 return change_page_attr_set(addr, addrinarray,
951 __pgprot(_PAGE_CACHE_UC_MINUS), 1);
952out:
953 while (--i >= 0)
954 free_memtype(addr[i], addr[i] + PAGE_SIZE);
955 return -EINVAL;
956}
957EXPORT_SYMBOL(set_memory_array_uc);
958
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700959int _set_memory_wc(unsigned long addr, int numpages)
960{
Shaohua Lid75586a2008-08-21 10:46:06 +0800961 return change_page_attr_set(&addr, numpages,
962 __pgprot(_PAGE_CACHE_WC), 0);
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700963}
964
965int set_memory_wc(unsigned long addr, int numpages)
966{
Andreas Herrmann499f8f82008-06-10 16:06:21 +0200967 if (!pat_enabled)
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700968 return set_memory_uc(addr, numpages);
969
970 if (reserve_memtype(addr, addr + numpages * PAGE_SIZE,
971 _PAGE_CACHE_WC, NULL))
972 return -EINVAL;
973
974 return _set_memory_wc(addr, numpages);
975}
976EXPORT_SYMBOL(set_memory_wc);
977
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700978int _set_memory_wb(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100979{
Shaohua Lid75586a2008-08-21 10:46:06 +0800980 return change_page_attr_clear(&addr, numpages,
981 __pgprot(_PAGE_CACHE_MASK), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100982}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700983
984int set_memory_wb(unsigned long addr, int numpages)
985{
986 free_memtype(addr, addr + numpages * PAGE_SIZE);
987
988 return _set_memory_wb(addr, numpages);
989}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100990EXPORT_SYMBOL(set_memory_wb);
991
Shaohua Lid75586a2008-08-21 10:46:06 +0800992int set_memory_array_wb(unsigned long *addr, int addrinarray)
993{
994 int i;
995 for (i = 0; i < addrinarray; i++)
996 free_memtype(addr[i], addr[i] + PAGE_SIZE);
997
998 return change_page_attr_clear(addr, addrinarray,
999 __pgprot(_PAGE_CACHE_MASK), 1);
1000}
1001EXPORT_SYMBOL(set_memory_array_wb);
1002
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001003int set_memory_x(unsigned long addr, int numpages)
1004{
Shaohua Lid75586a2008-08-21 10:46:06 +08001005 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_NX), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001006}
1007EXPORT_SYMBOL(set_memory_x);
1008
1009int set_memory_nx(unsigned long addr, int numpages)
1010{
Shaohua Lid75586a2008-08-21 10:46:06 +08001011 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_NX), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001012}
1013EXPORT_SYMBOL(set_memory_nx);
1014
1015int set_memory_ro(unsigned long addr, int numpages)
1016{
Shaohua Lid75586a2008-08-21 10:46:06 +08001017 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_RW), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001018}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001019
1020int set_memory_rw(unsigned long addr, int numpages)
1021{
Shaohua Lid75586a2008-08-21 10:46:06 +08001022 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_RW), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001023}
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001024
1025int set_memory_np(unsigned long addr, int numpages)
1026{
Shaohua Lid75586a2008-08-21 10:46:06 +08001027 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_PRESENT), 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001028}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001029
Andi Kleenc9caa022008-03-12 03:53:29 +01001030int set_memory_4k(unsigned long addr, int numpages)
1031{
Shaohua Lid75586a2008-08-21 10:46:06 +08001032 return change_page_attr_set_clr(&addr, numpages, __pgprot(0),
1033 __pgprot(0), 1, 0);
Andi Kleenc9caa022008-03-12 03:53:29 +01001034}
1035
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001036int set_pages_uc(struct page *page, int numpages)
1037{
1038 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001039
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001040 return set_memory_uc(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001041}
1042EXPORT_SYMBOL(set_pages_uc);
1043
1044int set_pages_wb(struct page *page, int numpages)
1045{
1046 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001047
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001048 return set_memory_wb(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001049}
1050EXPORT_SYMBOL(set_pages_wb);
1051
1052int set_pages_x(struct page *page, int numpages)
1053{
1054 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001055
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001056 return set_memory_x(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001057}
1058EXPORT_SYMBOL(set_pages_x);
1059
1060int set_pages_nx(struct page *page, int numpages)
1061{
1062 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001063
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001064 return set_memory_nx(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001065}
1066EXPORT_SYMBOL(set_pages_nx);
1067
1068int set_pages_ro(struct page *page, int numpages)
1069{
1070 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001071
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001072 return set_memory_ro(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001073}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001074
1075int set_pages_rw(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_rw(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001080}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082#ifdef CONFIG_DEBUG_PAGEALLOC
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001083
1084static int __set_pages_p(struct page *page, int numpages)
1085{
Shaohua Lid75586a2008-08-21 10:46:06 +08001086 unsigned long tempaddr = (unsigned long) page_address(page);
1087 struct cpa_data cpa = { .vaddr = &tempaddr,
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001088 .numpages = numpages,
1089 .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW),
Shaohua Lid75586a2008-08-21 10:46:06 +08001090 .mask_clr = __pgprot(0),
1091 .flags = 0};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001092
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001093 return __change_page_attr_set_clr(&cpa, 1);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001094}
1095
1096static int __set_pages_np(struct page *page, int numpages)
1097{
Shaohua Lid75586a2008-08-21 10:46:06 +08001098 unsigned long tempaddr = (unsigned long) page_address(page);
1099 struct cpa_data cpa = { .vaddr = &tempaddr,
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001100 .numpages = numpages,
1101 .mask_set = __pgprot(0),
Shaohua Lid75586a2008-08-21 10:46:06 +08001102 .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW),
1103 .flags = 0};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001104
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001105 return __change_page_attr_set_clr(&cpa, 1);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001106}
1107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108void kernel_map_pages(struct page *page, int numpages, int enable)
1109{
1110 if (PageHighMem(page))
1111 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001112 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -07001113 debug_check_no_locks_freed(page_address(page),
1114 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001115 }
Ingo Molnarde5097c2006-01-09 15:59:21 -08001116
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001117 /*
Ingo Molnar12d6f212008-01-30 13:33:58 +01001118 * If page allocator is not up yet then do not call c_p_a():
1119 */
1120 if (!debug_pagealloc_enabled)
1121 return;
1122
1123 /*
Ingo Molnarf8d84062008-02-13 14:09:53 +01001124 * The return value is ignored as the calls cannot fail.
1125 * Large pages are kept enabled at boot time, and are
1126 * split up quickly with DEBUG_PAGEALLOC. If a splitup
1127 * fails here (due to temporary memory shortage) no damage
1128 * is done because we just keep the largepage intact up
1129 * to the next attempt when it will likely be split up:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 */
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001131 if (enable)
1132 __set_pages_p(page, numpages);
1133 else
1134 __set_pages_np(page, numpages);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001135
1136 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +01001137 * We should perform an IPI and flush all tlbs,
1138 * but that can deadlock->flush only current cpu:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 */
1140 __flush_tlb_all();
Thomas Gleixner76ebd052008-02-09 23:24:09 +01001141
1142 /*
1143 * Try to refill the page pool here. We can do this only after
1144 * the tlb flush.
1145 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +01001146 cpa_fill_pool(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147}
Rafael J. Wysocki8a235ef2008-02-20 01:47:44 +01001148
Thomas Gleixneree7ae7a2008-04-17 17:40:45 +02001149#ifdef CONFIG_DEBUG_FS
1150static int dpa_show(struct seq_file *m, void *v)
1151{
1152 seq_puts(m, "DEBUG_PAGEALLOC\n");
1153 seq_printf(m, "pool_size : %lu\n", pool_size);
1154 seq_printf(m, "pool_pages : %lu\n", pool_pages);
1155 seq_printf(m, "pool_low : %lu\n", pool_low);
1156 seq_printf(m, "pool_used : %lu\n", pool_used);
1157 seq_printf(m, "pool_failed : %lu\n", pool_failed);
1158
1159 return 0;
1160}
1161
1162static int dpa_open(struct inode *inode, struct file *filp)
1163{
1164 return single_open(filp, dpa_show, NULL);
1165}
1166
1167static const struct file_operations dpa_fops = {
1168 .open = dpa_open,
1169 .read = seq_read,
1170 .llseek = seq_lseek,
1171 .release = single_release,
1172};
1173
Ingo Molnara4928cf2008-04-23 13:20:56 +02001174static int __init debug_pagealloc_proc_init(void)
Thomas Gleixneree7ae7a2008-04-17 17:40:45 +02001175{
1176 struct dentry *de;
1177
1178 de = debugfs_create_file("debug_pagealloc", 0600, NULL, NULL,
1179 &dpa_fops);
1180 if (!de)
1181 return -ENOMEM;
1182
1183 return 0;
1184}
1185__initcall(debug_pagealloc_proc_init);
1186#endif
1187
Rafael J. Wysocki8a235ef2008-02-20 01:47:44 +01001188#ifdef CONFIG_HIBERNATION
1189
1190bool kernel_page_present(struct page *page)
1191{
1192 unsigned int level;
1193 pte_t *pte;
1194
1195 if (PageHighMem(page))
1196 return false;
1197
1198 pte = lookup_address((unsigned long)page_address(page), &level);
1199 return (pte_val(*pte) & _PAGE_PRESENT);
1200}
1201
1202#endif /* CONFIG_HIBERNATION */
1203
1204#endif /* CONFIG_DEBUG_PAGEALLOC */
Arjan van de Vend1028a12008-01-30 13:34:07 +01001205
1206/*
1207 * The testcases use internal knowledge of the implementation that shouldn't
1208 * be exposed to the rest of the kernel. Include these directly here.
1209 */
1210#ifdef CONFIG_CPA_DEBUG
1211#include "pageattr-test.c"
1212#endif