blob: 1280565670e4c75736c823688f92e67015f5d8f4 [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>
Jeremy Fitzhardinge93dbda72009-02-26 17:35:44 -080019#include <asm/setup.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010020#include <asm/uaccess.h>
21#include <asm/pgalloc.h>
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010022#include <asm/proto.h>
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -070023#include <asm/pat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Ingo Molnar9df84992008-02-04 16:48:09 +010025/*
26 * The current flushing context - we pass it instead of 5 arguments:
27 */
Thomas Gleixner72e458d2008-02-04 16:48:07 +010028struct cpa_data {
Shaohua Lid75586a2008-08-21 10:46:06 +080029 unsigned long *vaddr;
Thomas Gleixner72e458d2008-02-04 16:48:07 +010030 pgprot_t mask_set;
31 pgprot_t mask_clr;
Thomas Gleixner65e074d2008-02-04 16:48:07 +010032 int numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +080033 int flags;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010034 unsigned long pfn;
Andi Kleenc9caa022008-03-12 03:53:29 +010035 unsigned force_split : 1;
Shaohua Lid75586a2008-08-21 10:46:06 +080036 int curpage;
Thomas Gleixner72e458d2008-02-04 16:48:07 +010037};
38
Suresh Siddhaad5ca552008-09-23 14:00:42 -070039/*
40 * Serialize cpa() (for !DEBUG_PAGEALLOC which uses large identity mappings)
41 * using cpa_lock. So that we don't allow any other cpu, with stale large tlb
42 * entries change the page attribute in parallel to some other cpu
43 * splitting a large page entry along with changing the attribute.
44 */
45static DEFINE_SPINLOCK(cpa_lock);
46
Shaohua Lid75586a2008-08-21 10:46:06 +080047#define CPA_FLUSHTLB 1
48#define CPA_ARRAY 2
49
Thomas Gleixner65280e62008-05-05 16:35:21 +020050#ifdef CONFIG_PROC_FS
Andi Kleence0c0e52008-05-02 11:46:49 +020051static unsigned long direct_pages_count[PG_LEVEL_NUM];
52
Thomas Gleixner65280e62008-05-05 16:35:21 +020053void update_page_count(int level, unsigned long pages)
Andi Kleence0c0e52008-05-02 11:46:49 +020054{
Andi Kleence0c0e52008-05-02 11:46:49 +020055 unsigned long flags;
Thomas Gleixner65280e62008-05-05 16:35:21 +020056
Andi Kleence0c0e52008-05-02 11:46:49 +020057 /* Protect against CPA */
58 spin_lock_irqsave(&pgd_lock, flags);
59 direct_pages_count[level] += pages;
60 spin_unlock_irqrestore(&pgd_lock, flags);
Andi Kleence0c0e52008-05-02 11:46:49 +020061}
62
Thomas Gleixner65280e62008-05-05 16:35:21 +020063static void split_page_count(int level)
64{
65 direct_pages_count[level]--;
66 direct_pages_count[level - 1] += PTRS_PER_PTE;
67}
68
Alexey Dobriyane1759c22008-10-15 23:50:22 +040069void arch_report_meminfo(struct seq_file *m)
Thomas Gleixner65280e62008-05-05 16:35:21 +020070{
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000071 seq_printf(m, "DirectMap4k: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010072 direct_pages_count[PG_LEVEL_4K] << 2);
73#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000074 seq_printf(m, "DirectMap2M: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010075 direct_pages_count[PG_LEVEL_2M] << 11);
76#else
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000077 seq_printf(m, "DirectMap4M: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010078 direct_pages_count[PG_LEVEL_2M] << 12);
79#endif
Thomas Gleixner65280e62008-05-05 16:35:21 +020080#ifdef CONFIG_X86_64
Hugh Dickinsa06de632008-08-15 13:58:32 +010081 if (direct_gbpages)
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000082 seq_printf(m, "DirectMap1G: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010083 direct_pages_count[PG_LEVEL_1G] << 20);
Thomas Gleixner65280e62008-05-05 16:35:21 +020084#endif
Thomas Gleixner65280e62008-05-05 16:35:21 +020085}
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{
Jeremy Fitzhardinge93dbda72009-02-26 17:35:44 -080099 return __pa(roundup(_brk_end, PMD_SIZE)) >> PAGE_SHIFT;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100100}
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 Molnar86f03982008-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 Molnar7a5714e2009-02-20 17:44:21 +0100486 /*
487 * If we ever want to utilize the PAT bit, we need to
488 * update this function to make sure it's converted from
489 * bit 12 to bit 7 when we cross from the 2MB level to
490 * the 4K level:
491 */
492 WARN_ON_ONCE(pgprot_val(ref_prot) & _PAGE_PAT_LARGE);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100493
Andi Kleenf07333f2008-02-04 16:48:09 +0100494#ifdef CONFIG_X86_64
495 if (level == PG_LEVEL_1G) {
496 pfninc = PMD_PAGE_SIZE >> PAGE_SHIFT;
497 pgprot_val(ref_prot) |= _PAGE_PSE;
Andi Kleenf07333f2008-02-04 16:48:09 +0100498 }
499#endif
500
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100501 /*
502 * Get the target pfn from the original entry:
503 */
504 pfn = pte_pfn(*kpte);
Andi Kleenf07333f2008-02-04 16:48:09 +0100505 for (i = 0; i < PTRS_PER_PTE; i++, pfn += pfninc)
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100506 set_pte(&pbase[i], pfn_pte(pfn, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100507
Andi Kleence0c0e52008-05-02 11:46:49 +0200508 if (address >= (unsigned long)__va(0) &&
Yinghai Luf361a452008-07-10 20:38:26 -0700509 address < (unsigned long)__va(max_low_pfn_mapped << PAGE_SHIFT))
510 split_page_count(level);
511
512#ifdef CONFIG_X86_64
513 if (address >= (unsigned long)__va(1UL<<32) &&
Thomas Gleixner65280e62008-05-05 16:35:21 +0200514 address < (unsigned long)__va(max_pfn_mapped << PAGE_SHIFT))
515 split_page_count(level);
Yinghai Luf361a452008-07-10 20:38:26 -0700516#endif
Andi Kleence0c0e52008-05-02 11:46:49 +0200517
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100518 /*
Ingo Molnar07a66d72009-02-20 08:04:13 +0100519 * Install the new, split up pagetable.
Huang, Ying4c881ca2008-01-30 13:34:04 +0100520 *
Ingo Molnar07a66d72009-02-20 08:04:13 +0100521 * We use the standard kernel pagetable protections for the new
522 * pagetable protections, the actual ptes set above control the
523 * primary protection behavior:
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100524 */
Ingo Molnar07a66d72009-02-20 08:04:13 +0100525 __set_pmd_pte(kpte, address, mk_pte(base, __pgprot(_KERNPG_TABLE)));
Ingo Molnar211b3d02009-03-10 22:31:03 +0100526
527 /*
528 * Intel Atom errata AAH41 workaround.
529 *
530 * The real fix should be in hw or in a microcode update, but
531 * we also probabilistically try to reduce the window of having
532 * a large TLB mixed with 4K TLBs while instruction fetches are
533 * going on.
534 */
535 __flush_tlb_all();
536
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100537 base = NULL;
538
539out_unlock:
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100540 /*
541 * If we dropped out via the lookup_address check under
542 * pgd_lock then stick the page back into the pool:
543 */
Suresh Siddha8311eb82008-09-23 14:00:41 -0700544 if (base)
545 __free_page(base);
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100546 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100547
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100548 return 0;
549}
550
Suresh Siddhaa1e46212009-01-20 14:20:21 -0800551static int __cpa_process_fault(struct cpa_data *cpa, unsigned long vaddr,
552 int primary)
553{
554 /*
555 * Ignore all non primary paths.
556 */
557 if (!primary)
558 return 0;
559
560 /*
561 * Ignore the NULL PTE for kernel identity mapping, as it is expected
562 * to have holes.
563 * Also set numpages to '1' indicating that we processed cpa req for
564 * one virtual address page and its pfn. TBD: numpages can be set based
565 * on the initial value and the level returned by lookup_address().
566 */
567 if (within(vaddr, PAGE_OFFSET,
568 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT))) {
569 cpa->numpages = 1;
570 cpa->pfn = __pa(vaddr) >> PAGE_SHIFT;
571 return 0;
572 } else {
573 WARN(1, KERN_WARNING "CPA: called for zero pte. "
574 "vaddr = %lx cpa->vaddr = %lx\n", vaddr,
575 *cpa->vaddr);
576
577 return -EFAULT;
578 }
579}
580
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100581static int __change_page_attr(struct cpa_data *cpa, int primary)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100582{
Shaohua Lid75586a2008-08-21 10:46:06 +0800583 unsigned long address;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100584 int do_split, err;
585 unsigned int level;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100586 pte_t *kpte, old_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Shaohua Lid75586a2008-08-21 10:46:06 +0800588 if (cpa->flags & CPA_ARRAY)
589 address = cpa->vaddr[cpa->curpage];
590 else
591 address = *cpa->vaddr;
Ingo Molnar97f99fe2008-01-30 13:33:55 +0100592repeat:
Ingo Molnarf0646e42008-01-30 13:33:43 +0100593 kpte = lookup_address(address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 if (!kpte)
Suresh Siddhaa1e46212009-01-20 14:20:21 -0800595 return __cpa_process_fault(cpa, address, primary);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100596
597 old_pte = *kpte;
Suresh Siddhaa1e46212009-01-20 14:20:21 -0800598 if (!pte_val(old_pte))
599 return __cpa_process_fault(cpa, address, primary);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100600
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100601 if (level == PG_LEVEL_4K) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100602 pte_t new_pte;
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100603 pgprot_t new_prot = pte_pgprot(old_pte);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100604 unsigned long pfn = pte_pfn(old_pte);
Thomas Gleixnera72a08a2008-01-30 13:34:07 +0100605
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100606 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
607 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Ingo Molnar86f03982008-01-30 13:34:09 +0100608
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100609 new_prot = static_protections(new_prot, address, pfn);
Ingo Molnar86f03982008-01-30 13:34:09 +0100610
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100611 /*
612 * We need to keep the pfn from the existing PTE,
613 * after all we're only going to change it's attributes
614 * not the memory it points to
615 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100616 new_pte = pfn_pte(pfn, canon_pgprot(new_prot));
617 cpa->pfn = pfn;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100618 /*
619 * Do we really change anything ?
620 */
621 if (pte_val(old_pte) != pte_val(new_pte)) {
622 set_pte_atomic(kpte, new_pte);
Shaohua Lid75586a2008-08-21 10:46:06 +0800623 cpa->flags |= CPA_FLUSHTLB;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100624 }
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100625 cpa->numpages = 1;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100626 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100628
629 /*
630 * Check, whether we can keep the large page intact
631 * and just change the pte:
632 */
Ingo Molnarbeaff632008-02-04 16:48:09 +0100633 do_split = try_preserve_large_page(kpte, address, cpa);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100634 /*
635 * When the range fits into the existing large page,
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100636 * return. cp->numpages and cpa->tlbflush have been updated in
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100637 * try_large_page:
638 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100639 if (do_split <= 0)
640 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100641
642 /*
643 * We have to split the large page:
644 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100645 err = split_large_page(kpte, address);
646 if (!err) {
Suresh Siddhaad5ca552008-09-23 14:00:42 -0700647 /*
648 * Do a global flush tlb after splitting the large page
649 * and before we do the actual change page attribute in the PTE.
650 *
651 * With out this, we violate the TLB application note, that says
652 * "The TLBs may contain both ordinary and large-page
653 * translations for a 4-KByte range of linear addresses. This
654 * may occur if software modifies the paging structures so that
655 * the page size used for the address range changes. If the two
656 * translations differ with respect to page frame or attributes
657 * (e.g., permissions), processor behavior is undefined and may
658 * be implementation-specific."
659 *
660 * We do this global tlb flush inside the cpa_lock, so that we
661 * don't allow any other cpu, with stale tlb entries change the
662 * page attribute in parallel, that also falls into the
663 * just split large page entry.
664 */
665 flush_tlb_all();
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100666 goto repeat;
667 }
Ingo Molnarbeaff632008-02-04 16:48:09 +0100668
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100669 return err;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100670}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100672static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias);
673
674static int cpa_process_alias(struct cpa_data *cpa)
Ingo Molnar44af6c42008-01-30 13:34:03 +0100675{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100676 struct cpa_data alias_cpa;
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100677 int ret = 0;
Shaohua Lid75586a2008-08-21 10:46:06 +0800678 unsigned long temp_cpa_vaddr, vaddr;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100679
Yinghai Lu965194c2008-07-12 14:31:28 -0700680 if (cpa->pfn >= max_pfn_mapped)
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100681 return 0;
682
Yinghai Luf361a452008-07-10 20:38:26 -0700683#ifdef CONFIG_X86_64
Yinghai Lu965194c2008-07-12 14:31:28 -0700684 if (cpa->pfn >= max_low_pfn_mapped && cpa->pfn < (1UL<<(32-PAGE_SHIFT)))
Yinghai Luf361a452008-07-10 20:38:26 -0700685 return 0;
686#endif
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100687 /*
688 * No need to redo, when the primary call touched the direct
689 * mapping already:
690 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800691 if (cpa->flags & CPA_ARRAY)
692 vaddr = cpa->vaddr[cpa->curpage];
693 else
694 vaddr = *cpa->vaddr;
695
696 if (!(within(vaddr, PAGE_OFFSET,
Suresh Siddhaa1e46212009-01-20 14:20:21 -0800697 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT)))) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100698
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100699 alias_cpa = *cpa;
Shaohua Lid75586a2008-08-21 10:46:06 +0800700 temp_cpa_vaddr = (unsigned long) __va(cpa->pfn << PAGE_SHIFT);
701 alias_cpa.vaddr = &temp_cpa_vaddr;
702 alias_cpa.flags &= ~CPA_ARRAY;
703
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100704
705 ret = __change_page_attr_set_clr(&alias_cpa, 0);
706 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100707
Arjan van de Ven488fd992008-01-30 13:34:07 +0100708#ifdef CONFIG_X86_64
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100709 if (ret)
710 return ret;
Thomas Gleixner08797502008-01-30 13:34:09 +0100711 /*
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100712 * No need to redo, when the primary call touched the high
713 * mapping already:
714 */
Jeremy Fitzhardinge93dbda72009-02-26 17:35:44 -0800715 if (within(vaddr, (unsigned long) _text, _brk_end))
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100716 return 0;
717
718 /*
Thomas Gleixner08797502008-01-30 13:34:09 +0100719 * If the physical address is inside the kernel map, we need
720 * to touch the high mapped kernel as well:
721 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100722 if (!within(cpa->pfn, highmap_start_pfn(), highmap_end_pfn()))
723 return 0;
Thomas Gleixner08797502008-01-30 13:34:09 +0100724
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100725 alias_cpa = *cpa;
Shaohua Lid75586a2008-08-21 10:46:06 +0800726 temp_cpa_vaddr = (cpa->pfn << PAGE_SHIFT) + __START_KERNEL_map - phys_base;
727 alias_cpa.vaddr = &temp_cpa_vaddr;
728 alias_cpa.flags &= ~CPA_ARRAY;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100729
730 /*
731 * The high mapping range is imprecise, so ignore the return value.
732 */
733 __change_page_attr_set_clr(&alias_cpa, 0);
Thomas Gleixner08797502008-01-30 13:34:09 +0100734#endif
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100735 return ret;
Ingo Molnar44af6c42008-01-30 13:34:03 +0100736}
737
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100738static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100739{
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100740 int ret, numpages = cpa->numpages;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100741
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100742 while (numpages) {
743 /*
744 * Store the remaining nr of pages for the large page
745 * preservation check.
746 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100747 cpa->numpages = numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +0800748 /* for array changes, we can't use large page */
749 if (cpa->flags & CPA_ARRAY)
750 cpa->numpages = 1;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100751
Suresh Siddhaad5ca552008-09-23 14:00:42 -0700752 if (!debug_pagealloc)
753 spin_lock(&cpa_lock);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100754 ret = __change_page_attr(cpa, checkalias);
Suresh Siddhaad5ca552008-09-23 14:00:42 -0700755 if (!debug_pagealloc)
756 spin_unlock(&cpa_lock);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100757 if (ret)
758 return ret;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100759
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100760 if (checkalias) {
761 ret = cpa_process_alias(cpa);
762 if (ret)
763 return ret;
764 }
765
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100766 /*
767 * Adjust the number of pages with the result of the
768 * CPA operation. Either a large page has been
769 * preserved or a single page update happened.
770 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100771 BUG_ON(cpa->numpages > numpages);
772 numpages -= cpa->numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +0800773 if (cpa->flags & CPA_ARRAY)
774 cpa->curpage++;
775 else
776 *cpa->vaddr += cpa->numpages * PAGE_SIZE;
777
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100778 }
Thomas Gleixnerff314522008-01-30 13:34:08 +0100779 return 0;
780}
781
Andi Kleen6bb83832008-02-04 16:48:06 +0100782static inline int cache_attr(pgprot_t attr)
783{
784 return pgprot_val(attr) &
785 (_PAGE_PAT | _PAGE_PAT_LARGE | _PAGE_PWT | _PAGE_PCD);
786}
787
Shaohua Lid75586a2008-08-21 10:46:06 +0800788static int change_page_attr_set_clr(unsigned long *addr, int numpages,
Andi Kleenc9caa022008-03-12 03:53:29 +0100789 pgprot_t mask_set, pgprot_t mask_clr,
Shaohua Lid75586a2008-08-21 10:46:06 +0800790 int force_split, int array)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100791{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100792 struct cpa_data cpa;
Ingo Molnarcacf8902008-08-21 13:46:33 +0200793 int ret, cache, checkalias;
Thomas Gleixner331e4062008-02-04 16:48:06 +0100794
795 /*
796 * Check, if we are requested to change a not supported
797 * feature:
798 */
799 mask_set = canon_pgprot(mask_set);
800 mask_clr = canon_pgprot(mask_clr);
Andi Kleenc9caa022008-03-12 03:53:29 +0100801 if (!pgprot_val(mask_set) && !pgprot_val(mask_clr) && !force_split)
Thomas Gleixner331e4062008-02-04 16:48:06 +0100802 return 0;
803
Thomas Gleixner69b14152008-02-13 11:04:50 +0100804 /* Ensure we are PAGE_SIZE aligned */
Shaohua Lid75586a2008-08-21 10:46:06 +0800805 if (!array) {
806 if (*addr & ~PAGE_MASK) {
807 *addr &= PAGE_MASK;
808 /*
809 * People should not be passing in unaligned addresses:
810 */
811 WARN_ON_ONCE(1);
812 }
813 } else {
814 int i;
815 for (i = 0; i < numpages; i++) {
816 if (addr[i] & ~PAGE_MASK) {
817 addr[i] &= PAGE_MASK;
818 WARN_ON_ONCE(1);
819 }
820 }
Thomas Gleixner69b14152008-02-13 11:04:50 +0100821 }
822
Nick Piggin5843d9a2008-08-01 03:15:21 +0200823 /* Must avoid aliasing mappings in the highmem code */
824 kmap_flush_unused();
825
Nick Piggindb64fe02008-10-18 20:27:03 -0700826 vm_unmap_aliases();
827
Thomas Gleixner7ad9de62009-02-12 21:16:09 +0100828 /*
829 * If we're called with lazy mmu updates enabled, the
830 * in-memory pte state may be stale. Flush pending updates to
831 * bring them up to date.
832 */
833 arch_flush_lazy_mmu_mode();
834
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100835 cpa.vaddr = addr;
836 cpa.numpages = numpages;
837 cpa.mask_set = mask_set;
838 cpa.mask_clr = mask_clr;
Shaohua Lid75586a2008-08-21 10:46:06 +0800839 cpa.flags = 0;
840 cpa.curpage = 0;
Andi Kleenc9caa022008-03-12 03:53:29 +0100841 cpa.force_split = force_split;
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100842
Shaohua Lid75586a2008-08-21 10:46:06 +0800843 if (array)
844 cpa.flags |= CPA_ARRAY;
845
Thomas Gleixneraf96e442008-02-15 21:49:46 +0100846 /* No alias checking for _NX bit modifications */
847 checkalias = (pgprot_val(mask_set) | pgprot_val(mask_clr)) != _PAGE_NX;
848
849 ret = __change_page_attr_set_clr(&cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100850
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100851 /*
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100852 * Check whether we really changed something:
853 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800854 if (!(cpa.flags & CPA_FLUSHTLB))
Shaohua Li1ac2f7d2008-08-04 14:51:24 +0800855 goto out;
Ingo Molnarcacf8902008-08-21 13:46:33 +0200856
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100857 /*
Andi Kleen6bb83832008-02-04 16:48:06 +0100858 * No need to flush, when we did not set any of the caching
859 * attributes:
860 */
861 cache = cache_attr(mask_set);
862
863 /*
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100864 * On success we use clflush, when the CPU supports it to
865 * avoid the wbindv. If the CPU does not support it and in the
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100866 * error case we fall back to cpa_flush_all (which uses
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100867 * wbindv):
868 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800869 if (!ret && cpu_has_clflush) {
870 if (cpa.flags & CPA_ARRAY)
871 cpa_flush_array(addr, numpages, cache);
872 else
873 cpa_flush_range(*addr, numpages, cache);
874 } else
Andi Kleen6bb83832008-02-04 16:48:06 +0100875 cpa_flush_all(cache);
Ingo Molnarcacf8902008-08-21 13:46:33 +0200876
Jeremy Fitzhardinge4f06b042009-02-11 09:32:19 -0800877 /*
878 * If we've been called with lazy mmu updates enabled, then
879 * make sure that everything gets flushed out before we
880 * return.
881 */
882 arch_flush_lazy_mmu_mode();
883
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100884out:
Thomas Gleixnerff314522008-01-30 13:34:08 +0100885 return ret;
886}
887
Shaohua Lid75586a2008-08-21 10:46:06 +0800888static inline int change_page_attr_set(unsigned long *addr, int numpages,
889 pgprot_t mask, int array)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100890{
Shaohua Lid75586a2008-08-21 10:46:06 +0800891 return change_page_attr_set_clr(addr, numpages, mask, __pgprot(0), 0,
892 array);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100893}
894
Shaohua Lid75586a2008-08-21 10:46:06 +0800895static inline int change_page_attr_clear(unsigned long *addr, int numpages,
896 pgprot_t mask, int array)
Thomas Gleixner72932c72008-01-30 13:34:08 +0100897{
Shaohua Lid75586a2008-08-21 10:46:06 +0800898 return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask, 0,
899 array);
Thomas Gleixner72932c72008-01-30 13:34:08 +0100900}
901
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700902int _set_memory_uc(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100903{
Suresh Siddhade33c442008-04-25 17:07:22 -0700904 /*
905 * for now UC MINUS. see comments in ioremap_nocache()
906 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800907 return change_page_attr_set(&addr, numpages,
908 __pgprot(_PAGE_CACHE_UC_MINUS), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100909}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700910
911int set_memory_uc(unsigned long addr, int numpages)
912{
Suresh Siddhade33c442008-04-25 17:07:22 -0700913 /*
914 * for now UC MINUS. see comments in ioremap_nocache()
915 */
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -0700916 if (reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
Suresh Siddhade33c442008-04-25 17:07:22 -0700917 _PAGE_CACHE_UC_MINUS, NULL))
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700918 return -EINVAL;
919
920 return _set_memory_uc(addr, numpages);
921}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100922EXPORT_SYMBOL(set_memory_uc);
923
Shaohua Lid75586a2008-08-21 10:46:06 +0800924int set_memory_array_uc(unsigned long *addr, int addrinarray)
925{
Rene Hermanc5e147c2008-08-22 01:02:20 +0200926 unsigned long start;
927 unsigned long end;
Shaohua Lid75586a2008-08-21 10:46:06 +0800928 int i;
929 /*
930 * for now UC MINUS. see comments in ioremap_nocache()
931 */
932 for (i = 0; i < addrinarray; i++) {
Rene Hermanc5e147c2008-08-22 01:02:20 +0200933 start = __pa(addr[i]);
934 for (end = start + PAGE_SIZE; i < addrinarray - 1; end += PAGE_SIZE) {
935 if (end != __pa(addr[i + 1]))
936 break;
937 i++;
938 }
939 if (reserve_memtype(start, end, _PAGE_CACHE_UC_MINUS, NULL))
Shaohua Lid75586a2008-08-21 10:46:06 +0800940 goto out;
941 }
942
943 return change_page_attr_set(addr, addrinarray,
944 __pgprot(_PAGE_CACHE_UC_MINUS), 1);
945out:
Rene Hermanc5e147c2008-08-22 01:02:20 +0200946 for (i = 0; i < addrinarray; i++) {
947 unsigned long tmp = __pa(addr[i]);
948
949 if (tmp == start)
950 break;
Venki Pallipadi01de05a2008-08-22 12:08:17 -0700951 for (end = tmp + PAGE_SIZE; i < addrinarray - 1; end += PAGE_SIZE) {
Rene Hermanc5e147c2008-08-22 01:02:20 +0200952 if (end != __pa(addr[i + 1]))
953 break;
954 i++;
955 }
956 free_memtype(tmp, end);
957 }
Shaohua Lid75586a2008-08-21 10:46:06 +0800958 return -EINVAL;
959}
960EXPORT_SYMBOL(set_memory_array_uc);
961
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700962int _set_memory_wc(unsigned long addr, int numpages)
963{
Shaohua Lid75586a2008-08-21 10:46:06 +0800964 return change_page_attr_set(&addr, numpages,
965 __pgprot(_PAGE_CACHE_WC), 0);
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700966}
967
968int set_memory_wc(unsigned long addr, int numpages)
969{
Andreas Herrmann499f8f82008-06-10 16:06:21 +0200970 if (!pat_enabled)
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700971 return set_memory_uc(addr, numpages);
972
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -0700973 if (reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700974 _PAGE_CACHE_WC, NULL))
975 return -EINVAL;
976
977 return _set_memory_wc(addr, numpages);
978}
979EXPORT_SYMBOL(set_memory_wc);
980
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700981int _set_memory_wb(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100982{
Shaohua Lid75586a2008-08-21 10:46:06 +0800983 return change_page_attr_clear(&addr, numpages,
984 __pgprot(_PAGE_CACHE_MASK), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100985}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700986
987int set_memory_wb(unsigned long addr, int numpages)
988{
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -0700989 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700990
991 return _set_memory_wb(addr, numpages);
992}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100993EXPORT_SYMBOL(set_memory_wb);
994
Shaohua Lid75586a2008-08-21 10:46:06 +0800995int set_memory_array_wb(unsigned long *addr, int addrinarray)
996{
997 int i;
Shaohua Lid75586a2008-08-21 10:46:06 +0800998
Rene Hermanc5e147c2008-08-22 01:02:20 +0200999 for (i = 0; i < addrinarray; i++) {
1000 unsigned long start = __pa(addr[i]);
1001 unsigned long end;
1002
1003 for (end = start + PAGE_SIZE; i < addrinarray - 1; end += PAGE_SIZE) {
1004 if (end != __pa(addr[i + 1]))
1005 break;
1006 i++;
1007 }
1008 free_memtype(start, end);
1009 }
Shaohua Lid75586a2008-08-21 10:46:06 +08001010 return change_page_attr_clear(addr, addrinarray,
1011 __pgprot(_PAGE_CACHE_MASK), 1);
1012}
1013EXPORT_SYMBOL(set_memory_array_wb);
1014
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001015int set_memory_x(unsigned long addr, int numpages)
1016{
Shaohua Lid75586a2008-08-21 10:46:06 +08001017 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_NX), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001018}
1019EXPORT_SYMBOL(set_memory_x);
1020
1021int set_memory_nx(unsigned long addr, int numpages)
1022{
Shaohua Lid75586a2008-08-21 10:46:06 +08001023 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_NX), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001024}
1025EXPORT_SYMBOL(set_memory_nx);
1026
1027int set_memory_ro(unsigned long addr, int numpages)
1028{
Shaohua Lid75586a2008-08-21 10:46:06 +08001029 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_RW), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001030}
Bruce Allana03352d2008-09-29 20:19:22 -07001031EXPORT_SYMBOL_GPL(set_memory_ro);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001032
1033int set_memory_rw(unsigned long addr, int numpages)
1034{
Shaohua Lid75586a2008-08-21 10:46:06 +08001035 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_RW), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001036}
Bruce Allana03352d2008-09-29 20:19:22 -07001037EXPORT_SYMBOL_GPL(set_memory_rw);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001038
1039int set_memory_np(unsigned long addr, int numpages)
1040{
Shaohua Lid75586a2008-08-21 10:46:06 +08001041 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_PRESENT), 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001042}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001043
Andi Kleenc9caa022008-03-12 03:53:29 +01001044int set_memory_4k(unsigned long addr, int numpages)
1045{
Shaohua Lid75586a2008-08-21 10:46:06 +08001046 return change_page_attr_set_clr(&addr, numpages, __pgprot(0),
1047 __pgprot(0), 1, 0);
Andi Kleenc9caa022008-03-12 03:53:29 +01001048}
1049
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001050int set_pages_uc(struct page *page, int numpages)
1051{
1052 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001053
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001054 return set_memory_uc(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001055}
1056EXPORT_SYMBOL(set_pages_uc);
1057
1058int set_pages_wb(struct page *page, int numpages)
1059{
1060 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001061
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001062 return set_memory_wb(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001063}
1064EXPORT_SYMBOL(set_pages_wb);
1065
1066int set_pages_x(struct page *page, int numpages)
1067{
1068 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001069
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001070 return set_memory_x(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001071}
1072EXPORT_SYMBOL(set_pages_x);
1073
1074int set_pages_nx(struct page *page, int numpages)
1075{
1076 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001077
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001078 return set_memory_nx(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001079}
1080EXPORT_SYMBOL(set_pages_nx);
1081
1082int set_pages_ro(struct page *page, int numpages)
1083{
1084 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001085
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001086 return set_memory_ro(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001087}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001088
1089int set_pages_rw(struct page *page, int numpages)
1090{
1091 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001092
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001093 return set_memory_rw(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001094}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096#ifdef CONFIG_DEBUG_PAGEALLOC
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001097
1098static int __set_pages_p(struct page *page, int numpages)
1099{
Shaohua Lid75586a2008-08-21 10:46:06 +08001100 unsigned long tempaddr = (unsigned long) page_address(page);
1101 struct cpa_data cpa = { .vaddr = &tempaddr,
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001102 .numpages = numpages,
1103 .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW),
Shaohua Lid75586a2008-08-21 10:46:06 +08001104 .mask_clr = __pgprot(0),
1105 .flags = 0};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001106
Suresh Siddha55121b42008-09-23 14:00:40 -07001107 /*
1108 * No alias checking needed for setting present flag. otherwise,
1109 * we may need to break large pages for 64-bit kernel text
1110 * mappings (this adds to complexity if we want to do this from
1111 * atomic context especially). Let's keep it simple!
1112 */
1113 return __change_page_attr_set_clr(&cpa, 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001114}
1115
1116static int __set_pages_np(struct page *page, int numpages)
1117{
Shaohua Lid75586a2008-08-21 10:46:06 +08001118 unsigned long tempaddr = (unsigned long) page_address(page);
1119 struct cpa_data cpa = { .vaddr = &tempaddr,
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001120 .numpages = numpages,
1121 .mask_set = __pgprot(0),
Shaohua Lid75586a2008-08-21 10:46:06 +08001122 .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW),
1123 .flags = 0};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001124
Suresh Siddha55121b42008-09-23 14:00:40 -07001125 /*
1126 * No alias checking needed for setting not present flag. otherwise,
1127 * we may need to break large pages for 64-bit kernel text
1128 * mappings (this adds to complexity if we want to do this from
1129 * atomic context especially). Let's keep it simple!
1130 */
1131 return __change_page_attr_set_clr(&cpa, 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001132}
1133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134void kernel_map_pages(struct page *page, int numpages, int enable)
1135{
1136 if (PageHighMem(page))
1137 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001138 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -07001139 debug_check_no_locks_freed(page_address(page),
1140 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001141 }
Ingo Molnarde5097c2006-01-09 15:59:21 -08001142
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001143 /*
Ingo Molnar12d6f212008-01-30 13:33:58 +01001144 * If page allocator is not up yet then do not call c_p_a():
1145 */
1146 if (!debug_pagealloc_enabled)
1147 return;
1148
1149 /*
Ingo Molnarf8d84062008-02-13 14:09:53 +01001150 * The return value is ignored as the calls cannot fail.
Suresh Siddha55121b42008-09-23 14:00:40 -07001151 * Large pages for identity mappings are not used at boot time
1152 * and hence no memory allocations during large page split.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 */
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001154 if (enable)
1155 __set_pages_p(page, numpages);
1156 else
1157 __set_pages_np(page, numpages);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001158
1159 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +01001160 * We should perform an IPI and flush all tlbs,
1161 * but that can deadlock->flush only current cpu:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 */
1163 __flush_tlb_all();
1164}
Rafael J. Wysocki8a235ef2008-02-20 01:47:44 +01001165
1166#ifdef CONFIG_HIBERNATION
1167
1168bool kernel_page_present(struct page *page)
1169{
1170 unsigned int level;
1171 pte_t *pte;
1172
1173 if (PageHighMem(page))
1174 return false;
1175
1176 pte = lookup_address((unsigned long)page_address(page), &level);
1177 return (pte_val(*pte) & _PAGE_PRESENT);
1178}
1179
1180#endif /* CONFIG_HIBERNATION */
1181
1182#endif /* CONFIG_DEBUG_PAGEALLOC */
Arjan van de Vend1028a12008-01-30 13:34:07 +01001183
1184/*
1185 * The testcases use internal knowledge of the implementation that shouldn't
1186 * be exposed to the rest of the kernel. Include these directly here.
1187 */
1188#ifdef CONFIG_CPA_DEBUG
1189#include "pageattr-test.c"
1190#endif