blob: f5e8663c0f753ab04f7a4db9da02393c1411ab24 [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
Ingo Molnar7afe15b2008-01-30 13:33:57 +0100450static int split_large_page(pte_t *kpte, unsigned long address)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100451{
Thomas Gleixner7b610ee2008-02-04 16:48:10 +0100452 unsigned long flags, pfn, pfninc = 1;
Ingo Molnar86f03982008-01-30 13:34:09 +0100453 unsigned int i, level;
Ingo Molnar9df84992008-02-04 16:48:09 +0100454 pte_t *pbase, *tmp;
455 pgprot_t ref_prot;
Suresh Siddha8311eb82008-09-23 14:00:41 -0700456 struct page *base = alloc_pages(GFP_KERNEL, 0);
457 if (!base)
458 return -ENOMEM;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100459
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100460 spin_lock_irqsave(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100461 /*
462 * Check for races, another CPU might have split this page
463 * up for us already:
464 */
465 tmp = lookup_address(address, &level);
Ingo Molnar6ce9fc12008-02-04 16:48:08 +0100466 if (tmp != kpte)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100467 goto out_unlock;
468
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100469 pbase = (pte_t *)page_address(base);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700470 paravirt_alloc_pte(&init_mm, page_to_pfn(base));
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100471 ref_prot = pte_pgprot(pte_clrhuge(*kpte));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100472
Andi Kleenf07333f2008-02-04 16:48:09 +0100473#ifdef CONFIG_X86_64
474 if (level == PG_LEVEL_1G) {
475 pfninc = PMD_PAGE_SIZE >> PAGE_SHIFT;
476 pgprot_val(ref_prot) |= _PAGE_PSE;
Andi Kleenf07333f2008-02-04 16:48:09 +0100477 }
478#endif
479
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100480 /*
481 * Get the target pfn from the original entry:
482 */
483 pfn = pte_pfn(*kpte);
Andi Kleenf07333f2008-02-04 16:48:09 +0100484 for (i = 0; i < PTRS_PER_PTE; i++, pfn += pfninc)
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100485 set_pte(&pbase[i], pfn_pte(pfn, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100486
Andi Kleence0c0e52008-05-02 11:46:49 +0200487 if (address >= (unsigned long)__va(0) &&
Yinghai Luf361a452008-07-10 20:38:26 -0700488 address < (unsigned long)__va(max_low_pfn_mapped << PAGE_SHIFT))
489 split_page_count(level);
490
491#ifdef CONFIG_X86_64
492 if (address >= (unsigned long)__va(1UL<<32) &&
Thomas Gleixner65280e62008-05-05 16:35:21 +0200493 address < (unsigned long)__va(max_pfn_mapped << PAGE_SHIFT))
494 split_page_count(level);
Yinghai Luf361a452008-07-10 20:38:26 -0700495#endif
Andi Kleence0c0e52008-05-02 11:46:49 +0200496
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100497 /*
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100498 * Install the new, split up pagetable. Important details here:
Huang, Ying4c881ca2008-01-30 13:34:04 +0100499 *
500 * On Intel the NX bit of all levels must be cleared to make a
501 * page executable. See section 4.13.2 of Intel 64 and IA-32
502 * Architectures Software Developer's Manual).
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100503 *
504 * Mark the entry present. The current mapping might be
505 * set to not present, which we preserved above.
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100506 */
Huang, Ying4c881ca2008-01-30 13:34:04 +0100507 ref_prot = pte_pgprot(pte_mkexec(pte_clrhuge(*kpte)));
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100508 pgprot_val(ref_prot) |= _PAGE_PRESENT;
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100509 __set_pmd_pte(kpte, address, mk_pte(base, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100510 base = NULL;
511
512out_unlock:
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100513 /*
514 * If we dropped out via the lookup_address check under
515 * pgd_lock then stick the page back into the pool:
516 */
Suresh Siddha8311eb82008-09-23 14:00:41 -0700517 if (base)
518 __free_page(base);
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100519 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100520
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100521 return 0;
522}
523
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100524static int __change_page_attr(struct cpa_data *cpa, int primary)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100525{
Shaohua Lid75586a2008-08-21 10:46:06 +0800526 unsigned long address;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100527 int do_split, err;
528 unsigned int level;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100529 pte_t *kpte, old_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Shaohua Lid75586a2008-08-21 10:46:06 +0800531 if (cpa->flags & CPA_ARRAY)
532 address = cpa->vaddr[cpa->curpage];
533 else
534 address = *cpa->vaddr;
535
Ingo Molnar97f99fe2008-01-30 13:33:55 +0100536repeat:
Ingo Molnarf0646e42008-01-30 13:33:43 +0100537 kpte = lookup_address(address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (!kpte)
Ingo Molnard1a4be62008-04-18 21:32:22 +0200539 return 0;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100540
541 old_pte = *kpte;
542 if (!pte_val(old_pte)) {
543 if (!primary)
544 return 0;
Arjan van de Ven875e40b2008-07-30 12:26:26 -0700545 WARN(1, KERN_WARNING "CPA: called for zero pte. "
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100546 "vaddr = %lx cpa->vaddr = %lx\n", address,
Shaohua Lid75586a2008-08-21 10:46:06 +0800547 *cpa->vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return -EINVAL;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100549 }
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100550
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100551 if (level == PG_LEVEL_4K) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100552 pte_t new_pte;
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100553 pgprot_t new_prot = pte_pgprot(old_pte);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100554 unsigned long pfn = pte_pfn(old_pte);
Thomas Gleixnera72a08a2008-01-30 13:34:07 +0100555
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100556 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
557 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Ingo Molnar86f03982008-01-30 13:34:09 +0100558
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100559 new_prot = static_protections(new_prot, address, pfn);
Ingo Molnar86f03982008-01-30 13:34:09 +0100560
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100561 /*
562 * We need to keep the pfn from the existing PTE,
563 * after all we're only going to change it's attributes
564 * not the memory it points to
565 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100566 new_pte = pfn_pte(pfn, canon_pgprot(new_prot));
567 cpa->pfn = pfn;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100568 /*
569 * Do we really change anything ?
570 */
571 if (pte_val(old_pte) != pte_val(new_pte)) {
572 set_pte_atomic(kpte, new_pte);
Shaohua Lid75586a2008-08-21 10:46:06 +0800573 cpa->flags |= CPA_FLUSHTLB;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100574 }
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100575 cpa->numpages = 1;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100576 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100578
579 /*
580 * Check, whether we can keep the large page intact
581 * and just change the pte:
582 */
Ingo Molnarbeaff632008-02-04 16:48:09 +0100583 do_split = try_preserve_large_page(kpte, address, cpa);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100584 /*
585 * When the range fits into the existing large page,
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100586 * return. cp->numpages and cpa->tlbflush have been updated in
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100587 * try_large_page:
588 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100589 if (do_split <= 0)
590 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100591
592 /*
593 * We have to split the large page:
594 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100595 err = split_large_page(kpte, address);
596 if (!err) {
Shaohua Lid75586a2008-08-21 10:46:06 +0800597 cpa->flags |= CPA_FLUSHTLB;
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100598 goto repeat;
599 }
Ingo Molnarbeaff632008-02-04 16:48:09 +0100600
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100601 return err;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100602}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100604static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias);
605
606static int cpa_process_alias(struct cpa_data *cpa)
Ingo Molnar44af6c42008-01-30 13:34:03 +0100607{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100608 struct cpa_data alias_cpa;
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100609 int ret = 0;
Shaohua Lid75586a2008-08-21 10:46:06 +0800610 unsigned long temp_cpa_vaddr, vaddr;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100611
Yinghai Lu965194c2008-07-12 14:31:28 -0700612 if (cpa->pfn >= max_pfn_mapped)
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100613 return 0;
614
Yinghai Luf361a452008-07-10 20:38:26 -0700615#ifdef CONFIG_X86_64
Yinghai Lu965194c2008-07-12 14:31:28 -0700616 if (cpa->pfn >= max_low_pfn_mapped && cpa->pfn < (1UL<<(32-PAGE_SHIFT)))
Yinghai Luf361a452008-07-10 20:38:26 -0700617 return 0;
618#endif
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100619 /*
620 * No need to redo, when the primary call touched the direct
621 * mapping already:
622 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800623 if (cpa->flags & CPA_ARRAY)
624 vaddr = cpa->vaddr[cpa->curpage];
625 else
626 vaddr = *cpa->vaddr;
627
628 if (!(within(vaddr, PAGE_OFFSET,
Yinghai Luf361a452008-07-10 20:38:26 -0700629 PAGE_OFFSET + (max_low_pfn_mapped << PAGE_SHIFT))
630#ifdef CONFIG_X86_64
Shaohua Lid75586a2008-08-21 10:46:06 +0800631 || within(vaddr, PAGE_OFFSET + (1UL<<32),
Yinghai Luf361a452008-07-10 20:38:26 -0700632 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT))
633#endif
634 )) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100635
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100636 alias_cpa = *cpa;
Shaohua Lid75586a2008-08-21 10:46:06 +0800637 temp_cpa_vaddr = (unsigned long) __va(cpa->pfn << PAGE_SHIFT);
638 alias_cpa.vaddr = &temp_cpa_vaddr;
639 alias_cpa.flags &= ~CPA_ARRAY;
640
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100641
642 ret = __change_page_attr_set_clr(&alias_cpa, 0);
643 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100644
Arjan van de Ven488fd992008-01-30 13:34:07 +0100645#ifdef CONFIG_X86_64
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100646 if (ret)
647 return ret;
Thomas Gleixner08797502008-01-30 13:34:09 +0100648 /*
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100649 * No need to redo, when the primary call touched the high
650 * mapping already:
651 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800652 if (within(vaddr, (unsigned long) _text, (unsigned long) _end))
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100653 return 0;
654
655 /*
Thomas Gleixner08797502008-01-30 13:34:09 +0100656 * If the physical address is inside the kernel map, we need
657 * to touch the high mapped kernel as well:
658 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100659 if (!within(cpa->pfn, highmap_start_pfn(), highmap_end_pfn()))
660 return 0;
Thomas Gleixner08797502008-01-30 13:34:09 +0100661
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100662 alias_cpa = *cpa;
Shaohua Lid75586a2008-08-21 10:46:06 +0800663 temp_cpa_vaddr = (cpa->pfn << PAGE_SHIFT) + __START_KERNEL_map - phys_base;
664 alias_cpa.vaddr = &temp_cpa_vaddr;
665 alias_cpa.flags &= ~CPA_ARRAY;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100666
667 /*
668 * The high mapping range is imprecise, so ignore the return value.
669 */
670 __change_page_attr_set_clr(&alias_cpa, 0);
Thomas Gleixner08797502008-01-30 13:34:09 +0100671#endif
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100672 return ret;
Ingo Molnar44af6c42008-01-30 13:34:03 +0100673}
674
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100675static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100676{
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100677 int ret, numpages = cpa->numpages;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100678
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100679 while (numpages) {
680 /*
681 * Store the remaining nr of pages for the large page
682 * preservation check.
683 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100684 cpa->numpages = numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +0800685 /* for array changes, we can't use large page */
686 if (cpa->flags & CPA_ARRAY)
687 cpa->numpages = 1;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100688
689 ret = __change_page_attr(cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100690 if (ret)
691 return ret;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100692
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100693 if (checkalias) {
694 ret = cpa_process_alias(cpa);
695 if (ret)
696 return ret;
697 }
698
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100699 /*
700 * Adjust the number of pages with the result of the
701 * CPA operation. Either a large page has been
702 * preserved or a single page update happened.
703 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100704 BUG_ON(cpa->numpages > numpages);
705 numpages -= cpa->numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +0800706 if (cpa->flags & CPA_ARRAY)
707 cpa->curpage++;
708 else
709 *cpa->vaddr += cpa->numpages * PAGE_SIZE;
710
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100711 }
Thomas Gleixnerff314522008-01-30 13:34:08 +0100712 return 0;
713}
714
Andi Kleen6bb83832008-02-04 16:48:06 +0100715static inline int cache_attr(pgprot_t attr)
716{
717 return pgprot_val(attr) &
718 (_PAGE_PAT | _PAGE_PAT_LARGE | _PAGE_PWT | _PAGE_PCD);
719}
720
Shaohua Lid75586a2008-08-21 10:46:06 +0800721static int change_page_attr_set_clr(unsigned long *addr, int numpages,
Andi Kleenc9caa022008-03-12 03:53:29 +0100722 pgprot_t mask_set, pgprot_t mask_clr,
Shaohua Lid75586a2008-08-21 10:46:06 +0800723 int force_split, int array)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100724{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100725 struct cpa_data cpa;
Ingo Molnarcacf8902008-08-21 13:46:33 +0200726 int ret, cache, checkalias;
Thomas Gleixner331e4062008-02-04 16:48:06 +0100727
728 /*
729 * Check, if we are requested to change a not supported
730 * feature:
731 */
732 mask_set = canon_pgprot(mask_set);
733 mask_clr = canon_pgprot(mask_clr);
Andi Kleenc9caa022008-03-12 03:53:29 +0100734 if (!pgprot_val(mask_set) && !pgprot_val(mask_clr) && !force_split)
Thomas Gleixner331e4062008-02-04 16:48:06 +0100735 return 0;
736
Thomas Gleixner69b14152008-02-13 11:04:50 +0100737 /* Ensure we are PAGE_SIZE aligned */
Shaohua Lid75586a2008-08-21 10:46:06 +0800738 if (!array) {
739 if (*addr & ~PAGE_MASK) {
740 *addr &= PAGE_MASK;
741 /*
742 * People should not be passing in unaligned addresses:
743 */
744 WARN_ON_ONCE(1);
745 }
746 } else {
747 int i;
748 for (i = 0; i < numpages; i++) {
749 if (addr[i] & ~PAGE_MASK) {
750 addr[i] &= PAGE_MASK;
751 WARN_ON_ONCE(1);
752 }
753 }
Thomas Gleixner69b14152008-02-13 11:04:50 +0100754 }
755
Nick Piggin5843d9a2008-08-01 03:15:21 +0200756 /* Must avoid aliasing mappings in the highmem code */
757 kmap_flush_unused();
758
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100759 cpa.vaddr = addr;
760 cpa.numpages = numpages;
761 cpa.mask_set = mask_set;
762 cpa.mask_clr = mask_clr;
Shaohua Lid75586a2008-08-21 10:46:06 +0800763 cpa.flags = 0;
764 cpa.curpage = 0;
Andi Kleenc9caa022008-03-12 03:53:29 +0100765 cpa.force_split = force_split;
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100766
Shaohua Lid75586a2008-08-21 10:46:06 +0800767 if (array)
768 cpa.flags |= CPA_ARRAY;
769
Thomas Gleixneraf96e442008-02-15 21:49:46 +0100770 /* No alias checking for _NX bit modifications */
771 checkalias = (pgprot_val(mask_set) | pgprot_val(mask_clr)) != _PAGE_NX;
772
773 ret = __change_page_attr_set_clr(&cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100774
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100775 /*
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100776 * Check whether we really changed something:
777 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800778 if (!(cpa.flags & CPA_FLUSHTLB))
Shaohua Li1ac2f7d2008-08-04 14:51:24 +0800779 goto out;
Ingo Molnarcacf8902008-08-21 13:46:33 +0200780
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100781 /*
Andi Kleen6bb83832008-02-04 16:48:06 +0100782 * No need to flush, when we did not set any of the caching
783 * attributes:
784 */
785 cache = cache_attr(mask_set);
786
787 /*
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100788 * On success we use clflush, when the CPU supports it to
789 * avoid the wbindv. If the CPU does not support it and in the
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100790 * error case we fall back to cpa_flush_all (which uses
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100791 * wbindv):
792 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800793 if (!ret && cpu_has_clflush) {
794 if (cpa.flags & CPA_ARRAY)
795 cpa_flush_array(addr, numpages, cache);
796 else
797 cpa_flush_range(*addr, numpages, cache);
798 } else
Andi Kleen6bb83832008-02-04 16:48:06 +0100799 cpa_flush_all(cache);
Ingo Molnarcacf8902008-08-21 13:46:33 +0200800
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100801out:
Thomas Gleixnerff314522008-01-30 13:34:08 +0100802 return ret;
803}
804
Shaohua Lid75586a2008-08-21 10:46:06 +0800805static inline int change_page_attr_set(unsigned long *addr, int numpages,
806 pgprot_t mask, int array)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100807{
Shaohua Lid75586a2008-08-21 10:46:06 +0800808 return change_page_attr_set_clr(addr, numpages, mask, __pgprot(0), 0,
809 array);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100810}
811
Shaohua Lid75586a2008-08-21 10:46:06 +0800812static inline int change_page_attr_clear(unsigned long *addr, int numpages,
813 pgprot_t mask, int array)
Thomas Gleixner72932c72008-01-30 13:34:08 +0100814{
Shaohua Lid75586a2008-08-21 10:46:06 +0800815 return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask, 0,
816 array);
Thomas Gleixner72932c72008-01-30 13:34:08 +0100817}
818
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700819int _set_memory_uc(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100820{
Suresh Siddhade33c442008-04-25 17:07:22 -0700821 /*
822 * for now UC MINUS. see comments in ioremap_nocache()
823 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800824 return change_page_attr_set(&addr, numpages,
825 __pgprot(_PAGE_CACHE_UC_MINUS), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100826}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700827
828int set_memory_uc(unsigned long addr, int numpages)
829{
Suresh Siddhade33c442008-04-25 17:07:22 -0700830 /*
831 * for now UC MINUS. see comments in ioremap_nocache()
832 */
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -0700833 if (reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
Suresh Siddhade33c442008-04-25 17:07:22 -0700834 _PAGE_CACHE_UC_MINUS, NULL))
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700835 return -EINVAL;
836
837 return _set_memory_uc(addr, numpages);
838}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100839EXPORT_SYMBOL(set_memory_uc);
840
Shaohua Lid75586a2008-08-21 10:46:06 +0800841int set_memory_array_uc(unsigned long *addr, int addrinarray)
842{
Rene Hermanc5e147c2008-08-22 01:02:20 +0200843 unsigned long start;
844 unsigned long end;
Shaohua Lid75586a2008-08-21 10:46:06 +0800845 int i;
846 /*
847 * for now UC MINUS. see comments in ioremap_nocache()
848 */
849 for (i = 0; i < addrinarray; i++) {
Rene Hermanc5e147c2008-08-22 01:02:20 +0200850 start = __pa(addr[i]);
851 for (end = start + PAGE_SIZE; i < addrinarray - 1; end += PAGE_SIZE) {
852 if (end != __pa(addr[i + 1]))
853 break;
854 i++;
855 }
856 if (reserve_memtype(start, end, _PAGE_CACHE_UC_MINUS, NULL))
Shaohua Lid75586a2008-08-21 10:46:06 +0800857 goto out;
858 }
859
860 return change_page_attr_set(addr, addrinarray,
861 __pgprot(_PAGE_CACHE_UC_MINUS), 1);
862out:
Rene Hermanc5e147c2008-08-22 01:02:20 +0200863 for (i = 0; i < addrinarray; i++) {
864 unsigned long tmp = __pa(addr[i]);
865
866 if (tmp == start)
867 break;
Venki Pallipadi01de05a2008-08-22 12:08:17 -0700868 for (end = tmp + PAGE_SIZE; i < addrinarray - 1; end += PAGE_SIZE) {
Rene Hermanc5e147c2008-08-22 01:02:20 +0200869 if (end != __pa(addr[i + 1]))
870 break;
871 i++;
872 }
873 free_memtype(tmp, end);
874 }
Shaohua Lid75586a2008-08-21 10:46:06 +0800875 return -EINVAL;
876}
877EXPORT_SYMBOL(set_memory_array_uc);
878
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700879int _set_memory_wc(unsigned long addr, int numpages)
880{
Shaohua Lid75586a2008-08-21 10:46:06 +0800881 return change_page_attr_set(&addr, numpages,
882 __pgprot(_PAGE_CACHE_WC), 0);
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700883}
884
885int set_memory_wc(unsigned long addr, int numpages)
886{
Andreas Herrmann499f8f82008-06-10 16:06:21 +0200887 if (!pat_enabled)
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700888 return set_memory_uc(addr, numpages);
889
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -0700890 if (reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700891 _PAGE_CACHE_WC, NULL))
892 return -EINVAL;
893
894 return _set_memory_wc(addr, numpages);
895}
896EXPORT_SYMBOL(set_memory_wc);
897
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700898int _set_memory_wb(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100899{
Shaohua Lid75586a2008-08-21 10:46:06 +0800900 return change_page_attr_clear(&addr, numpages,
901 __pgprot(_PAGE_CACHE_MASK), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100902}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700903
904int set_memory_wb(unsigned long addr, int numpages)
905{
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -0700906 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700907
908 return _set_memory_wb(addr, numpages);
909}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100910EXPORT_SYMBOL(set_memory_wb);
911
Shaohua Lid75586a2008-08-21 10:46:06 +0800912int set_memory_array_wb(unsigned long *addr, int addrinarray)
913{
914 int i;
Shaohua Lid75586a2008-08-21 10:46:06 +0800915
Rene Hermanc5e147c2008-08-22 01:02:20 +0200916 for (i = 0; i < addrinarray; i++) {
917 unsigned long start = __pa(addr[i]);
918 unsigned long end;
919
920 for (end = start + PAGE_SIZE; i < addrinarray - 1; end += PAGE_SIZE) {
921 if (end != __pa(addr[i + 1]))
922 break;
923 i++;
924 }
925 free_memtype(start, end);
926 }
Shaohua Lid75586a2008-08-21 10:46:06 +0800927 return change_page_attr_clear(addr, addrinarray,
928 __pgprot(_PAGE_CACHE_MASK), 1);
929}
930EXPORT_SYMBOL(set_memory_array_wb);
931
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100932int set_memory_x(unsigned long addr, int numpages)
933{
Shaohua Lid75586a2008-08-21 10:46:06 +0800934 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_NX), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100935}
936EXPORT_SYMBOL(set_memory_x);
937
938int set_memory_nx(unsigned long addr, int numpages)
939{
Shaohua Lid75586a2008-08-21 10:46:06 +0800940 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_NX), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100941}
942EXPORT_SYMBOL(set_memory_nx);
943
944int set_memory_ro(unsigned long addr, int numpages)
945{
Shaohua Lid75586a2008-08-21 10:46:06 +0800946 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_RW), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100947}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100948
949int set_memory_rw(unsigned long addr, int numpages)
950{
Shaohua Lid75586a2008-08-21 10:46:06 +0800951 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_RW), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100952}
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100953
954int set_memory_np(unsigned long addr, int numpages)
955{
Shaohua Lid75586a2008-08-21 10:46:06 +0800956 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_PRESENT), 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100957}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100958
Andi Kleenc9caa022008-03-12 03:53:29 +0100959int set_memory_4k(unsigned long addr, int numpages)
960{
Shaohua Lid75586a2008-08-21 10:46:06 +0800961 return change_page_attr_set_clr(&addr, numpages, __pgprot(0),
962 __pgprot(0), 1, 0);
Andi Kleenc9caa022008-03-12 03:53:29 +0100963}
964
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100965int set_pages_uc(struct page *page, int numpages)
966{
967 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100968
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100969 return set_memory_uc(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100970}
971EXPORT_SYMBOL(set_pages_uc);
972
973int set_pages_wb(struct page *page, int numpages)
974{
975 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100976
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100977 return set_memory_wb(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100978}
979EXPORT_SYMBOL(set_pages_wb);
980
981int set_pages_x(struct page *page, int numpages)
982{
983 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100984
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100985 return set_memory_x(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100986}
987EXPORT_SYMBOL(set_pages_x);
988
989int set_pages_nx(struct page *page, int numpages)
990{
991 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100992
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100993 return set_memory_nx(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100994}
995EXPORT_SYMBOL(set_pages_nx);
996
997int set_pages_ro(struct page *page, int numpages)
998{
999 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001000
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001001 return set_memory_ro(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001002}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001003
1004int set_pages_rw(struct page *page, int numpages)
1005{
1006 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001007
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001008 return set_memory_rw(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001009}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011#ifdef CONFIG_DEBUG_PAGEALLOC
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001012
1013static int __set_pages_p(struct page *page, int numpages)
1014{
Shaohua Lid75586a2008-08-21 10:46:06 +08001015 unsigned long tempaddr = (unsigned long) page_address(page);
1016 struct cpa_data cpa = { .vaddr = &tempaddr,
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001017 .numpages = numpages,
1018 .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW),
Shaohua Lid75586a2008-08-21 10:46:06 +08001019 .mask_clr = __pgprot(0),
1020 .flags = 0};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001021
Suresh Siddha55121b42008-09-23 14:00:40 -07001022 /*
1023 * No alias checking needed for setting present flag. otherwise,
1024 * we may need to break large pages for 64-bit kernel text
1025 * mappings (this adds to complexity if we want to do this from
1026 * atomic context especially). Let's keep it simple!
1027 */
1028 return __change_page_attr_set_clr(&cpa, 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001029}
1030
1031static int __set_pages_np(struct page *page, int numpages)
1032{
Shaohua Lid75586a2008-08-21 10:46:06 +08001033 unsigned long tempaddr = (unsigned long) page_address(page);
1034 struct cpa_data cpa = { .vaddr = &tempaddr,
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001035 .numpages = numpages,
1036 .mask_set = __pgprot(0),
Shaohua Lid75586a2008-08-21 10:46:06 +08001037 .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW),
1038 .flags = 0};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001039
Suresh Siddha55121b42008-09-23 14:00:40 -07001040 /*
1041 * No alias checking needed for setting not present flag. otherwise,
1042 * we may need to break large pages for 64-bit kernel text
1043 * mappings (this adds to complexity if we want to do this from
1044 * atomic context especially). Let's keep it simple!
1045 */
1046 return __change_page_attr_set_clr(&cpa, 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001047}
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049void kernel_map_pages(struct page *page, int numpages, int enable)
1050{
1051 if (PageHighMem(page))
1052 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001053 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -07001054 debug_check_no_locks_freed(page_address(page),
1055 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001056 }
Ingo Molnarde5097c2006-01-09 15:59:21 -08001057
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001058 /*
Ingo Molnar12d6f212008-01-30 13:33:58 +01001059 * If page allocator is not up yet then do not call c_p_a():
1060 */
1061 if (!debug_pagealloc_enabled)
1062 return;
1063
1064 /*
Ingo Molnarf8d84062008-02-13 14:09:53 +01001065 * The return value is ignored as the calls cannot fail.
Suresh Siddha55121b42008-09-23 14:00:40 -07001066 * Large pages for identity mappings are not used at boot time
1067 * and hence no memory allocations during large page split.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 */
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001069 if (enable)
1070 __set_pages_p(page, numpages);
1071 else
1072 __set_pages_np(page, numpages);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001073
1074 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +01001075 * We should perform an IPI and flush all tlbs,
1076 * but that can deadlock->flush only current cpu:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 */
1078 __flush_tlb_all();
1079}
Rafael J. Wysocki8a235ef2008-02-20 01:47:44 +01001080
1081#ifdef CONFIG_HIBERNATION
1082
1083bool kernel_page_present(struct page *page)
1084{
1085 unsigned int level;
1086 pte_t *pte;
1087
1088 if (PageHighMem(page))
1089 return false;
1090
1091 pte = lookup_address((unsigned long)page_address(page), &level);
1092 return (pte_val(*pte) & _PAGE_PRESENT);
1093}
1094
1095#endif /* CONFIG_HIBERNATION */
1096
1097#endif /* CONFIG_DEBUG_PAGEALLOC */
Arjan van de Vend1028a12008-01-30 13:34:07 +01001098
1099/*
1100 * The testcases use internal knowledge of the implementation that shouldn't
1101 * be exposed to the rest of the kernel. Include these directly here.
1102 */
1103#ifdef CONFIG_CPA_DEBUG
1104#include "pageattr-test.c"
1105#endif