blob: f664bc1c4093d0dbc39d4aefdfdd6c5e29be1f95 [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
Alexey Dobriyane1759c22008-10-15 23:50:22 +040068void arch_report_meminfo(struct seq_file *m)
Thomas Gleixner65280e62008-05-05 16:35:21 +020069{
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000070 seq_printf(m, "DirectMap4k: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010071 direct_pages_count[PG_LEVEL_4K] << 2);
72#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000073 seq_printf(m, "DirectMap2M: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010074 direct_pages_count[PG_LEVEL_2M] << 11);
75#else
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000076 seq_printf(m, "DirectMap4M: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010077 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)
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000081 seq_printf(m, "DirectMap1G: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010082 direct_pages_count[PG_LEVEL_1G] << 20);
Thomas Gleixner65280e62008-05-05 16:35:21 +020083#endif
Thomas Gleixner65280e62008-05-05 16:35:21 +020084}
85#else
86static inline void split_page_count(int level) { }
87#endif
88
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010089#ifdef CONFIG_X86_64
90
91static inline unsigned long highmap_start_pfn(void)
92{
93 return __pa(_text) >> PAGE_SHIFT;
94}
95
96static inline unsigned long highmap_end_pfn(void)
97{
Joerg Roedel15ae2d72008-07-25 16:48:56 +020098 return __pa(roundup((unsigned long)_end, PMD_SIZE)) >> PAGE_SHIFT;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010099}
100
101#endif
102
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100103#ifdef CONFIG_DEBUG_PAGEALLOC
104# define debug_pagealloc 1
105#else
106# define debug_pagealloc 0
107#endif
108
Arjan van de Vened724be2008-01-30 13:34:04 +0100109static inline int
110within(unsigned long addr, unsigned long start, unsigned long end)
Ingo Molnar687c4822008-01-30 13:34:04 +0100111{
Arjan van de Vened724be2008-01-30 13:34:04 +0100112 return addr >= start && addr < end;
113}
114
115/*
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100116 * Flushing functions
117 */
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100118
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100119/**
120 * clflush_cache_range - flush a cache range with clflush
121 * @addr: virtual start address
122 * @size: number of bytes to flush
123 *
124 * clflush is an unordered instruction which needs fencing with mfence
125 * to avoid ordering issues.
126 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100127void clflush_cache_range(void *vaddr, unsigned int size)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100128{
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100129 void *vend = vaddr + size - 1;
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100130
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100131 mb();
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100132
133 for (; vaddr < vend; vaddr += boot_cpu_data.x86_clflush_size)
134 clflush(vaddr);
135 /*
136 * Flush any possible final partial cacheline:
137 */
138 clflush(vend);
139
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100140 mb();
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100141}
142
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100143static void __cpa_flush_all(void *arg)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100144{
Andi Kleen6bb83832008-02-04 16:48:06 +0100145 unsigned long cache = (unsigned long)arg;
146
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100147 /*
148 * Flush all to work around Errata in early athlons regarding
149 * large page flushing.
150 */
151 __flush_tlb_all();
152
Andi Kleen6bb83832008-02-04 16:48:06 +0100153 if (cache && boot_cpu_data.x86_model >= 4)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100154 wbinvd();
155}
156
Andi Kleen6bb83832008-02-04 16:48:06 +0100157static void cpa_flush_all(unsigned long cache)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100158{
159 BUG_ON(irqs_disabled());
160
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200161 on_each_cpu(__cpa_flush_all, (void *) cache, 1);
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100162}
163
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100164static void __cpa_flush_range(void *arg)
165{
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100166 /*
167 * We could optimize that further and do individual per page
168 * tlb invalidates for a low number of pages. Caveat: we must
169 * flush the high aliases on 64bit as well.
170 */
171 __flush_tlb_all();
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100172}
173
Andi Kleen6bb83832008-02-04 16:48:06 +0100174static void cpa_flush_range(unsigned long start, int numpages, int cache)
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100175{
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100176 unsigned int i, level;
177 unsigned long addr;
178
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100179 BUG_ON(irqs_disabled());
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100180 WARN_ON(PAGE_ALIGN(start) != start);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100181
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200182 on_each_cpu(__cpa_flush_range, NULL, 1);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100183
Andi Kleen6bb83832008-02-04 16:48:06 +0100184 if (!cache)
185 return;
186
Thomas Gleixner3b233e52008-01-30 13:34:08 +0100187 /*
188 * We only need to flush on one CPU,
189 * clflush is a MESI-coherent instruction that
190 * will cause all other CPUs to flush the same
191 * cachelines:
192 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100193 for (i = 0, addr = start; i < numpages; i++, addr += PAGE_SIZE) {
194 pte_t *pte = lookup_address(addr, &level);
195
196 /*
197 * Only flush present addresses:
198 */
Thomas Gleixner7bfb72e2008-02-04 16:48:08 +0100199 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100200 clflush_cache_range((void *) addr, PAGE_SIZE);
201 }
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100202}
203
Shaohua Lid75586a2008-08-21 10:46:06 +0800204static void cpa_flush_array(unsigned long *start, int numpages, int cache)
205{
206 unsigned int i, level;
207 unsigned long *addr;
208
209 BUG_ON(irqs_disabled());
210
211 on_each_cpu(__cpa_flush_range, NULL, 1);
212
213 if (!cache)
214 return;
215
216 /* 4M threshold */
217 if (numpages >= 1024) {
218 if (boot_cpu_data.x86_model >= 4)
219 wbinvd();
220 return;
221 }
222 /*
223 * We only need to flush on one CPU,
224 * clflush is a MESI-coherent instruction that
225 * will cause all other CPUs to flush the same
226 * cachelines:
227 */
228 for (i = 0, addr = start; i < numpages; i++, addr++) {
229 pte_t *pte = lookup_address(*addr, &level);
230
231 /*
232 * Only flush present addresses:
233 */
234 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
235 clflush_cache_range((void *) *addr, PAGE_SIZE);
236 }
237}
238
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100239/*
Arjan van de Vened724be2008-01-30 13:34:04 +0100240 * Certain areas of memory on x86 require very specific protection flags,
241 * for example the BIOS area or kernel text. Callers don't always get this
242 * right (again, ioremap() on BIOS memory is not uncommon) so this function
243 * checks and fixes these known static required protection bits.
244 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100245static inline pgprot_t static_protections(pgprot_t prot, unsigned long address,
246 unsigned long pfn)
Arjan van de Vened724be2008-01-30 13:34:04 +0100247{
248 pgprot_t forbidden = __pgprot(0);
249
Ingo Molnar687c4822008-01-30 13:34:04 +0100250 /*
Arjan van de Vened724be2008-01-30 13:34:04 +0100251 * The BIOS area between 640k and 1Mb needs to be executable for
252 * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support.
Ingo Molnar687c4822008-01-30 13:34:04 +0100253 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100254 if (within(pfn, BIOS_BEGIN >> PAGE_SHIFT, BIOS_END >> PAGE_SHIFT))
Arjan van de Vened724be2008-01-30 13:34:04 +0100255 pgprot_val(forbidden) |= _PAGE_NX;
256
257 /*
258 * The kernel text needs to be executable for obvious reasons
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100259 * Does not cover __inittext since that is gone later on. On
260 * 64bit we do not enforce !NX on the low mapping
Arjan van de Vened724be2008-01-30 13:34:04 +0100261 */
262 if (within(address, (unsigned long)_text, (unsigned long)_etext))
263 pgprot_val(forbidden) |= _PAGE_NX;
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100264
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100265 /*
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100266 * The .rodata section needs to be read-only. Using the pfn
267 * catches all aliases.
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100268 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100269 if (within(pfn, __pa((unsigned long)__start_rodata) >> PAGE_SHIFT,
270 __pa((unsigned long)__end_rodata) >> PAGE_SHIFT))
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100271 pgprot_val(forbidden) |= _PAGE_RW;
Arjan van de Vened724be2008-01-30 13:34:04 +0100272
273 prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden));
Ingo Molnar687c4822008-01-30 13:34:04 +0100274
275 return prot;
276}
277
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100278/*
279 * Lookup the page table entry for a virtual address. Return a pointer
280 * to the entry and the level of the mapping.
281 *
282 * Note: We return pud and pmd either when the entry is marked large
283 * or when the present bit is not set. Otherwise we would return a
284 * pointer to a nonexisting mapping.
285 */
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100286pte_t *lookup_address(unsigned long address, unsigned int *level)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100287{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 pgd_t *pgd = pgd_offset_k(address);
289 pud_t *pud;
290 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100291
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100292 *level = PG_LEVEL_NONE;
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 if (pgd_none(*pgd))
295 return NULL;
Ingo Molnar9df84992008-02-04 16:48:09 +0100296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 pud = pud_offset(pgd, address);
298 if (pud_none(*pud))
299 return NULL;
Andi Kleenc2f71ee2008-02-04 16:48:09 +0100300
301 *level = PG_LEVEL_1G;
302 if (pud_large(*pud) || !pud_present(*pud))
303 return (pte_t *)pud;
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 pmd = pmd_offset(pud, address);
306 if (pmd_none(*pmd))
307 return NULL;
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100308
309 *level = PG_LEVEL_2M;
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100310 if (pmd_large(*pmd) || !pmd_present(*pmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return (pte_t *)pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100313 *level = PG_LEVEL_4K;
Ingo Molnar9df84992008-02-04 16:48:09 +0100314
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100315 return pte_offset_kernel(pmd, address);
316}
Pekka Paalanen75bb8832008-05-12 21:20:56 +0200317EXPORT_SYMBOL_GPL(lookup_address);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100318
Ingo Molnar9df84992008-02-04 16:48:09 +0100319/*
320 * Set the new pmd in all the pgds we know about:
321 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100322static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100323{
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100324 /* change init_mm */
325 set_pte_atomic(kpte, pte);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100326#ifdef CONFIG_X86_32
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100327 if (!SHARED_KERNEL_PMD) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100328 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Jeremy Fitzhardingee3ed9102008-01-30 13:34:11 +0100330 list_for_each_entry(page, &pgd_list, lru) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100331 pgd_t *pgd;
332 pud_t *pud;
333 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100334
Ingo Molnar44af6c42008-01-30 13:34:03 +0100335 pgd = (pgd_t *)page_address(page) + pgd_index(address);
336 pud = pud_offset(pgd, address);
337 pmd = pmd_offset(pud, address);
338 set_pte_atomic((pte_t *)pmd, pte);
339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100341#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
Ingo Molnar9df84992008-02-04 16:48:09 +0100344static int
345try_preserve_large_page(pte_t *kpte, unsigned long address,
346 struct cpa_data *cpa)
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100347{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100348 unsigned long nextpage_addr, numpages, pmask, psize, flags, addr, pfn;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100349 pte_t new_pte, old_pte, *tmp;
350 pgprot_t old_prot, new_prot;
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100351 int i, do_split = 1;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100352 unsigned int level;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100353
Andi Kleenc9caa022008-03-12 03:53:29 +0100354 if (cpa->force_split)
355 return 1;
356
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100357 spin_lock_irqsave(&pgd_lock, flags);
358 /*
359 * Check for races, another CPU might have split this page
360 * up already:
361 */
362 tmp = lookup_address(address, &level);
363 if (tmp != kpte)
364 goto out_unlock;
365
366 switch (level) {
367 case PG_LEVEL_2M:
Andi Kleen31422c52008-02-04 16:48:08 +0100368 psize = PMD_PAGE_SIZE;
369 pmask = PMD_PAGE_MASK;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100370 break;
Andi Kleenf07333f2008-02-04 16:48:09 +0100371#ifdef CONFIG_X86_64
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100372 case PG_LEVEL_1G:
Andi Kleen5d3c8b22008-02-13 16:20:35 +0100373 psize = PUD_PAGE_SIZE;
374 pmask = PUD_PAGE_MASK;
Andi Kleenf07333f2008-02-04 16:48:09 +0100375 break;
376#endif
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100377 default:
Ingo Molnarbeaff632008-02-04 16:48:09 +0100378 do_split = -EINVAL;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100379 goto out_unlock;
380 }
381
382 /*
383 * Calculate the number of pages, which fit into this large
384 * page starting at address:
385 */
386 nextpage_addr = (address + psize) & pmask;
387 numpages = (nextpage_addr - address) >> PAGE_SHIFT;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100388 if (numpages < cpa->numpages)
389 cpa->numpages = numpages;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100390
391 /*
392 * We are safe now. Check whether the new pgprot is the same:
393 */
394 old_pte = *kpte;
395 old_prot = new_prot = pte_pgprot(old_pte);
396
397 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
398 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100399
400 /*
401 * old_pte points to the large page base address. So we need
402 * to add the offset of the virtual address:
403 */
404 pfn = pte_pfn(old_pte) + ((address & (psize - 1)) >> PAGE_SHIFT);
405 cpa->pfn = pfn;
406
407 new_prot = static_protections(new_prot, address, pfn);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100408
409 /*
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100410 * We need to check the full range, whether
411 * static_protection() requires a different pgprot for one of
412 * the pages in the range we try to preserve:
413 */
414 addr = address + PAGE_SIZE;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100415 pfn++;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100416 for (i = 1; i < cpa->numpages; i++, addr += PAGE_SIZE, pfn++) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100417 pgprot_t chk_prot = static_protections(new_prot, addr, pfn);
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100418
419 if (pgprot_val(chk_prot) != pgprot_val(new_prot))
420 goto out_unlock;
421 }
422
423 /*
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100424 * If there are no changes, return. maxpages has been updated
425 * above:
426 */
427 if (pgprot_val(new_prot) == pgprot_val(old_prot)) {
Ingo Molnarbeaff632008-02-04 16:48:09 +0100428 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100429 goto out_unlock;
430 }
431
432 /*
433 * We need to change the attributes. Check, whether we can
434 * change the large page in one go. We request a split, when
435 * the address is not aligned and the number of pages is
436 * smaller than the number of pages in the large page. Note
437 * that we limited the number of possible pages already to
438 * the number of pages in the large page.
439 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100440 if (address == (nextpage_addr - psize) && cpa->numpages == numpages) {
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100441 /*
442 * The address is aligned and the number of pages
443 * covers the full page.
444 */
445 new_pte = pfn_pte(pte_pfn(old_pte), canon_pgprot(new_prot));
446 __set_pmd_pte(kpte, address, new_pte);
Shaohua Lid75586a2008-08-21 10:46:06 +0800447 cpa->flags |= CPA_FLUSHTLB;
Ingo Molnarbeaff632008-02-04 16:48:09 +0100448 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100449 }
450
451out_unlock:
452 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnar9df84992008-02-04 16:48:09 +0100453
Ingo Molnarbeaff632008-02-04 16:48:09 +0100454 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100455}
456
Ingo Molnar7afe15b2008-01-30 13:33:57 +0100457static int split_large_page(pte_t *kpte, unsigned long address)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100458{
Thomas Gleixner7b610ee2008-02-04 16:48:10 +0100459 unsigned long flags, pfn, pfninc = 1;
Ingo Molnar86f03982008-01-30 13:34:09 +0100460 unsigned int i, level;
Ingo Molnar9df84992008-02-04 16:48:09 +0100461 pte_t *pbase, *tmp;
462 pgprot_t ref_prot;
Suresh Siddhaad5ca552008-09-23 14:00:42 -0700463 struct page *base;
464
465 if (!debug_pagealloc)
466 spin_unlock(&cpa_lock);
467 base = alloc_pages(GFP_KERNEL, 0);
468 if (!debug_pagealloc)
469 spin_lock(&cpa_lock);
Suresh Siddha8311eb82008-09-23 14:00:41 -0700470 if (!base)
471 return -ENOMEM;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100472
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100473 spin_lock_irqsave(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100474 /*
475 * Check for races, another CPU might have split this page
476 * up for us already:
477 */
478 tmp = lookup_address(address, &level);
Ingo Molnar6ce9fc12008-02-04 16:48:08 +0100479 if (tmp != kpte)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100480 goto out_unlock;
481
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100482 pbase = (pte_t *)page_address(base);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700483 paravirt_alloc_pte(&init_mm, page_to_pfn(base));
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100484 ref_prot = pte_pgprot(pte_clrhuge(*kpte));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100485
Andi Kleenf07333f2008-02-04 16:48:09 +0100486#ifdef CONFIG_X86_64
487 if (level == PG_LEVEL_1G) {
488 pfninc = PMD_PAGE_SIZE >> PAGE_SHIFT;
489 pgprot_val(ref_prot) |= _PAGE_PSE;
Andi Kleenf07333f2008-02-04 16:48:09 +0100490 }
491#endif
492
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100493 /*
494 * Get the target pfn from the original entry:
495 */
496 pfn = pte_pfn(*kpte);
Andi Kleenf07333f2008-02-04 16:48:09 +0100497 for (i = 0; i < PTRS_PER_PTE; i++, pfn += pfninc)
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100498 set_pte(&pbase[i], pfn_pte(pfn, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100499
Andi Kleence0c0e52008-05-02 11:46:49 +0200500 if (address >= (unsigned long)__va(0) &&
Yinghai Luf361a452008-07-10 20:38:26 -0700501 address < (unsigned long)__va(max_low_pfn_mapped << PAGE_SHIFT))
502 split_page_count(level);
503
504#ifdef CONFIG_X86_64
505 if (address >= (unsigned long)__va(1UL<<32) &&
Thomas Gleixner65280e62008-05-05 16:35:21 +0200506 address < (unsigned long)__va(max_pfn_mapped << PAGE_SHIFT))
507 split_page_count(level);
Yinghai Luf361a452008-07-10 20:38:26 -0700508#endif
Andi Kleence0c0e52008-05-02 11:46:49 +0200509
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100510 /*
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100511 * Install the new, split up pagetable. Important details here:
Huang, Ying4c881ca2008-01-30 13:34:04 +0100512 *
513 * On Intel the NX bit of all levels must be cleared to make a
514 * page executable. See section 4.13.2 of Intel 64 and IA-32
515 * Architectures Software Developer's Manual).
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100516 *
517 * Mark the entry present. The current mapping might be
518 * set to not present, which we preserved above.
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100519 */
Huang, Ying4c881ca2008-01-30 13:34:04 +0100520 ref_prot = pte_pgprot(pte_mkexec(pte_clrhuge(*kpte)));
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100521 pgprot_val(ref_prot) |= _PAGE_PRESENT;
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100522 __set_pmd_pte(kpte, address, mk_pte(base, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100523 base = NULL;
524
525out_unlock:
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100526 /*
527 * If we dropped out via the lookup_address check under
528 * pgd_lock then stick the page back into the pool:
529 */
Suresh Siddha8311eb82008-09-23 14:00:41 -0700530 if (base)
531 __free_page(base);
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100532 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100533
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100534 return 0;
535}
536
Suresh Siddhaa1e46212009-01-20 14:20:21 -0800537static int __cpa_process_fault(struct cpa_data *cpa, unsigned long vaddr,
538 int primary)
539{
540 /*
541 * Ignore all non primary paths.
542 */
543 if (!primary)
544 return 0;
545
546 /*
547 * Ignore the NULL PTE for kernel identity mapping, as it is expected
548 * to have holes.
549 * Also set numpages to '1' indicating that we processed cpa req for
550 * one virtual address page and its pfn. TBD: numpages can be set based
551 * on the initial value and the level returned by lookup_address().
552 */
553 if (within(vaddr, PAGE_OFFSET,
554 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT))) {
555 cpa->numpages = 1;
556 cpa->pfn = __pa(vaddr) >> PAGE_SHIFT;
557 return 0;
558 } else {
559 WARN(1, KERN_WARNING "CPA: called for zero pte. "
560 "vaddr = %lx cpa->vaddr = %lx\n", vaddr,
561 *cpa->vaddr);
562
563 return -EFAULT;
564 }
565}
566
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100567static int __change_page_attr(struct cpa_data *cpa, int primary)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100568{
Shaohua Lid75586a2008-08-21 10:46:06 +0800569 unsigned long address;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100570 int do_split, err;
571 unsigned int level;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100572 pte_t *kpte, old_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Shaohua Lid75586a2008-08-21 10:46:06 +0800574 if (cpa->flags & CPA_ARRAY)
575 address = cpa->vaddr[cpa->curpage];
576 else
577 address = *cpa->vaddr;
578
Jeremy Fitzhardinge4f06b042009-02-11 09:32:19 -0800579 /*
580 * If we're called with lazy mmu updates enabled, the
581 * in-memory pte state may be stale. Flush pending updates to
582 * bring them up to date.
583 */
584 arch_flush_lazy_mmu_mode();
585
Ingo Molnar97f99fe2008-01-30 13:33:55 +0100586repeat:
Ingo Molnarf0646e42008-01-30 13:33:43 +0100587 kpte = lookup_address(address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if (!kpte)
Suresh Siddhaa1e46212009-01-20 14:20:21 -0800589 return __cpa_process_fault(cpa, address, primary);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100590
591 old_pte = *kpte;
Suresh Siddhaa1e46212009-01-20 14:20:21 -0800592 if (!pte_val(old_pte))
593 return __cpa_process_fault(cpa, address, primary);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100594
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100595 if (level == PG_LEVEL_4K) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100596 pte_t new_pte;
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100597 pgprot_t new_prot = pte_pgprot(old_pte);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100598 unsigned long pfn = pte_pfn(old_pte);
Thomas Gleixnera72a08a2008-01-30 13:34:07 +0100599
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100600 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
601 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Ingo Molnar86f03982008-01-30 13:34:09 +0100602
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100603 new_prot = static_protections(new_prot, address, pfn);
Ingo Molnar86f03982008-01-30 13:34:09 +0100604
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100605 /*
606 * We need to keep the pfn from the existing PTE,
607 * after all we're only going to change it's attributes
608 * not the memory it points to
609 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100610 new_pte = pfn_pte(pfn, canon_pgprot(new_prot));
611 cpa->pfn = pfn;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100612 /*
613 * Do we really change anything ?
614 */
615 if (pte_val(old_pte) != pte_val(new_pte)) {
616 set_pte_atomic(kpte, new_pte);
Shaohua Lid75586a2008-08-21 10:46:06 +0800617 cpa->flags |= CPA_FLUSHTLB;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100618 }
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100619 cpa->numpages = 1;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100620 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 }
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100622
623 /*
624 * Check, whether we can keep the large page intact
625 * and just change the pte:
626 */
Ingo Molnarbeaff632008-02-04 16:48:09 +0100627 do_split = try_preserve_large_page(kpte, address, cpa);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100628 /*
629 * When the range fits into the existing large page,
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100630 * return. cp->numpages and cpa->tlbflush have been updated in
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100631 * try_large_page:
632 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100633 if (do_split <= 0)
634 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100635
636 /*
637 * We have to split the large page:
638 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100639 err = split_large_page(kpte, address);
640 if (!err) {
Suresh Siddhaad5ca552008-09-23 14:00:42 -0700641 /*
642 * Do a global flush tlb after splitting the large page
643 * and before we do the actual change page attribute in the PTE.
644 *
645 * With out this, we violate the TLB application note, that says
646 * "The TLBs may contain both ordinary and large-page
647 * translations for a 4-KByte range of linear addresses. This
648 * may occur if software modifies the paging structures so that
649 * the page size used for the address range changes. If the two
650 * translations differ with respect to page frame or attributes
651 * (e.g., permissions), processor behavior is undefined and may
652 * be implementation-specific."
653 *
654 * We do this global tlb flush inside the cpa_lock, so that we
655 * don't allow any other cpu, with stale tlb entries change the
656 * page attribute in parallel, that also falls into the
657 * just split large page entry.
658 */
659 flush_tlb_all();
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100660 goto repeat;
661 }
Ingo Molnarbeaff632008-02-04 16:48:09 +0100662
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100663 return err;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100664}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100666static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias);
667
668static int cpa_process_alias(struct cpa_data *cpa)
Ingo Molnar44af6c42008-01-30 13:34:03 +0100669{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100670 struct cpa_data alias_cpa;
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100671 int ret = 0;
Shaohua Lid75586a2008-08-21 10:46:06 +0800672 unsigned long temp_cpa_vaddr, vaddr;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100673
Yinghai Lu965194c2008-07-12 14:31:28 -0700674 if (cpa->pfn >= max_pfn_mapped)
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100675 return 0;
676
Yinghai Luf361a452008-07-10 20:38:26 -0700677#ifdef CONFIG_X86_64
Yinghai Lu965194c2008-07-12 14:31:28 -0700678 if (cpa->pfn >= max_low_pfn_mapped && cpa->pfn < (1UL<<(32-PAGE_SHIFT)))
Yinghai Luf361a452008-07-10 20:38:26 -0700679 return 0;
680#endif
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100681 /*
682 * No need to redo, when the primary call touched the direct
683 * mapping already:
684 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800685 if (cpa->flags & CPA_ARRAY)
686 vaddr = cpa->vaddr[cpa->curpage];
687 else
688 vaddr = *cpa->vaddr;
689
690 if (!(within(vaddr, PAGE_OFFSET,
Suresh Siddhaa1e46212009-01-20 14:20:21 -0800691 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT)))) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100692
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100693 alias_cpa = *cpa;
Shaohua Lid75586a2008-08-21 10:46:06 +0800694 temp_cpa_vaddr = (unsigned long) __va(cpa->pfn << PAGE_SHIFT);
695 alias_cpa.vaddr = &temp_cpa_vaddr;
696 alias_cpa.flags &= ~CPA_ARRAY;
697
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100698
699 ret = __change_page_attr_set_clr(&alias_cpa, 0);
700 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100701
Arjan van de Ven488fd992008-01-30 13:34:07 +0100702#ifdef CONFIG_X86_64
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100703 if (ret)
704 return ret;
Thomas Gleixner08797502008-01-30 13:34:09 +0100705 /*
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100706 * No need to redo, when the primary call touched the high
707 * mapping already:
708 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800709 if (within(vaddr, (unsigned long) _text, (unsigned long) _end))
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100710 return 0;
711
712 /*
Thomas Gleixner08797502008-01-30 13:34:09 +0100713 * If the physical address is inside the kernel map, we need
714 * to touch the high mapped kernel as well:
715 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100716 if (!within(cpa->pfn, highmap_start_pfn(), highmap_end_pfn()))
717 return 0;
Thomas Gleixner08797502008-01-30 13:34:09 +0100718
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100719 alias_cpa = *cpa;
Shaohua Lid75586a2008-08-21 10:46:06 +0800720 temp_cpa_vaddr = (cpa->pfn << PAGE_SHIFT) + __START_KERNEL_map - phys_base;
721 alias_cpa.vaddr = &temp_cpa_vaddr;
722 alias_cpa.flags &= ~CPA_ARRAY;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100723
724 /*
725 * The high mapping range is imprecise, so ignore the return value.
726 */
727 __change_page_attr_set_clr(&alias_cpa, 0);
Thomas Gleixner08797502008-01-30 13:34:09 +0100728#endif
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100729 return ret;
Ingo Molnar44af6c42008-01-30 13:34:03 +0100730}
731
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100732static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100733{
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100734 int ret, numpages = cpa->numpages;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100735
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100736 while (numpages) {
737 /*
738 * Store the remaining nr of pages for the large page
739 * preservation check.
740 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100741 cpa->numpages = numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +0800742 /* for array changes, we can't use large page */
743 if (cpa->flags & CPA_ARRAY)
744 cpa->numpages = 1;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100745
Suresh Siddhaad5ca552008-09-23 14:00:42 -0700746 if (!debug_pagealloc)
747 spin_lock(&cpa_lock);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100748 ret = __change_page_attr(cpa, checkalias);
Suresh Siddhaad5ca552008-09-23 14:00:42 -0700749 if (!debug_pagealloc)
750 spin_unlock(&cpa_lock);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100751 if (ret)
752 return ret;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100753
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100754 if (checkalias) {
755 ret = cpa_process_alias(cpa);
756 if (ret)
757 return ret;
758 }
759
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100760 /*
761 * Adjust the number of pages with the result of the
762 * CPA operation. Either a large page has been
763 * preserved or a single page update happened.
764 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100765 BUG_ON(cpa->numpages > numpages);
766 numpages -= cpa->numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +0800767 if (cpa->flags & CPA_ARRAY)
768 cpa->curpage++;
769 else
770 *cpa->vaddr += cpa->numpages * PAGE_SIZE;
771
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100772 }
Thomas Gleixnerff314522008-01-30 13:34:08 +0100773 return 0;
774}
775
Andi Kleen6bb83832008-02-04 16:48:06 +0100776static inline int cache_attr(pgprot_t attr)
777{
778 return pgprot_val(attr) &
779 (_PAGE_PAT | _PAGE_PAT_LARGE | _PAGE_PWT | _PAGE_PCD);
780}
781
Shaohua Lid75586a2008-08-21 10:46:06 +0800782static int change_page_attr_set_clr(unsigned long *addr, int numpages,
Andi Kleenc9caa022008-03-12 03:53:29 +0100783 pgprot_t mask_set, pgprot_t mask_clr,
Shaohua Lid75586a2008-08-21 10:46:06 +0800784 int force_split, int array)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100785{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100786 struct cpa_data cpa;
Ingo Molnarcacf8902008-08-21 13:46:33 +0200787 int ret, cache, checkalias;
Thomas Gleixner331e4062008-02-04 16:48:06 +0100788
789 /*
790 * Check, if we are requested to change a not supported
791 * feature:
792 */
793 mask_set = canon_pgprot(mask_set);
794 mask_clr = canon_pgprot(mask_clr);
Andi Kleenc9caa022008-03-12 03:53:29 +0100795 if (!pgprot_val(mask_set) && !pgprot_val(mask_clr) && !force_split)
Thomas Gleixner331e4062008-02-04 16:48:06 +0100796 return 0;
797
Thomas Gleixner69b14152008-02-13 11:04:50 +0100798 /* Ensure we are PAGE_SIZE aligned */
Shaohua Lid75586a2008-08-21 10:46:06 +0800799 if (!array) {
800 if (*addr & ~PAGE_MASK) {
801 *addr &= PAGE_MASK;
802 /*
803 * People should not be passing in unaligned addresses:
804 */
805 WARN_ON_ONCE(1);
806 }
807 } else {
808 int i;
809 for (i = 0; i < numpages; i++) {
810 if (addr[i] & ~PAGE_MASK) {
811 addr[i] &= PAGE_MASK;
812 WARN_ON_ONCE(1);
813 }
814 }
Thomas Gleixner69b14152008-02-13 11:04:50 +0100815 }
816
Nick Piggin5843d9a2008-08-01 03:15:21 +0200817 /* Must avoid aliasing mappings in the highmem code */
818 kmap_flush_unused();
819
Nick Piggindb64fe02008-10-18 20:27:03 -0700820 vm_unmap_aliases();
821
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100822 cpa.vaddr = addr;
823 cpa.numpages = numpages;
824 cpa.mask_set = mask_set;
825 cpa.mask_clr = mask_clr;
Shaohua Lid75586a2008-08-21 10:46:06 +0800826 cpa.flags = 0;
827 cpa.curpage = 0;
Andi Kleenc9caa022008-03-12 03:53:29 +0100828 cpa.force_split = force_split;
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100829
Shaohua Lid75586a2008-08-21 10:46:06 +0800830 if (array)
831 cpa.flags |= CPA_ARRAY;
832
Thomas Gleixneraf96e442008-02-15 21:49:46 +0100833 /* No alias checking for _NX bit modifications */
834 checkalias = (pgprot_val(mask_set) | pgprot_val(mask_clr)) != _PAGE_NX;
835
836 ret = __change_page_attr_set_clr(&cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100837
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100838 /*
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100839 * Check whether we really changed something:
840 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800841 if (!(cpa.flags & CPA_FLUSHTLB))
Shaohua Li1ac2f7d2008-08-04 14:51:24 +0800842 goto out;
Ingo Molnarcacf8902008-08-21 13:46:33 +0200843
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100844 /*
Andi Kleen6bb83832008-02-04 16:48:06 +0100845 * No need to flush, when we did not set any of the caching
846 * attributes:
847 */
848 cache = cache_attr(mask_set);
849
850 /*
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100851 * On success we use clflush, when the CPU supports it to
852 * avoid the wbindv. If the CPU does not support it and in the
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100853 * error case we fall back to cpa_flush_all (which uses
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100854 * wbindv):
855 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800856 if (!ret && cpu_has_clflush) {
857 if (cpa.flags & CPA_ARRAY)
858 cpa_flush_array(addr, numpages, cache);
859 else
860 cpa_flush_range(*addr, numpages, cache);
861 } else
Andi Kleen6bb83832008-02-04 16:48:06 +0100862 cpa_flush_all(cache);
Ingo Molnarcacf8902008-08-21 13:46:33 +0200863
Jeremy Fitzhardinge4f06b042009-02-11 09:32:19 -0800864 /*
865 * If we've been called with lazy mmu updates enabled, then
866 * make sure that everything gets flushed out before we
867 * return.
868 */
869 arch_flush_lazy_mmu_mode();
870
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100871out:
Thomas Gleixnerff314522008-01-30 13:34:08 +0100872 return ret;
873}
874
Shaohua Lid75586a2008-08-21 10:46:06 +0800875static inline int change_page_attr_set(unsigned long *addr, int numpages,
876 pgprot_t mask, int array)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100877{
Shaohua Lid75586a2008-08-21 10:46:06 +0800878 return change_page_attr_set_clr(addr, numpages, mask, __pgprot(0), 0,
879 array);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100880}
881
Shaohua Lid75586a2008-08-21 10:46:06 +0800882static inline int change_page_attr_clear(unsigned long *addr, int numpages,
883 pgprot_t mask, int array)
Thomas Gleixner72932c72008-01-30 13:34:08 +0100884{
Shaohua Lid75586a2008-08-21 10:46:06 +0800885 return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask, 0,
886 array);
Thomas Gleixner72932c72008-01-30 13:34:08 +0100887}
888
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700889int _set_memory_uc(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100890{
Suresh Siddhade33c442008-04-25 17:07:22 -0700891 /*
892 * for now UC MINUS. see comments in ioremap_nocache()
893 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800894 return change_page_attr_set(&addr, numpages,
895 __pgprot(_PAGE_CACHE_UC_MINUS), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100896}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700897
898int set_memory_uc(unsigned long addr, int numpages)
899{
Suresh Siddhade33c442008-04-25 17:07:22 -0700900 /*
901 * for now UC MINUS. see comments in ioremap_nocache()
902 */
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -0700903 if (reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
Suresh Siddhade33c442008-04-25 17:07:22 -0700904 _PAGE_CACHE_UC_MINUS, NULL))
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700905 return -EINVAL;
906
907 return _set_memory_uc(addr, numpages);
908}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100909EXPORT_SYMBOL(set_memory_uc);
910
Shaohua Lid75586a2008-08-21 10:46:06 +0800911int set_memory_array_uc(unsigned long *addr, int addrinarray)
912{
Rene Hermanc5e147c2008-08-22 01:02:20 +0200913 unsigned long start;
914 unsigned long end;
Shaohua Lid75586a2008-08-21 10:46:06 +0800915 int i;
916 /*
917 * for now UC MINUS. see comments in ioremap_nocache()
918 */
919 for (i = 0; i < addrinarray; i++) {
Rene Hermanc5e147c2008-08-22 01:02:20 +0200920 start = __pa(addr[i]);
921 for (end = start + PAGE_SIZE; i < addrinarray - 1; end += PAGE_SIZE) {
922 if (end != __pa(addr[i + 1]))
923 break;
924 i++;
925 }
926 if (reserve_memtype(start, end, _PAGE_CACHE_UC_MINUS, NULL))
Shaohua Lid75586a2008-08-21 10:46:06 +0800927 goto out;
928 }
929
930 return change_page_attr_set(addr, addrinarray,
931 __pgprot(_PAGE_CACHE_UC_MINUS), 1);
932out:
Rene Hermanc5e147c2008-08-22 01:02:20 +0200933 for (i = 0; i < addrinarray; i++) {
934 unsigned long tmp = __pa(addr[i]);
935
936 if (tmp == start)
937 break;
Venki Pallipadi01de05a2008-08-22 12:08:17 -0700938 for (end = tmp + PAGE_SIZE; i < addrinarray - 1; end += PAGE_SIZE) {
Rene Hermanc5e147c2008-08-22 01:02:20 +0200939 if (end != __pa(addr[i + 1]))
940 break;
941 i++;
942 }
943 free_memtype(tmp, end);
944 }
Shaohua Lid75586a2008-08-21 10:46:06 +0800945 return -EINVAL;
946}
947EXPORT_SYMBOL(set_memory_array_uc);
948
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700949int _set_memory_wc(unsigned long addr, int numpages)
950{
Shaohua Lid75586a2008-08-21 10:46:06 +0800951 return change_page_attr_set(&addr, numpages,
952 __pgprot(_PAGE_CACHE_WC), 0);
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700953}
954
955int set_memory_wc(unsigned long addr, int numpages)
956{
Andreas Herrmann499f8f82008-06-10 16:06:21 +0200957 if (!pat_enabled)
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700958 return set_memory_uc(addr, numpages);
959
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -0700960 if (reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700961 _PAGE_CACHE_WC, NULL))
962 return -EINVAL;
963
964 return _set_memory_wc(addr, numpages);
965}
966EXPORT_SYMBOL(set_memory_wc);
967
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700968int _set_memory_wb(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100969{
Shaohua Lid75586a2008-08-21 10:46:06 +0800970 return change_page_attr_clear(&addr, numpages,
971 __pgprot(_PAGE_CACHE_MASK), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100972}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700973
974int set_memory_wb(unsigned long addr, int numpages)
975{
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -0700976 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700977
978 return _set_memory_wb(addr, numpages);
979}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100980EXPORT_SYMBOL(set_memory_wb);
981
Shaohua Lid75586a2008-08-21 10:46:06 +0800982int set_memory_array_wb(unsigned long *addr, int addrinarray)
983{
984 int i;
Shaohua Lid75586a2008-08-21 10:46:06 +0800985
Rene Hermanc5e147c2008-08-22 01:02:20 +0200986 for (i = 0; i < addrinarray; i++) {
987 unsigned long start = __pa(addr[i]);
988 unsigned long end;
989
990 for (end = start + PAGE_SIZE; i < addrinarray - 1; end += PAGE_SIZE) {
991 if (end != __pa(addr[i + 1]))
992 break;
993 i++;
994 }
995 free_memtype(start, end);
996 }
Shaohua Lid75586a2008-08-21 10:46:06 +0800997 return change_page_attr_clear(addr, addrinarray,
998 __pgprot(_PAGE_CACHE_MASK), 1);
999}
1000EXPORT_SYMBOL(set_memory_array_wb);
1001
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001002int set_memory_x(unsigned long addr, int numpages)
1003{
Shaohua Lid75586a2008-08-21 10:46:06 +08001004 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_NX), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001005}
1006EXPORT_SYMBOL(set_memory_x);
1007
1008int set_memory_nx(unsigned long addr, int numpages)
1009{
Shaohua Lid75586a2008-08-21 10:46:06 +08001010 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_NX), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001011}
1012EXPORT_SYMBOL(set_memory_nx);
1013
1014int set_memory_ro(unsigned long addr, int numpages)
1015{
Shaohua Lid75586a2008-08-21 10:46:06 +08001016 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_RW), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001017}
Bruce Allana03352d2008-09-29 20:19:22 -07001018EXPORT_SYMBOL_GPL(set_memory_ro);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001019
1020int set_memory_rw(unsigned long addr, int numpages)
1021{
Shaohua Lid75586a2008-08-21 10:46:06 +08001022 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_RW), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001023}
Bruce Allana03352d2008-09-29 20:19:22 -07001024EXPORT_SYMBOL_GPL(set_memory_rw);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001025
1026int set_memory_np(unsigned long addr, int numpages)
1027{
Shaohua Lid75586a2008-08-21 10:46:06 +08001028 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_PRESENT), 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001029}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001030
Andi Kleenc9caa022008-03-12 03:53:29 +01001031int set_memory_4k(unsigned long addr, int numpages)
1032{
Shaohua Lid75586a2008-08-21 10:46:06 +08001033 return change_page_attr_set_clr(&addr, numpages, __pgprot(0),
1034 __pgprot(0), 1, 0);
Andi Kleenc9caa022008-03-12 03:53:29 +01001035}
1036
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001037int set_pages_uc(struct page *page, int numpages)
1038{
1039 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001040
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001041 return set_memory_uc(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001042}
1043EXPORT_SYMBOL(set_pages_uc);
1044
1045int set_pages_wb(struct page *page, int numpages)
1046{
1047 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001048
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001049 return set_memory_wb(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001050}
1051EXPORT_SYMBOL(set_pages_wb);
1052
1053int set_pages_x(struct page *page, int numpages)
1054{
1055 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001056
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001057 return set_memory_x(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001058}
1059EXPORT_SYMBOL(set_pages_x);
1060
1061int set_pages_nx(struct page *page, int numpages)
1062{
1063 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001064
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001065 return set_memory_nx(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001066}
1067EXPORT_SYMBOL(set_pages_nx);
1068
1069int set_pages_ro(struct page *page, int numpages)
1070{
1071 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001072
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001073 return set_memory_ro(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001074}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001075
1076int set_pages_rw(struct page *page, int numpages)
1077{
1078 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001079
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001080 return set_memory_rw(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001081}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083#ifdef CONFIG_DEBUG_PAGEALLOC
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001084
1085static int __set_pages_p(struct page *page, int numpages)
1086{
Shaohua Lid75586a2008-08-21 10:46:06 +08001087 unsigned long tempaddr = (unsigned long) page_address(page);
1088 struct cpa_data cpa = { .vaddr = &tempaddr,
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001089 .numpages = numpages,
1090 .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW),
Shaohua Lid75586a2008-08-21 10:46:06 +08001091 .mask_clr = __pgprot(0),
1092 .flags = 0};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001093
Suresh Siddha55121b42008-09-23 14:00:40 -07001094 /*
1095 * No alias checking needed for setting present flag. otherwise,
1096 * we may need to break large pages for 64-bit kernel text
1097 * mappings (this adds to complexity if we want to do this from
1098 * atomic context especially). Let's keep it simple!
1099 */
1100 return __change_page_attr_set_clr(&cpa, 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001101}
1102
1103static int __set_pages_np(struct page *page, int numpages)
1104{
Shaohua Lid75586a2008-08-21 10:46:06 +08001105 unsigned long tempaddr = (unsigned long) page_address(page);
1106 struct cpa_data cpa = { .vaddr = &tempaddr,
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001107 .numpages = numpages,
1108 .mask_set = __pgprot(0),
Shaohua Lid75586a2008-08-21 10:46:06 +08001109 .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW),
1110 .flags = 0};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001111
Suresh Siddha55121b42008-09-23 14:00:40 -07001112 /*
1113 * No alias checking needed for setting not present flag. otherwise,
1114 * we may need to break large pages for 64-bit kernel text
1115 * mappings (this adds to complexity if we want to do this from
1116 * atomic context especially). Let's keep it simple!
1117 */
1118 return __change_page_attr_set_clr(&cpa, 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001119}
1120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121void kernel_map_pages(struct page *page, int numpages, int enable)
1122{
1123 if (PageHighMem(page))
1124 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001125 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -07001126 debug_check_no_locks_freed(page_address(page),
1127 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001128 }
Ingo Molnarde5097c2006-01-09 15:59:21 -08001129
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001130 /*
Ingo Molnar12d6f212008-01-30 13:33:58 +01001131 * If page allocator is not up yet then do not call c_p_a():
1132 */
1133 if (!debug_pagealloc_enabled)
1134 return;
1135
1136 /*
Ingo Molnarf8d84062008-02-13 14:09:53 +01001137 * The return value is ignored as the calls cannot fail.
Suresh Siddha55121b42008-09-23 14:00:40 -07001138 * Large pages for identity mappings are not used at boot time
1139 * and hence no memory allocations during large page split.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 */
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001141 if (enable)
1142 __set_pages_p(page, numpages);
1143 else
1144 __set_pages_np(page, numpages);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001145
1146 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +01001147 * We should perform an IPI and flush all tlbs,
1148 * but that can deadlock->flush only current cpu:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 */
1150 __flush_tlb_all();
1151}
Rafael J. Wysocki8a235ef2008-02-20 01:47:44 +01001152
1153#ifdef CONFIG_HIBERNATION
1154
1155bool kernel_page_present(struct page *page)
1156{
1157 unsigned int level;
1158 pte_t *pte;
1159
1160 if (PageHighMem(page))
1161 return false;
1162
1163 pte = lookup_address((unsigned long)page_address(page), &level);
1164 return (pte_val(*pte) & _PAGE_PRESENT);
1165}
1166
1167#endif /* CONFIG_HIBERNATION */
1168
1169#endif /* CONFIG_DEBUG_PAGEALLOC */
Arjan van de Vend1028a12008-01-30 13:34:07 +01001170
1171/*
1172 * The testcases use internal knowledge of the implementation that shouldn't
1173 * be exposed to the rest of the kernel. Include these directly here.
1174 */
1175#ifdef CONFIG_CPA_DEBUG
1176#include "pageattr-test.c"
1177#endif