blob: b6374d653d06d01a5bfe347f8f502aeee95b7e44 [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
Suresh Siddhaad5ca552008-09-23 14:00:42 -070038/*
39 * Serialize cpa() (for !DEBUG_PAGEALLOC which uses large identity mappings)
40 * using cpa_lock. So that we don't allow any other cpu, with stale large tlb
41 * entries change the page attribute in parallel to some other cpu
42 * splitting a large page entry along with changing the attribute.
43 */
44static DEFINE_SPINLOCK(cpa_lock);
45
Shaohua Lid75586a2008-08-21 10:46:06 +080046#define CPA_FLUSHTLB 1
47#define CPA_ARRAY 2
48
Thomas Gleixner65280e62008-05-05 16:35:21 +020049#ifdef CONFIG_PROC_FS
Andi Kleence0c0e52008-05-02 11:46:49 +020050static unsigned long direct_pages_count[PG_LEVEL_NUM];
51
Thomas Gleixner65280e62008-05-05 16:35:21 +020052void update_page_count(int level, unsigned long pages)
Andi Kleence0c0e52008-05-02 11:46:49 +020053{
Andi Kleence0c0e52008-05-02 11:46:49 +020054 unsigned long flags;
Thomas Gleixner65280e62008-05-05 16:35:21 +020055
Andi Kleence0c0e52008-05-02 11:46:49 +020056 /* Protect against CPA */
57 spin_lock_irqsave(&pgd_lock, flags);
58 direct_pages_count[level] += pages;
59 spin_unlock_irqrestore(&pgd_lock, flags);
Andi Kleence0c0e52008-05-02 11:46:49 +020060}
61
Thomas Gleixner65280e62008-05-05 16:35:21 +020062static void split_page_count(int level)
63{
64 direct_pages_count[level]--;
65 direct_pages_count[level - 1] += PTRS_PER_PTE;
66}
67
68int arch_report_meminfo(char *page)
69{
Hugh Dickinsa06de632008-08-15 13:58:32 +010070 int n = sprintf(page, "DirectMap4k: %8lu kB\n",
71 direct_pages_count[PG_LEVEL_4K] << 2);
72#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
73 n += sprintf(page + n, "DirectMap2M: %8lu kB\n",
74 direct_pages_count[PG_LEVEL_2M] << 11);
75#else
76 n += sprintf(page + n, "DirectMap4M: %8lu kB\n",
77 direct_pages_count[PG_LEVEL_2M] << 12);
78#endif
Thomas Gleixner65280e62008-05-05 16:35:21 +020079#ifdef CONFIG_X86_64
Hugh Dickinsa06de632008-08-15 13:58:32 +010080 if (direct_gbpages)
81 n += sprintf(page + n, "DirectMap1G: %8lu kB\n",
82 direct_pages_count[PG_LEVEL_1G] << 20);
Thomas Gleixner65280e62008-05-05 16:35:21 +020083#endif
84 return n;
85}
86#else
87static inline void split_page_count(int level) { }
88#endif
89
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010090#ifdef CONFIG_X86_64
91
92static inline unsigned long highmap_start_pfn(void)
93{
94 return __pa(_text) >> PAGE_SHIFT;
95}
96
97static inline unsigned long highmap_end_pfn(void)
98{
99 return __pa(round_up((unsigned long)_end, PMD_SIZE)) >> PAGE_SHIFT;
100}
101
102#endif
103
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100104#ifdef CONFIG_DEBUG_PAGEALLOC
105# define debug_pagealloc 1
106#else
107# define debug_pagealloc 0
108#endif
109
Arjan van de Vened724be2008-01-30 13:34:04 +0100110static inline int
111within(unsigned long addr, unsigned long start, unsigned long end)
Ingo Molnar687c4822008-01-30 13:34:04 +0100112{
Arjan van de Vened724be2008-01-30 13:34:04 +0100113 return addr >= start && addr < end;
114}
115
116/*
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100117 * Flushing functions
118 */
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100119
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100120/**
121 * clflush_cache_range - flush a cache range with clflush
122 * @addr: virtual start address
123 * @size: number of bytes to flush
124 *
125 * clflush is an unordered instruction which needs fencing with mfence
126 * to avoid ordering issues.
127 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100128void clflush_cache_range(void *vaddr, unsigned int size)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100129{
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100130 void *vend = vaddr + size - 1;
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100131
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100132 mb();
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100133
134 for (; vaddr < vend; vaddr += boot_cpu_data.x86_clflush_size)
135 clflush(vaddr);
136 /*
137 * Flush any possible final partial cacheline:
138 */
139 clflush(vend);
140
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100141 mb();
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100142}
143
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100144static void __cpa_flush_all(void *arg)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100145{
Andi Kleen6bb83832008-02-04 16:48:06 +0100146 unsigned long cache = (unsigned long)arg;
147
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100148 /*
149 * Flush all to work around Errata in early athlons regarding
150 * large page flushing.
151 */
152 __flush_tlb_all();
153
Andi Kleen6bb83832008-02-04 16:48:06 +0100154 if (cache && boot_cpu_data.x86_model >= 4)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100155 wbinvd();
156}
157
Andi Kleen6bb83832008-02-04 16:48:06 +0100158static void cpa_flush_all(unsigned long cache)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100159{
160 BUG_ON(irqs_disabled());
161
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200162 on_each_cpu(__cpa_flush_all, (void *) cache, 1);
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100163}
164
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100165static void __cpa_flush_range(void *arg)
166{
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100167 /*
168 * We could optimize that further and do individual per page
169 * tlb invalidates for a low number of pages. Caveat: we must
170 * flush the high aliases on 64bit as well.
171 */
172 __flush_tlb_all();
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100173}
174
Andi Kleen6bb83832008-02-04 16:48:06 +0100175static void cpa_flush_range(unsigned long start, int numpages, int cache)
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100176{
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100177 unsigned int i, level;
178 unsigned long addr;
179
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100180 BUG_ON(irqs_disabled());
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100181 WARN_ON(PAGE_ALIGN(start) != start);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100182
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200183 on_each_cpu(__cpa_flush_range, NULL, 1);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100184
Andi Kleen6bb83832008-02-04 16:48:06 +0100185 if (!cache)
186 return;
187
Thomas Gleixner3b233e52008-01-30 13:34:08 +0100188 /*
189 * We only need to flush on one CPU,
190 * clflush is a MESI-coherent instruction that
191 * will cause all other CPUs to flush the same
192 * cachelines:
193 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100194 for (i = 0, addr = start; i < numpages; i++, addr += PAGE_SIZE) {
195 pte_t *pte = lookup_address(addr, &level);
196
197 /*
198 * Only flush present addresses:
199 */
Thomas Gleixner7bfb72e2008-02-04 16:48:08 +0100200 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100201 clflush_cache_range((void *) addr, PAGE_SIZE);
202 }
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100203}
204
Shaohua Lid75586a2008-08-21 10:46:06 +0800205static void cpa_flush_array(unsigned long *start, int numpages, int cache)
206{
207 unsigned int i, level;
208 unsigned long *addr;
209
210 BUG_ON(irqs_disabled());
211
212 on_each_cpu(__cpa_flush_range, NULL, 1);
213
214 if (!cache)
215 return;
216
217 /* 4M threshold */
218 if (numpages >= 1024) {
219 if (boot_cpu_data.x86_model >= 4)
220 wbinvd();
221 return;
222 }
223 /*
224 * We only need to flush on one CPU,
225 * clflush is a MESI-coherent instruction that
226 * will cause all other CPUs to flush the same
227 * cachelines:
228 */
229 for (i = 0, addr = start; i < numpages; i++, addr++) {
230 pte_t *pte = lookup_address(*addr, &level);
231
232 /*
233 * Only flush present addresses:
234 */
235 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
236 clflush_cache_range((void *) *addr, PAGE_SIZE);
237 }
238}
239
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100240/*
Arjan van de Vened724be2008-01-30 13:34:04 +0100241 * Certain areas of memory on x86 require very specific protection flags,
242 * for example the BIOS area or kernel text. Callers don't always get this
243 * right (again, ioremap() on BIOS memory is not uncommon) so this function
244 * checks and fixes these known static required protection bits.
245 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100246static inline pgprot_t static_protections(pgprot_t prot, unsigned long address,
247 unsigned long pfn)
Arjan van de Vened724be2008-01-30 13:34:04 +0100248{
249 pgprot_t forbidden = __pgprot(0);
250
Ingo Molnar687c4822008-01-30 13:34:04 +0100251 /*
Arjan van de Vened724be2008-01-30 13:34:04 +0100252 * The BIOS area between 640k and 1Mb needs to be executable for
253 * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support.
Ingo Molnar687c4822008-01-30 13:34:04 +0100254 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100255 if (within(pfn, BIOS_BEGIN >> PAGE_SHIFT, BIOS_END >> PAGE_SHIFT))
Arjan van de Vened724be2008-01-30 13:34:04 +0100256 pgprot_val(forbidden) |= _PAGE_NX;
257
258 /*
259 * The kernel text needs to be executable for obvious reasons
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100260 * Does not cover __inittext since that is gone later on. On
261 * 64bit we do not enforce !NX on the low mapping
Arjan van de Vened724be2008-01-30 13:34:04 +0100262 */
263 if (within(address, (unsigned long)_text, (unsigned long)_etext))
264 pgprot_val(forbidden) |= _PAGE_NX;
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100265
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100266 /*
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100267 * The .rodata section needs to be read-only. Using the pfn
268 * catches all aliases.
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100269 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100270 if (within(pfn, __pa((unsigned long)__start_rodata) >> PAGE_SHIFT,
271 __pa((unsigned long)__end_rodata) >> PAGE_SHIFT))
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100272 pgprot_val(forbidden) |= _PAGE_RW;
Arjan van de Vened724be2008-01-30 13:34:04 +0100273
274 prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden));
Ingo Molnar687c4822008-01-30 13:34:04 +0100275
276 return prot;
277}
278
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100279/*
280 * Lookup the page table entry for a virtual address. Return a pointer
281 * to the entry and the level of the mapping.
282 *
283 * Note: We return pud and pmd either when the entry is marked large
284 * or when the present bit is not set. Otherwise we would return a
285 * pointer to a nonexisting mapping.
286 */
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100287pte_t *lookup_address(unsigned long address, unsigned int *level)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100288{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 pgd_t *pgd = pgd_offset_k(address);
290 pud_t *pud;
291 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100292
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100293 *level = PG_LEVEL_NONE;
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 if (pgd_none(*pgd))
296 return NULL;
Ingo Molnar9df84992008-02-04 16:48:09 +0100297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 pud = pud_offset(pgd, address);
299 if (pud_none(*pud))
300 return NULL;
Andi Kleenc2f71ee2008-02-04 16:48:09 +0100301
302 *level = PG_LEVEL_1G;
303 if (pud_large(*pud) || !pud_present(*pud))
304 return (pte_t *)pud;
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 pmd = pmd_offset(pud, address);
307 if (pmd_none(*pmd))
308 return NULL;
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100309
310 *level = PG_LEVEL_2M;
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100311 if (pmd_large(*pmd) || !pmd_present(*pmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 return (pte_t *)pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100314 *level = PG_LEVEL_4K;
Ingo Molnar9df84992008-02-04 16:48:09 +0100315
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100316 return pte_offset_kernel(pmd, address);
317}
Pekka Paalanen75bb8832008-05-12 21:20:56 +0200318EXPORT_SYMBOL_GPL(lookup_address);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100319
Ingo Molnar9df84992008-02-04 16:48:09 +0100320/*
321 * Set the new pmd in all the pgds we know about:
322 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100323static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100324{
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100325 /* change init_mm */
326 set_pte_atomic(kpte, pte);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100327#ifdef CONFIG_X86_32
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100328 if (!SHARED_KERNEL_PMD) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100329 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Jeremy Fitzhardingee3ed9102008-01-30 13:34:11 +0100331 list_for_each_entry(page, &pgd_list, lru) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100332 pgd_t *pgd;
333 pud_t *pud;
334 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100335
Ingo Molnar44af6c42008-01-30 13:34:03 +0100336 pgd = (pgd_t *)page_address(page) + pgd_index(address);
337 pud = pud_offset(pgd, address);
338 pmd = pmd_offset(pud, address);
339 set_pte_atomic((pte_t *)pmd, pte);
340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100342#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
Ingo Molnar9df84992008-02-04 16:48:09 +0100345static int
346try_preserve_large_page(pte_t *kpte, unsigned long address,
347 struct cpa_data *cpa)
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100348{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100349 unsigned long nextpage_addr, numpages, pmask, psize, flags, addr, pfn;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100350 pte_t new_pte, old_pte, *tmp;
351 pgprot_t old_prot, new_prot;
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100352 int i, do_split = 1;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100353 unsigned int level;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100354
Andi Kleenc9caa022008-03-12 03:53:29 +0100355 if (cpa->force_split)
356 return 1;
357
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100358 spin_lock_irqsave(&pgd_lock, flags);
359 /*
360 * Check for races, another CPU might have split this page
361 * up already:
362 */
363 tmp = lookup_address(address, &level);
364 if (tmp != kpte)
365 goto out_unlock;
366
367 switch (level) {
368 case PG_LEVEL_2M:
Andi Kleen31422c52008-02-04 16:48:08 +0100369 psize = PMD_PAGE_SIZE;
370 pmask = PMD_PAGE_MASK;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100371 break;
Andi Kleenf07333f2008-02-04 16:48:09 +0100372#ifdef CONFIG_X86_64
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100373 case PG_LEVEL_1G:
Andi Kleen5d3c8b22008-02-13 16:20:35 +0100374 psize = PUD_PAGE_SIZE;
375 pmask = PUD_PAGE_MASK;
Andi Kleenf07333f2008-02-04 16:48:09 +0100376 break;
377#endif
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100378 default:
Ingo Molnarbeaff632008-02-04 16:48:09 +0100379 do_split = -EINVAL;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100380 goto out_unlock;
381 }
382
383 /*
384 * Calculate the number of pages, which fit into this large
385 * page starting at address:
386 */
387 nextpage_addr = (address + psize) & pmask;
388 numpages = (nextpage_addr - address) >> PAGE_SHIFT;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100389 if (numpages < cpa->numpages)
390 cpa->numpages = numpages;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100391
392 /*
393 * We are safe now. Check whether the new pgprot is the same:
394 */
395 old_pte = *kpte;
396 old_prot = new_prot = pte_pgprot(old_pte);
397
398 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
399 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100400
401 /*
402 * old_pte points to the large page base address. So we need
403 * to add the offset of the virtual address:
404 */
405 pfn = pte_pfn(old_pte) + ((address & (psize - 1)) >> PAGE_SHIFT);
406 cpa->pfn = pfn;
407
408 new_prot = static_protections(new_prot, address, pfn);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100409
410 /*
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100411 * We need to check the full range, whether
412 * static_protection() requires a different pgprot for one of
413 * the pages in the range we try to preserve:
414 */
415 addr = address + PAGE_SIZE;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100416 pfn++;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100417 for (i = 1; i < cpa->numpages; i++, addr += PAGE_SIZE, pfn++) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100418 pgprot_t chk_prot = static_protections(new_prot, addr, pfn);
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100419
420 if (pgprot_val(chk_prot) != pgprot_val(new_prot))
421 goto out_unlock;
422 }
423
424 /*
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100425 * If there are no changes, return. maxpages has been updated
426 * above:
427 */
428 if (pgprot_val(new_prot) == pgprot_val(old_prot)) {
Ingo Molnarbeaff632008-02-04 16:48:09 +0100429 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100430 goto out_unlock;
431 }
432
433 /*
434 * We need to change the attributes. Check, whether we can
435 * change the large page in one go. We request a split, when
436 * the address is not aligned and the number of pages is
437 * smaller than the number of pages in the large page. Note
438 * that we limited the number of possible pages already to
439 * the number of pages in the large page.
440 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100441 if (address == (nextpage_addr - psize) && cpa->numpages == numpages) {
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100442 /*
443 * The address is aligned and the number of pages
444 * covers the full page.
445 */
446 new_pte = pfn_pte(pte_pfn(old_pte), canon_pgprot(new_prot));
447 __set_pmd_pte(kpte, address, new_pte);
Shaohua Lid75586a2008-08-21 10:46:06 +0800448 cpa->flags |= CPA_FLUSHTLB;
Ingo Molnarbeaff632008-02-04 16:48:09 +0100449 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100450 }
451
452out_unlock:
453 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnar9df84992008-02-04 16:48:09 +0100454
Ingo Molnarbeaff632008-02-04 16:48:09 +0100455 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100456}
457
Ingo Molnar7afe15b2008-01-30 13:33:57 +0100458static int split_large_page(pte_t *kpte, unsigned long address)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100459{
Thomas Gleixner7b610ee2008-02-04 16:48:10 +0100460 unsigned long flags, pfn, pfninc = 1;
Ingo Molnar86f03989d2008-01-30 13:34:09 +0100461 unsigned int i, level;
Ingo Molnar9df84992008-02-04 16:48:09 +0100462 pte_t *pbase, *tmp;
463 pgprot_t ref_prot;
Suresh Siddhaad5ca552008-09-23 14:00:42 -0700464 struct page *base;
465
466 if (!debug_pagealloc)
467 spin_unlock(&cpa_lock);
468 base = alloc_pages(GFP_KERNEL, 0);
469 if (!debug_pagealloc)
470 spin_lock(&cpa_lock);
Suresh Siddha8311eb82008-09-23 14:00:41 -0700471 if (!base)
472 return -ENOMEM;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100473
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100474 spin_lock_irqsave(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100475 /*
476 * Check for races, another CPU might have split this page
477 * up for us already:
478 */
479 tmp = lookup_address(address, &level);
Ingo Molnar6ce9fc12008-02-04 16:48:08 +0100480 if (tmp != kpte)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100481 goto out_unlock;
482
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100483 pbase = (pte_t *)page_address(base);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700484 paravirt_alloc_pte(&init_mm, page_to_pfn(base));
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100485 ref_prot = pte_pgprot(pte_clrhuge(*kpte));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100486
Andi Kleenf07333f2008-02-04 16:48:09 +0100487#ifdef CONFIG_X86_64
488 if (level == PG_LEVEL_1G) {
489 pfninc = PMD_PAGE_SIZE >> PAGE_SHIFT;
490 pgprot_val(ref_prot) |= _PAGE_PSE;
Andi Kleenf07333f2008-02-04 16:48:09 +0100491 }
492#endif
493
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100494 /*
495 * Get the target pfn from the original entry:
496 */
497 pfn = pte_pfn(*kpte);
Andi Kleenf07333f2008-02-04 16:48:09 +0100498 for (i = 0; i < PTRS_PER_PTE; i++, pfn += pfninc)
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100499 set_pte(&pbase[i], pfn_pte(pfn, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100500
Andi Kleence0c0e52008-05-02 11:46:49 +0200501 if (address >= (unsigned long)__va(0) &&
Yinghai Luf361a452008-07-10 20:38:26 -0700502 address < (unsigned long)__va(max_low_pfn_mapped << PAGE_SHIFT))
503 split_page_count(level);
504
505#ifdef CONFIG_X86_64
506 if (address >= (unsigned long)__va(1UL<<32) &&
Thomas Gleixner65280e62008-05-05 16:35:21 +0200507 address < (unsigned long)__va(max_pfn_mapped << PAGE_SHIFT))
508 split_page_count(level);
Yinghai Luf361a452008-07-10 20:38:26 -0700509#endif
Andi Kleence0c0e52008-05-02 11:46:49 +0200510
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100511 /*
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100512 * Install the new, split up pagetable. Important details here:
Huang, Ying4c881ca2008-01-30 13:34:04 +0100513 *
514 * On Intel the NX bit of all levels must be cleared to make a
515 * page executable. See section 4.13.2 of Intel 64 and IA-32
516 * Architectures Software Developer's Manual).
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100517 *
518 * Mark the entry present. The current mapping might be
519 * set to not present, which we preserved above.
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100520 */
Huang, Ying4c881ca2008-01-30 13:34:04 +0100521 ref_prot = pte_pgprot(pte_mkexec(pte_clrhuge(*kpte)));
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100522 pgprot_val(ref_prot) |= _PAGE_PRESENT;
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100523 __set_pmd_pte(kpte, address, mk_pte(base, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100524 base = NULL;
525
526out_unlock:
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100527 /*
528 * If we dropped out via the lookup_address check under
529 * pgd_lock then stick the page back into the pool:
530 */
Suresh Siddha8311eb82008-09-23 14:00:41 -0700531 if (base)
532 __free_page(base);
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100533 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100534
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100535 return 0;
536}
537
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100538static int __change_page_attr(struct cpa_data *cpa, int primary)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100539{
Shaohua Lid75586a2008-08-21 10:46:06 +0800540 unsigned long address;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100541 int do_split, err;
542 unsigned int level;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100543 pte_t *kpte, old_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Shaohua Lid75586a2008-08-21 10:46:06 +0800545 if (cpa->flags & CPA_ARRAY)
546 address = cpa->vaddr[cpa->curpage];
547 else
548 address = *cpa->vaddr;
549
Ingo Molnar97f99fe2008-01-30 13:33:55 +0100550repeat:
Ingo Molnarf0646e42008-01-30 13:33:43 +0100551 kpte = lookup_address(address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (!kpte)
Ingo Molnard1a4be62008-04-18 21:32:22 +0200553 return 0;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100554
555 old_pte = *kpte;
556 if (!pte_val(old_pte)) {
557 if (!primary)
558 return 0;
Arjan van de Ven875e40b2008-07-30 12:26:26 -0700559 WARN(1, KERN_WARNING "CPA: called for zero pte. "
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100560 "vaddr = %lx cpa->vaddr = %lx\n", address,
Shaohua Lid75586a2008-08-21 10:46:06 +0800561 *cpa->vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 return -EINVAL;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100563 }
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100564
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100565 if (level == PG_LEVEL_4K) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100566 pte_t new_pte;
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100567 pgprot_t new_prot = pte_pgprot(old_pte);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100568 unsigned long pfn = pte_pfn(old_pte);
Thomas Gleixnera72a08a2008-01-30 13:34:07 +0100569
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100570 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
571 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Ingo Molnar86f03989d2008-01-30 13:34:09 +0100572
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100573 new_prot = static_protections(new_prot, address, pfn);
Ingo Molnar86f03989d2008-01-30 13:34:09 +0100574
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100575 /*
576 * We need to keep the pfn from the existing PTE,
577 * after all we're only going to change it's attributes
578 * not the memory it points to
579 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100580 new_pte = pfn_pte(pfn, canon_pgprot(new_prot));
581 cpa->pfn = pfn;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100582 /*
583 * Do we really change anything ?
584 */
585 if (pte_val(old_pte) != pte_val(new_pte)) {
586 set_pte_atomic(kpte, new_pte);
Shaohua Lid75586a2008-08-21 10:46:06 +0800587 cpa->flags |= CPA_FLUSHTLB;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100588 }
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100589 cpa->numpages = 1;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100590 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100592
593 /*
594 * Check, whether we can keep the large page intact
595 * and just change the pte:
596 */
Ingo Molnarbeaff632008-02-04 16:48:09 +0100597 do_split = try_preserve_large_page(kpte, address, cpa);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100598 /*
599 * When the range fits into the existing large page,
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100600 * return. cp->numpages and cpa->tlbflush have been updated in
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100601 * try_large_page:
602 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100603 if (do_split <= 0)
604 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100605
606 /*
607 * We have to split the large page:
608 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100609 err = split_large_page(kpte, address);
610 if (!err) {
Suresh Siddhaad5ca552008-09-23 14:00:42 -0700611 /*
612 * Do a global flush tlb after splitting the large page
613 * and before we do the actual change page attribute in the PTE.
614 *
615 * With out this, we violate the TLB application note, that says
616 * "The TLBs may contain both ordinary and large-page
617 * translations for a 4-KByte range of linear addresses. This
618 * may occur if software modifies the paging structures so that
619 * the page size used for the address range changes. If the two
620 * translations differ with respect to page frame or attributes
621 * (e.g., permissions), processor behavior is undefined and may
622 * be implementation-specific."
623 *
624 * We do this global tlb flush inside the cpa_lock, so that we
625 * don't allow any other cpu, with stale tlb entries change the
626 * page attribute in parallel, that also falls into the
627 * just split large page entry.
628 */
629 flush_tlb_all();
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100630 goto repeat;
631 }
Ingo Molnarbeaff632008-02-04 16:48:09 +0100632
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100633 return err;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100634}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100636static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias);
637
638static int cpa_process_alias(struct cpa_data *cpa)
Ingo Molnar44af6c42008-01-30 13:34:03 +0100639{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100640 struct cpa_data alias_cpa;
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100641 int ret = 0;
Shaohua Lid75586a2008-08-21 10:46:06 +0800642 unsigned long temp_cpa_vaddr, vaddr;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100643
Yinghai Lu965194c2008-07-12 14:31:28 -0700644 if (cpa->pfn >= max_pfn_mapped)
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100645 return 0;
646
Yinghai Luf361a452008-07-10 20:38:26 -0700647#ifdef CONFIG_X86_64
Yinghai Lu965194c2008-07-12 14:31:28 -0700648 if (cpa->pfn >= max_low_pfn_mapped && cpa->pfn < (1UL<<(32-PAGE_SHIFT)))
Yinghai Luf361a452008-07-10 20:38:26 -0700649 return 0;
650#endif
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100651 /*
652 * No need to redo, when the primary call touched the direct
653 * mapping already:
654 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800655 if (cpa->flags & CPA_ARRAY)
656 vaddr = cpa->vaddr[cpa->curpage];
657 else
658 vaddr = *cpa->vaddr;
659
660 if (!(within(vaddr, PAGE_OFFSET,
Yinghai Luf361a452008-07-10 20:38:26 -0700661 PAGE_OFFSET + (max_low_pfn_mapped << PAGE_SHIFT))
662#ifdef CONFIG_X86_64
Shaohua Lid75586a2008-08-21 10:46:06 +0800663 || within(vaddr, PAGE_OFFSET + (1UL<<32),
Yinghai Luf361a452008-07-10 20:38:26 -0700664 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT))
665#endif
666 )) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100667
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100668 alias_cpa = *cpa;
Shaohua Lid75586a2008-08-21 10:46:06 +0800669 temp_cpa_vaddr = (unsigned long) __va(cpa->pfn << PAGE_SHIFT);
670 alias_cpa.vaddr = &temp_cpa_vaddr;
671 alias_cpa.flags &= ~CPA_ARRAY;
672
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100673
674 ret = __change_page_attr_set_clr(&alias_cpa, 0);
675 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100676
Arjan van de Ven488fd992008-01-30 13:34:07 +0100677#ifdef CONFIG_X86_64
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100678 if (ret)
679 return ret;
Thomas Gleixner08797502008-01-30 13:34:09 +0100680 /*
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100681 * No need to redo, when the primary call touched the high
682 * mapping already:
683 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800684 if (within(vaddr, (unsigned long) _text, (unsigned long) _end))
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100685 return 0;
686
687 /*
Thomas Gleixner08797502008-01-30 13:34:09 +0100688 * If the physical address is inside the kernel map, we need
689 * to touch the high mapped kernel as well:
690 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100691 if (!within(cpa->pfn, highmap_start_pfn(), highmap_end_pfn()))
692 return 0;
Thomas Gleixner08797502008-01-30 13:34:09 +0100693
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100694 alias_cpa = *cpa;
Shaohua Lid75586a2008-08-21 10:46:06 +0800695 temp_cpa_vaddr = (cpa->pfn << PAGE_SHIFT) + __START_KERNEL_map - phys_base;
696 alias_cpa.vaddr = &temp_cpa_vaddr;
697 alias_cpa.flags &= ~CPA_ARRAY;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100698
699 /*
700 * The high mapping range is imprecise, so ignore the return value.
701 */
702 __change_page_attr_set_clr(&alias_cpa, 0);
Thomas Gleixner08797502008-01-30 13:34:09 +0100703#endif
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100704 return ret;
Ingo Molnar44af6c42008-01-30 13:34:03 +0100705}
706
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100707static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100708{
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100709 int ret, numpages = cpa->numpages;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100710
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100711 while (numpages) {
712 /*
713 * Store the remaining nr of pages for the large page
714 * preservation check.
715 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100716 cpa->numpages = numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +0800717 /* for array changes, we can't use large page */
718 if (cpa->flags & CPA_ARRAY)
719 cpa->numpages = 1;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100720
Suresh Siddhaad5ca552008-09-23 14:00:42 -0700721 if (!debug_pagealloc)
722 spin_lock(&cpa_lock);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100723 ret = __change_page_attr(cpa, checkalias);
Suresh Siddhaad5ca552008-09-23 14:00:42 -0700724 if (!debug_pagealloc)
725 spin_unlock(&cpa_lock);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100726 if (ret)
727 return ret;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100728
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100729 if (checkalias) {
730 ret = cpa_process_alias(cpa);
731 if (ret)
732 return ret;
733 }
734
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100735 /*
736 * Adjust the number of pages with the result of the
737 * CPA operation. Either a large page has been
738 * preserved or a single page update happened.
739 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100740 BUG_ON(cpa->numpages > numpages);
741 numpages -= cpa->numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +0800742 if (cpa->flags & CPA_ARRAY)
743 cpa->curpage++;
744 else
745 *cpa->vaddr += cpa->numpages * PAGE_SIZE;
746
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100747 }
Thomas Gleixnerff314522008-01-30 13:34:08 +0100748 return 0;
749}
750
Andi Kleen6bb83832008-02-04 16:48:06 +0100751static inline int cache_attr(pgprot_t attr)
752{
753 return pgprot_val(attr) &
754 (_PAGE_PAT | _PAGE_PAT_LARGE | _PAGE_PWT | _PAGE_PCD);
755}
756
Shaohua Lid75586a2008-08-21 10:46:06 +0800757static int change_page_attr_set_clr(unsigned long *addr, int numpages,
Andi Kleenc9caa022008-03-12 03:53:29 +0100758 pgprot_t mask_set, pgprot_t mask_clr,
Shaohua Lid75586a2008-08-21 10:46:06 +0800759 int force_split, int array)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100760{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100761 struct cpa_data cpa;
Ingo Molnarcacf8902008-08-21 13:46:33 +0200762 int ret, cache, checkalias;
Thomas Gleixner331e4062008-02-04 16:48:06 +0100763
764 /*
765 * Check, if we are requested to change a not supported
766 * feature:
767 */
768 mask_set = canon_pgprot(mask_set);
769 mask_clr = canon_pgprot(mask_clr);
Andi Kleenc9caa022008-03-12 03:53:29 +0100770 if (!pgprot_val(mask_set) && !pgprot_val(mask_clr) && !force_split)
Thomas Gleixner331e4062008-02-04 16:48:06 +0100771 return 0;
772
Thomas Gleixner69b14152008-02-13 11:04:50 +0100773 /* Ensure we are PAGE_SIZE aligned */
Shaohua Lid75586a2008-08-21 10:46:06 +0800774 if (!array) {
775 if (*addr & ~PAGE_MASK) {
776 *addr &= PAGE_MASK;
777 /*
778 * People should not be passing in unaligned addresses:
779 */
780 WARN_ON_ONCE(1);
781 }
782 } else {
783 int i;
784 for (i = 0; i < numpages; i++) {
785 if (addr[i] & ~PAGE_MASK) {
786 addr[i] &= PAGE_MASK;
787 WARN_ON_ONCE(1);
788 }
789 }
Thomas Gleixner69b14152008-02-13 11:04:50 +0100790 }
791
Nick Piggin5843d9a2008-08-01 03:15:21 +0200792 /* Must avoid aliasing mappings in the highmem code */
793 kmap_flush_unused();
794
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100795 cpa.vaddr = addr;
796 cpa.numpages = numpages;
797 cpa.mask_set = mask_set;
798 cpa.mask_clr = mask_clr;
Shaohua Lid75586a2008-08-21 10:46:06 +0800799 cpa.flags = 0;
800 cpa.curpage = 0;
Andi Kleenc9caa022008-03-12 03:53:29 +0100801 cpa.force_split = force_split;
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100802
Shaohua Lid75586a2008-08-21 10:46:06 +0800803 if (array)
804 cpa.flags |= CPA_ARRAY;
805
Thomas Gleixneraf96e442008-02-15 21:49:46 +0100806 /* No alias checking for _NX bit modifications */
807 checkalias = (pgprot_val(mask_set) | pgprot_val(mask_clr)) != _PAGE_NX;
808
809 ret = __change_page_attr_set_clr(&cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100810
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100811 /*
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100812 * Check whether we really changed something:
813 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800814 if (!(cpa.flags & CPA_FLUSHTLB))
Shaohua Li1ac2f7d2008-08-04 14:51:24 +0800815 goto out;
Ingo Molnarcacf8902008-08-21 13:46:33 +0200816
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100817 /*
Andi Kleen6bb83832008-02-04 16:48:06 +0100818 * No need to flush, when we did not set any of the caching
819 * attributes:
820 */
821 cache = cache_attr(mask_set);
822
823 /*
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100824 * On success we use clflush, when the CPU supports it to
825 * avoid the wbindv. If the CPU does not support it and in the
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100826 * error case we fall back to cpa_flush_all (which uses
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100827 * wbindv):
828 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800829 if (!ret && cpu_has_clflush) {
830 if (cpa.flags & CPA_ARRAY)
831 cpa_flush_array(addr, numpages, cache);
832 else
833 cpa_flush_range(*addr, numpages, cache);
834 } else
Andi Kleen6bb83832008-02-04 16:48:06 +0100835 cpa_flush_all(cache);
Ingo Molnarcacf8902008-08-21 13:46:33 +0200836
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100837out:
Thomas Gleixnerff314522008-01-30 13:34:08 +0100838 return ret;
839}
840
Shaohua Lid75586a2008-08-21 10:46:06 +0800841static inline int change_page_attr_set(unsigned long *addr, int numpages,
842 pgprot_t mask, int array)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100843{
Shaohua Lid75586a2008-08-21 10:46:06 +0800844 return change_page_attr_set_clr(addr, numpages, mask, __pgprot(0), 0,
845 array);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100846}
847
Shaohua Lid75586a2008-08-21 10:46:06 +0800848static inline int change_page_attr_clear(unsigned long *addr, int numpages,
849 pgprot_t mask, int array)
Thomas Gleixner72932c72008-01-30 13:34:08 +0100850{
Shaohua Lid75586a2008-08-21 10:46:06 +0800851 return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask, 0,
852 array);
Thomas Gleixner72932c72008-01-30 13:34:08 +0100853}
854
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700855int _set_memory_uc(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100856{
Suresh Siddhade33c442008-04-25 17:07:22 -0700857 /*
858 * for now UC MINUS. see comments in ioremap_nocache()
859 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800860 return change_page_attr_set(&addr, numpages,
861 __pgprot(_PAGE_CACHE_UC_MINUS), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100862}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700863
864int set_memory_uc(unsigned long addr, int numpages)
865{
Suresh Siddhade33c442008-04-25 17:07:22 -0700866 /*
867 * for now UC MINUS. see comments in ioremap_nocache()
868 */
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -0700869 if (reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
Suresh Siddhade33c442008-04-25 17:07:22 -0700870 _PAGE_CACHE_UC_MINUS, NULL))
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700871 return -EINVAL;
872
873 return _set_memory_uc(addr, numpages);
874}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100875EXPORT_SYMBOL(set_memory_uc);
876
Shaohua Lid75586a2008-08-21 10:46:06 +0800877int set_memory_array_uc(unsigned long *addr, int addrinarray)
878{
Rene Hermanc5e147c2008-08-22 01:02:20 +0200879 unsigned long start;
880 unsigned long end;
Shaohua Lid75586a2008-08-21 10:46:06 +0800881 int i;
882 /*
883 * for now UC MINUS. see comments in ioremap_nocache()
884 */
885 for (i = 0; i < addrinarray; i++) {
Rene Hermanc5e147c2008-08-22 01:02:20 +0200886 start = __pa(addr[i]);
887 for (end = start + PAGE_SIZE; i < addrinarray - 1; end += PAGE_SIZE) {
888 if (end != __pa(addr[i + 1]))
889 break;
890 i++;
891 }
892 if (reserve_memtype(start, end, _PAGE_CACHE_UC_MINUS, NULL))
Shaohua Lid75586a2008-08-21 10:46:06 +0800893 goto out;
894 }
895
896 return change_page_attr_set(addr, addrinarray,
897 __pgprot(_PAGE_CACHE_UC_MINUS), 1);
898out:
Rene Hermanc5e147c2008-08-22 01:02:20 +0200899 for (i = 0; i < addrinarray; i++) {
900 unsigned long tmp = __pa(addr[i]);
901
902 if (tmp == start)
903 break;
Venki Pallipadi01de05a2008-08-22 12:08:17 -0700904 for (end = tmp + PAGE_SIZE; i < addrinarray - 1; end += PAGE_SIZE) {
Rene Hermanc5e147c2008-08-22 01:02:20 +0200905 if (end != __pa(addr[i + 1]))
906 break;
907 i++;
908 }
909 free_memtype(tmp, end);
910 }
Shaohua Lid75586a2008-08-21 10:46:06 +0800911 return -EINVAL;
912}
913EXPORT_SYMBOL(set_memory_array_uc);
914
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700915int _set_memory_wc(unsigned long addr, int numpages)
916{
Shaohua Lid75586a2008-08-21 10:46:06 +0800917 return change_page_attr_set(&addr, numpages,
918 __pgprot(_PAGE_CACHE_WC), 0);
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700919}
920
921int set_memory_wc(unsigned long addr, int numpages)
922{
Andreas Herrmann499f8f82008-06-10 16:06:21 +0200923 if (!pat_enabled)
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700924 return set_memory_uc(addr, numpages);
925
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -0700926 if (reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700927 _PAGE_CACHE_WC, NULL))
928 return -EINVAL;
929
930 return _set_memory_wc(addr, numpages);
931}
932EXPORT_SYMBOL(set_memory_wc);
933
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700934int _set_memory_wb(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100935{
Shaohua Lid75586a2008-08-21 10:46:06 +0800936 return change_page_attr_clear(&addr, numpages,
937 __pgprot(_PAGE_CACHE_MASK), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100938}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700939
940int set_memory_wb(unsigned long addr, int numpages)
941{
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -0700942 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700943
944 return _set_memory_wb(addr, numpages);
945}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100946EXPORT_SYMBOL(set_memory_wb);
947
Shaohua Lid75586a2008-08-21 10:46:06 +0800948int set_memory_array_wb(unsigned long *addr, int addrinarray)
949{
950 int i;
Shaohua Lid75586a2008-08-21 10:46:06 +0800951
Rene Hermanc5e147c2008-08-22 01:02:20 +0200952 for (i = 0; i < addrinarray; i++) {
953 unsigned long start = __pa(addr[i]);
954 unsigned long end;
955
956 for (end = start + PAGE_SIZE; i < addrinarray - 1; end += PAGE_SIZE) {
957 if (end != __pa(addr[i + 1]))
958 break;
959 i++;
960 }
961 free_memtype(start, end);
962 }
Shaohua Lid75586a2008-08-21 10:46:06 +0800963 return change_page_attr_clear(addr, addrinarray,
964 __pgprot(_PAGE_CACHE_MASK), 1);
965}
966EXPORT_SYMBOL(set_memory_array_wb);
967
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100968int set_memory_x(unsigned long addr, int numpages)
969{
Shaohua Lid75586a2008-08-21 10:46:06 +0800970 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_NX), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100971}
972EXPORT_SYMBOL(set_memory_x);
973
974int set_memory_nx(unsigned long addr, int numpages)
975{
Shaohua Lid75586a2008-08-21 10:46:06 +0800976 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_NX), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100977}
978EXPORT_SYMBOL(set_memory_nx);
979
980int set_memory_ro(unsigned long addr, int numpages)
981{
Shaohua Lid75586a2008-08-21 10:46:06 +0800982 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_RW), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100983}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100984
985int set_memory_rw(unsigned long addr, int numpages)
986{
Shaohua Lid75586a2008-08-21 10:46:06 +0800987 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_RW), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100988}
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100989
990int set_memory_np(unsigned long addr, int numpages)
991{
Shaohua Lid75586a2008-08-21 10:46:06 +0800992 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_PRESENT), 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100993}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100994
Andi Kleenc9caa022008-03-12 03:53:29 +0100995int set_memory_4k(unsigned long addr, int numpages)
996{
Shaohua Lid75586a2008-08-21 10:46:06 +0800997 return change_page_attr_set_clr(&addr, numpages, __pgprot(0),
998 __pgprot(0), 1, 0);
Andi Kleenc9caa022008-03-12 03:53:29 +0100999}
1000
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001001int set_pages_uc(struct page *page, int numpages)
1002{
1003 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001004
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001005 return set_memory_uc(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001006}
1007EXPORT_SYMBOL(set_pages_uc);
1008
1009int set_pages_wb(struct page *page, int numpages)
1010{
1011 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001012
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001013 return set_memory_wb(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001014}
1015EXPORT_SYMBOL(set_pages_wb);
1016
1017int set_pages_x(struct page *page, int numpages)
1018{
1019 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001020
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001021 return set_memory_x(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001022}
1023EXPORT_SYMBOL(set_pages_x);
1024
1025int set_pages_nx(struct page *page, int numpages)
1026{
1027 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001028
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001029 return set_memory_nx(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001030}
1031EXPORT_SYMBOL(set_pages_nx);
1032
1033int set_pages_ro(struct page *page, int numpages)
1034{
1035 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001036
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001037 return set_memory_ro(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001038}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001039
1040int set_pages_rw(struct page *page, int numpages)
1041{
1042 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001043
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001044 return set_memory_rw(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001045}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047#ifdef CONFIG_DEBUG_PAGEALLOC
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001048
1049static int __set_pages_p(struct page *page, int numpages)
1050{
Shaohua Lid75586a2008-08-21 10:46:06 +08001051 unsigned long tempaddr = (unsigned long) page_address(page);
1052 struct cpa_data cpa = { .vaddr = &tempaddr,
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001053 .numpages = numpages,
1054 .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW),
Shaohua Lid75586a2008-08-21 10:46:06 +08001055 .mask_clr = __pgprot(0),
1056 .flags = 0};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001057
Suresh Siddha55121b42008-09-23 14:00:40 -07001058 /*
1059 * No alias checking needed for setting present flag. otherwise,
1060 * we may need to break large pages for 64-bit kernel text
1061 * mappings (this adds to complexity if we want to do this from
1062 * atomic context especially). Let's keep it simple!
1063 */
1064 return __change_page_attr_set_clr(&cpa, 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001065}
1066
1067static int __set_pages_np(struct page *page, int numpages)
1068{
Shaohua Lid75586a2008-08-21 10:46:06 +08001069 unsigned long tempaddr = (unsigned long) page_address(page);
1070 struct cpa_data cpa = { .vaddr = &tempaddr,
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001071 .numpages = numpages,
1072 .mask_set = __pgprot(0),
Shaohua Lid75586a2008-08-21 10:46:06 +08001073 .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW),
1074 .flags = 0};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001075
Suresh Siddha55121b42008-09-23 14:00:40 -07001076 /*
1077 * No alias checking needed for setting not present flag. otherwise,
1078 * we may need to break large pages for 64-bit kernel text
1079 * mappings (this adds to complexity if we want to do this from
1080 * atomic context especially). Let's keep it simple!
1081 */
1082 return __change_page_attr_set_clr(&cpa, 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001083}
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085void kernel_map_pages(struct page *page, int numpages, int enable)
1086{
1087 if (PageHighMem(page))
1088 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001089 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -07001090 debug_check_no_locks_freed(page_address(page),
1091 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001092 }
Ingo Molnarde5097c2006-01-09 15:59:21 -08001093
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001094 /*
Ingo Molnar12d6f212008-01-30 13:33:58 +01001095 * If page allocator is not up yet then do not call c_p_a():
1096 */
1097 if (!debug_pagealloc_enabled)
1098 return;
1099
1100 /*
Ingo Molnarf8d84062008-02-13 14:09:53 +01001101 * The return value is ignored as the calls cannot fail.
Suresh Siddha55121b42008-09-23 14:00:40 -07001102 * Large pages for identity mappings are not used at boot time
1103 * and hence no memory allocations during large page split.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 */
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001105 if (enable)
1106 __set_pages_p(page, numpages);
1107 else
1108 __set_pages_np(page, numpages);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001109
1110 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +01001111 * We should perform an IPI and flush all tlbs,
1112 * but that can deadlock->flush only current cpu:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 */
1114 __flush_tlb_all();
1115}
Rafael J. Wysocki8a235ef2008-02-20 01:47:44 +01001116
1117#ifdef CONFIG_HIBERNATION
1118
1119bool kernel_page_present(struct page *page)
1120{
1121 unsigned int level;
1122 pte_t *pte;
1123
1124 if (PageHighMem(page))
1125 return false;
1126
1127 pte = lookup_address((unsigned long)page_address(page), &level);
1128 return (pte_val(*pte) & _PAGE_PRESENT);
1129}
1130
1131#endif /* CONFIG_HIBERNATION */
1132
1133#endif /* CONFIG_DEBUG_PAGEALLOC */
Arjan van de Vend1028a12008-01-30 13:34:07 +01001134
1135/*
1136 * The testcases use internal knowledge of the implementation that shouldn't
1137 * be exposed to the rest of the kernel. Include these directly here.
1138 */
1139#ifdef CONFIG_CPA_DEBUG
1140#include "pageattr-test.c"
1141#endif