blob: 7e600c1962db0c77d2dcb66559b75aff79672580 [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>
Tejun Heoe59a1bb2009-06-22 11:56:24 +090014#include <linux/pfn.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010015
Thomas Gleixner950f9d92008-01-30 13:34:06 +010016#include <asm/e820.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/processor.h>
18#include <asm/tlbflush.h>
Dave Jonesf8af0952006-01-06 00:12:10 -080019#include <asm/sections.h>
Jeremy Fitzhardinge93dbda72009-02-26 17:35:44 -080020#include <asm/setup.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010021#include <asm/uaccess.h>
22#include <asm/pgalloc.h>
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010023#include <asm/proto.h>
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -070024#include <asm/pat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Ingo Molnar9df84992008-02-04 16:48:09 +010026/*
27 * The current flushing context - we pass it instead of 5 arguments:
28 */
Thomas Gleixner72e458d2008-02-04 16:48:07 +010029struct cpa_data {
Shaohua Lid75586a2008-08-21 10:46:06 +080030 unsigned long *vaddr;
Thomas Gleixner72e458d2008-02-04 16:48:07 +010031 pgprot_t mask_set;
32 pgprot_t mask_clr;
Thomas Gleixner65e074d2008-02-04 16:48:07 +010033 int numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +080034 int flags;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010035 unsigned long pfn;
Andi Kleenc9caa022008-03-12 03:53:29 +010036 unsigned force_split : 1;
Shaohua Lid75586a2008-08-21 10:46:06 +080037 int curpage;
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -070038 struct page **pages;
Thomas Gleixner72e458d2008-02-04 16:48:07 +010039};
40
Suresh Siddhaad5ca552008-09-23 14:00:42 -070041/*
42 * Serialize cpa() (for !DEBUG_PAGEALLOC which uses large identity mappings)
43 * using cpa_lock. So that we don't allow any other cpu, with stale large tlb
44 * entries change the page attribute in parallel to some other cpu
45 * splitting a large page entry along with changing the attribute.
46 */
47static DEFINE_SPINLOCK(cpa_lock);
48
Shaohua Lid75586a2008-08-21 10:46:06 +080049#define CPA_FLUSHTLB 1
50#define CPA_ARRAY 2
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -070051#define CPA_PAGES_ARRAY 4
Shaohua Lid75586a2008-08-21 10:46:06 +080052
Thomas Gleixner65280e62008-05-05 16:35:21 +020053#ifdef CONFIG_PROC_FS
Andi Kleence0c0e52008-05-02 11:46:49 +020054static unsigned long direct_pages_count[PG_LEVEL_NUM];
55
Thomas Gleixner65280e62008-05-05 16:35:21 +020056void update_page_count(int level, unsigned long pages)
Andi Kleence0c0e52008-05-02 11:46:49 +020057{
Andi Kleence0c0e52008-05-02 11:46:49 +020058 unsigned long flags;
Thomas Gleixner65280e62008-05-05 16:35:21 +020059
Andi Kleence0c0e52008-05-02 11:46:49 +020060 /* Protect against CPA */
61 spin_lock_irqsave(&pgd_lock, flags);
62 direct_pages_count[level] += pages;
63 spin_unlock_irqrestore(&pgd_lock, flags);
Andi Kleence0c0e52008-05-02 11:46:49 +020064}
65
Thomas Gleixner65280e62008-05-05 16:35:21 +020066static void split_page_count(int level)
67{
68 direct_pages_count[level]--;
69 direct_pages_count[level - 1] += PTRS_PER_PTE;
70}
71
Alexey Dobriyane1759c22008-10-15 23:50:22 +040072void arch_report_meminfo(struct seq_file *m)
Thomas Gleixner65280e62008-05-05 16:35:21 +020073{
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000074 seq_printf(m, "DirectMap4k: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010075 direct_pages_count[PG_LEVEL_4K] << 2);
76#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000077 seq_printf(m, "DirectMap2M: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010078 direct_pages_count[PG_LEVEL_2M] << 11);
79#else
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000080 seq_printf(m, "DirectMap4M: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010081 direct_pages_count[PG_LEVEL_2M] << 12);
82#endif
Thomas Gleixner65280e62008-05-05 16:35:21 +020083#ifdef CONFIG_X86_64
Hugh Dickinsa06de632008-08-15 13:58:32 +010084 if (direct_gbpages)
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000085 seq_printf(m, "DirectMap1G: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010086 direct_pages_count[PG_LEVEL_1G] << 20);
Thomas Gleixner65280e62008-05-05 16:35:21 +020087#endif
Thomas Gleixner65280e62008-05-05 16:35:21 +020088}
89#else
90static inline void split_page_count(int level) { }
91#endif
92
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010093#ifdef CONFIG_X86_64
94
95static inline unsigned long highmap_start_pfn(void)
96{
97 return __pa(_text) >> PAGE_SHIFT;
98}
99
100static inline unsigned long highmap_end_pfn(void)
101{
Jeremy Fitzhardinge93dbda72009-02-26 17:35:44 -0800102 return __pa(roundup(_brk_end, PMD_SIZE)) >> PAGE_SHIFT;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100103}
104
105#endif
106
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100107#ifdef CONFIG_DEBUG_PAGEALLOC
108# define debug_pagealloc 1
109#else
110# define debug_pagealloc 0
111#endif
112
Arjan van de Vened724be2008-01-30 13:34:04 +0100113static inline int
114within(unsigned long addr, unsigned long start, unsigned long end)
Ingo Molnar687c4822008-01-30 13:34:04 +0100115{
Arjan van de Vened724be2008-01-30 13:34:04 +0100116 return addr >= start && addr < end;
117}
118
119/*
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100120 * Flushing functions
121 */
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100122
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100123/**
124 * clflush_cache_range - flush a cache range with clflush
125 * @addr: virtual start address
126 * @size: number of bytes to flush
127 *
128 * clflush is an unordered instruction which needs fencing with mfence
129 * to avoid ordering issues.
130 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100131void clflush_cache_range(void *vaddr, unsigned int size)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100132{
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100133 void *vend = vaddr + size - 1;
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100134
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100135 mb();
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100136
137 for (; vaddr < vend; vaddr += boot_cpu_data.x86_clflush_size)
138 clflush(vaddr);
139 /*
140 * Flush any possible final partial cacheline:
141 */
142 clflush(vend);
143
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100144 mb();
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100145}
146
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100147static void __cpa_flush_all(void *arg)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100148{
Andi Kleen6bb83832008-02-04 16:48:06 +0100149 unsigned long cache = (unsigned long)arg;
150
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100151 /*
152 * Flush all to work around Errata in early athlons regarding
153 * large page flushing.
154 */
155 __flush_tlb_all();
156
venkatesh.pallipadi@intel.com0b827532009-05-22 13:23:37 -0700157 if (cache && boot_cpu_data.x86 >= 4)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100158 wbinvd();
159}
160
Andi Kleen6bb83832008-02-04 16:48:06 +0100161static void cpa_flush_all(unsigned long cache)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100162{
163 BUG_ON(irqs_disabled());
164
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200165 on_each_cpu(__cpa_flush_all, (void *) cache, 1);
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100166}
167
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100168static void __cpa_flush_range(void *arg)
169{
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100170 /*
171 * We could optimize that further and do individual per page
172 * tlb invalidates for a low number of pages. Caveat: we must
173 * flush the high aliases on 64bit as well.
174 */
175 __flush_tlb_all();
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100176}
177
Andi Kleen6bb83832008-02-04 16:48:06 +0100178static void cpa_flush_range(unsigned long start, int numpages, int cache)
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100179{
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100180 unsigned int i, level;
181 unsigned long addr;
182
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100183 BUG_ON(irqs_disabled());
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100184 WARN_ON(PAGE_ALIGN(start) != start);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100185
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200186 on_each_cpu(__cpa_flush_range, NULL, 1);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100187
Andi Kleen6bb83832008-02-04 16:48:06 +0100188 if (!cache)
189 return;
190
Thomas Gleixner3b233e52008-01-30 13:34:08 +0100191 /*
192 * We only need to flush on one CPU,
193 * clflush is a MESI-coherent instruction that
194 * will cause all other CPUs to flush the same
195 * cachelines:
196 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100197 for (i = 0, addr = start; i < numpages; i++, addr += PAGE_SIZE) {
198 pte_t *pte = lookup_address(addr, &level);
199
200 /*
201 * Only flush present addresses:
202 */
Thomas Gleixner7bfb72e2008-02-04 16:48:08 +0100203 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100204 clflush_cache_range((void *) addr, PAGE_SIZE);
205 }
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100206}
207
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700208static void cpa_flush_array(unsigned long *start, int numpages, int cache,
209 int in_flags, struct page **pages)
Shaohua Lid75586a2008-08-21 10:46:06 +0800210{
211 unsigned int i, level;
Pallipadi, Venkatesh21717872009-05-26 10:33:35 -0700212 unsigned long do_wbinvd = cache && numpages >= 1024; /* 4M threshold */
Shaohua Lid75586a2008-08-21 10:46:06 +0800213
214 BUG_ON(irqs_disabled());
215
Pallipadi, Venkatesh21717872009-05-26 10:33:35 -0700216 on_each_cpu(__cpa_flush_all, (void *) do_wbinvd, 1);
Shaohua Lid75586a2008-08-21 10:46:06 +0800217
Pallipadi, Venkatesh21717872009-05-26 10:33:35 -0700218 if (!cache || do_wbinvd)
Shaohua Lid75586a2008-08-21 10:46:06 +0800219 return;
220
Shaohua Lid75586a2008-08-21 10:46:06 +0800221 /*
222 * We only need to flush on one CPU,
223 * clflush is a MESI-coherent instruction that
224 * will cause all other CPUs to flush the same
225 * cachelines:
226 */
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700227 for (i = 0; i < numpages; i++) {
228 unsigned long addr;
229 pte_t *pte;
230
231 if (in_flags & CPA_PAGES_ARRAY)
232 addr = (unsigned long)page_address(pages[i]);
233 else
234 addr = start[i];
235
236 pte = lookup_address(addr, &level);
Shaohua Lid75586a2008-08-21 10:46:06 +0800237
238 /*
239 * Only flush present addresses:
240 */
241 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700242 clflush_cache_range((void *)addr, PAGE_SIZE);
Shaohua Lid75586a2008-08-21 10:46:06 +0800243 }
244}
245
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100246/*
Arjan van de Vened724be2008-01-30 13:34:04 +0100247 * Certain areas of memory on x86 require very specific protection flags,
248 * for example the BIOS area or kernel text. Callers don't always get this
249 * right (again, ioremap() on BIOS memory is not uncommon) so this function
250 * checks and fixes these known static required protection bits.
251 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100252static inline pgprot_t static_protections(pgprot_t prot, unsigned long address,
253 unsigned long pfn)
Arjan van de Vened724be2008-01-30 13:34:04 +0100254{
255 pgprot_t forbidden = __pgprot(0);
256
Ingo Molnar687c4822008-01-30 13:34:04 +0100257 /*
Arjan van de Vened724be2008-01-30 13:34:04 +0100258 * The BIOS area between 640k and 1Mb needs to be executable for
259 * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support.
Ingo Molnar687c4822008-01-30 13:34:04 +0100260 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100261 if (within(pfn, BIOS_BEGIN >> PAGE_SHIFT, BIOS_END >> PAGE_SHIFT))
Arjan van de Vened724be2008-01-30 13:34:04 +0100262 pgprot_val(forbidden) |= _PAGE_NX;
263
264 /*
265 * The kernel text needs to be executable for obvious reasons
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100266 * Does not cover __inittext since that is gone later on. On
267 * 64bit we do not enforce !NX on the low mapping
Arjan van de Vened724be2008-01-30 13:34:04 +0100268 */
269 if (within(address, (unsigned long)_text, (unsigned long)_etext))
270 pgprot_val(forbidden) |= _PAGE_NX;
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100271
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100272 /*
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100273 * The .rodata section needs to be read-only. Using the pfn
274 * catches all aliases.
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100275 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100276 if (within(pfn, __pa((unsigned long)__start_rodata) >> PAGE_SHIFT,
277 __pa((unsigned long)__end_rodata) >> PAGE_SHIFT))
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100278 pgprot_val(forbidden) |= _PAGE_RW;
Arjan van de Vened724be2008-01-30 13:34:04 +0100279
280 prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden));
Ingo Molnar687c4822008-01-30 13:34:04 +0100281
282 return prot;
283}
284
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100285/*
286 * Lookup the page table entry for a virtual address. Return a pointer
287 * to the entry and the level of the mapping.
288 *
289 * Note: We return pud and pmd either when the entry is marked large
290 * or when the present bit is not set. Otherwise we would return a
291 * pointer to a nonexisting mapping.
292 */
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100293pte_t *lookup_address(unsigned long address, unsigned int *level)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100294{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 pgd_t *pgd = pgd_offset_k(address);
296 pud_t *pud;
297 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100298
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100299 *level = PG_LEVEL_NONE;
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 if (pgd_none(*pgd))
302 return NULL;
Ingo Molnar9df84992008-02-04 16:48:09 +0100303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 pud = pud_offset(pgd, address);
305 if (pud_none(*pud))
306 return NULL;
Andi Kleenc2f71ee2008-02-04 16:48:09 +0100307
308 *level = PG_LEVEL_1G;
309 if (pud_large(*pud) || !pud_present(*pud))
310 return (pte_t *)pud;
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 pmd = pmd_offset(pud, address);
313 if (pmd_none(*pmd))
314 return NULL;
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100315
316 *level = PG_LEVEL_2M;
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100317 if (pmd_large(*pmd) || !pmd_present(*pmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 return (pte_t *)pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100320 *level = PG_LEVEL_4K;
Ingo Molnar9df84992008-02-04 16:48:09 +0100321
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100322 return pte_offset_kernel(pmd, address);
323}
Pekka Paalanen75bb8832008-05-12 21:20:56 +0200324EXPORT_SYMBOL_GPL(lookup_address);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100325
Ingo Molnar9df84992008-02-04 16:48:09 +0100326/*
327 * Set the new pmd in all the pgds we know about:
328 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100329static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100330{
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100331 /* change init_mm */
332 set_pte_atomic(kpte, pte);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100333#ifdef CONFIG_X86_32
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100334 if (!SHARED_KERNEL_PMD) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100335 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Jeremy Fitzhardingee3ed9102008-01-30 13:34:11 +0100337 list_for_each_entry(page, &pgd_list, lru) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100338 pgd_t *pgd;
339 pud_t *pud;
340 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100341
Ingo Molnar44af6c42008-01-30 13:34:03 +0100342 pgd = (pgd_t *)page_address(page) + pgd_index(address);
343 pud = pud_offset(pgd, address);
344 pmd = pmd_offset(pud, address);
345 set_pte_atomic((pte_t *)pmd, pte);
346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100348#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
Ingo Molnar9df84992008-02-04 16:48:09 +0100351static int
352try_preserve_large_page(pte_t *kpte, unsigned long address,
353 struct cpa_data *cpa)
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100354{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100355 unsigned long nextpage_addr, numpages, pmask, psize, flags, addr, pfn;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100356 pte_t new_pte, old_pte, *tmp;
357 pgprot_t old_prot, new_prot;
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100358 int i, do_split = 1;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100359 unsigned int level;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100360
Andi Kleenc9caa022008-03-12 03:53:29 +0100361 if (cpa->force_split)
362 return 1;
363
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100364 spin_lock_irqsave(&pgd_lock, flags);
365 /*
366 * Check for races, another CPU might have split this page
367 * up already:
368 */
369 tmp = lookup_address(address, &level);
370 if (tmp != kpte)
371 goto out_unlock;
372
373 switch (level) {
374 case PG_LEVEL_2M:
Andi Kleen31422c52008-02-04 16:48:08 +0100375 psize = PMD_PAGE_SIZE;
376 pmask = PMD_PAGE_MASK;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100377 break;
Andi Kleenf07333f2008-02-04 16:48:09 +0100378#ifdef CONFIG_X86_64
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100379 case PG_LEVEL_1G:
Andi Kleen5d3c8b22008-02-13 16:20:35 +0100380 psize = PUD_PAGE_SIZE;
381 pmask = PUD_PAGE_MASK;
Andi Kleenf07333f2008-02-04 16:48:09 +0100382 break;
383#endif
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100384 default:
Ingo Molnarbeaff632008-02-04 16:48:09 +0100385 do_split = -EINVAL;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100386 goto out_unlock;
387 }
388
389 /*
390 * Calculate the number of pages, which fit into this large
391 * page starting at address:
392 */
393 nextpage_addr = (address + psize) & pmask;
394 numpages = (nextpage_addr - address) >> PAGE_SHIFT;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100395 if (numpages < cpa->numpages)
396 cpa->numpages = numpages;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100397
398 /*
399 * We are safe now. Check whether the new pgprot is the same:
400 */
401 old_pte = *kpte;
402 old_prot = new_prot = pte_pgprot(old_pte);
403
404 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
405 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100406
407 /*
408 * old_pte points to the large page base address. So we need
409 * to add the offset of the virtual address:
410 */
411 pfn = pte_pfn(old_pte) + ((address & (psize - 1)) >> PAGE_SHIFT);
412 cpa->pfn = pfn;
413
414 new_prot = static_protections(new_prot, address, pfn);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100415
416 /*
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100417 * We need to check the full range, whether
418 * static_protection() requires a different pgprot for one of
419 * the pages in the range we try to preserve:
420 */
421 addr = address + PAGE_SIZE;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100422 pfn++;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100423 for (i = 1; i < cpa->numpages; i++, addr += PAGE_SIZE, pfn++) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100424 pgprot_t chk_prot = static_protections(new_prot, addr, pfn);
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100425
426 if (pgprot_val(chk_prot) != pgprot_val(new_prot))
427 goto out_unlock;
428 }
429
430 /*
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100431 * If there are no changes, return. maxpages has been updated
432 * above:
433 */
434 if (pgprot_val(new_prot) == pgprot_val(old_prot)) {
Ingo Molnarbeaff632008-02-04 16:48:09 +0100435 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100436 goto out_unlock;
437 }
438
439 /*
440 * We need to change the attributes. Check, whether we can
441 * change the large page in one go. We request a split, when
442 * the address is not aligned and the number of pages is
443 * smaller than the number of pages in the large page. Note
444 * that we limited the number of possible pages already to
445 * the number of pages in the large page.
446 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100447 if (address == (nextpage_addr - psize) && cpa->numpages == numpages) {
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100448 /*
449 * The address is aligned and the number of pages
450 * covers the full page.
451 */
452 new_pte = pfn_pte(pte_pfn(old_pte), canon_pgprot(new_prot));
453 __set_pmd_pte(kpte, address, new_pte);
Shaohua Lid75586a2008-08-21 10:46:06 +0800454 cpa->flags |= CPA_FLUSHTLB;
Ingo Molnarbeaff632008-02-04 16:48:09 +0100455 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100456 }
457
458out_unlock:
459 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnar9df84992008-02-04 16:48:09 +0100460
Ingo Molnarbeaff632008-02-04 16:48:09 +0100461 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100462}
463
Ingo Molnar7afe15b2008-01-30 13:33:57 +0100464static int split_large_page(pte_t *kpte, unsigned long address)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100465{
Thomas Gleixner7b610ee2008-02-04 16:48:10 +0100466 unsigned long flags, pfn, pfninc = 1;
Ingo Molnar86f03982008-01-30 13:34:09 +0100467 unsigned int i, level;
Ingo Molnar9df84992008-02-04 16:48:09 +0100468 pte_t *pbase, *tmp;
469 pgprot_t ref_prot;
Suresh Siddhaad5ca552008-09-23 14:00:42 -0700470 struct page *base;
471
472 if (!debug_pagealloc)
473 spin_unlock(&cpa_lock);
Vegard Nossum9e730232009-02-22 11:28:25 +0100474 base = alloc_pages(GFP_KERNEL | __GFP_NOTRACK, 0);
Suresh Siddhaad5ca552008-09-23 14:00:42 -0700475 if (!debug_pagealloc)
476 spin_lock(&cpa_lock);
Suresh Siddha8311eb82008-09-23 14:00:41 -0700477 if (!base)
478 return -ENOMEM;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100479
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100480 spin_lock_irqsave(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100481 /*
482 * Check for races, another CPU might have split this page
483 * up for us already:
484 */
485 tmp = lookup_address(address, &level);
Ingo Molnar6ce9fc12008-02-04 16:48:08 +0100486 if (tmp != kpte)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100487 goto out_unlock;
488
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100489 pbase = (pte_t *)page_address(base);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700490 paravirt_alloc_pte(&init_mm, page_to_pfn(base));
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100491 ref_prot = pte_pgprot(pte_clrhuge(*kpte));
Ingo Molnar7a5714e2009-02-20 17:44:21 +0100492 /*
493 * If we ever want to utilize the PAT bit, we need to
494 * update this function to make sure it's converted from
495 * bit 12 to bit 7 when we cross from the 2MB level to
496 * the 4K level:
497 */
498 WARN_ON_ONCE(pgprot_val(ref_prot) & _PAGE_PAT_LARGE);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100499
Andi Kleenf07333f2008-02-04 16:48:09 +0100500#ifdef CONFIG_X86_64
501 if (level == PG_LEVEL_1G) {
502 pfninc = PMD_PAGE_SIZE >> PAGE_SHIFT;
503 pgprot_val(ref_prot) |= _PAGE_PSE;
Andi Kleenf07333f2008-02-04 16:48:09 +0100504 }
505#endif
506
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100507 /*
508 * Get the target pfn from the original entry:
509 */
510 pfn = pte_pfn(*kpte);
Andi Kleenf07333f2008-02-04 16:48:09 +0100511 for (i = 0; i < PTRS_PER_PTE; i++, pfn += pfninc)
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100512 set_pte(&pbase[i], pfn_pte(pfn, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100513
Andi Kleence0c0e52008-05-02 11:46:49 +0200514 if (address >= (unsigned long)__va(0) &&
Yinghai Luf361a452008-07-10 20:38:26 -0700515 address < (unsigned long)__va(max_low_pfn_mapped << PAGE_SHIFT))
516 split_page_count(level);
517
518#ifdef CONFIG_X86_64
519 if (address >= (unsigned long)__va(1UL<<32) &&
Thomas Gleixner65280e62008-05-05 16:35:21 +0200520 address < (unsigned long)__va(max_pfn_mapped << PAGE_SHIFT))
521 split_page_count(level);
Yinghai Luf361a452008-07-10 20:38:26 -0700522#endif
Andi Kleence0c0e52008-05-02 11:46:49 +0200523
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100524 /*
Ingo Molnar07a66d72009-02-20 08:04:13 +0100525 * Install the new, split up pagetable.
Huang, Ying4c881ca2008-01-30 13:34:04 +0100526 *
Ingo Molnar07a66d72009-02-20 08:04:13 +0100527 * We use the standard kernel pagetable protections for the new
528 * pagetable protections, the actual ptes set above control the
529 * primary protection behavior:
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100530 */
Ingo Molnar07a66d72009-02-20 08:04:13 +0100531 __set_pmd_pte(kpte, address, mk_pte(base, __pgprot(_KERNPG_TABLE)));
Ingo Molnar211b3d02009-03-10 22:31:03 +0100532
533 /*
534 * Intel Atom errata AAH41 workaround.
535 *
536 * The real fix should be in hw or in a microcode update, but
537 * we also probabilistically try to reduce the window of having
538 * a large TLB mixed with 4K TLBs while instruction fetches are
539 * going on.
540 */
541 __flush_tlb_all();
542
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100543 base = NULL;
544
545out_unlock:
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100546 /*
547 * If we dropped out via the lookup_address check under
548 * pgd_lock then stick the page back into the pool:
549 */
Suresh Siddha8311eb82008-09-23 14:00:41 -0700550 if (base)
551 __free_page(base);
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100552 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100553
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100554 return 0;
555}
556
Suresh Siddhaa1e46212009-01-20 14:20:21 -0800557static int __cpa_process_fault(struct cpa_data *cpa, unsigned long vaddr,
558 int primary)
559{
560 /*
561 * Ignore all non primary paths.
562 */
563 if (!primary)
564 return 0;
565
566 /*
567 * Ignore the NULL PTE for kernel identity mapping, as it is expected
568 * to have holes.
569 * Also set numpages to '1' indicating that we processed cpa req for
570 * one virtual address page and its pfn. TBD: numpages can be set based
571 * on the initial value and the level returned by lookup_address().
572 */
573 if (within(vaddr, PAGE_OFFSET,
574 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT))) {
575 cpa->numpages = 1;
576 cpa->pfn = __pa(vaddr) >> PAGE_SHIFT;
577 return 0;
578 } else {
579 WARN(1, KERN_WARNING "CPA: called for zero pte. "
580 "vaddr = %lx cpa->vaddr = %lx\n", vaddr,
581 *cpa->vaddr);
582
583 return -EFAULT;
584 }
585}
586
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100587static int __change_page_attr(struct cpa_data *cpa, int primary)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100588{
Shaohua Lid75586a2008-08-21 10:46:06 +0800589 unsigned long address;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100590 int do_split, err;
591 unsigned int level;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100592 pte_t *kpte, old_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Thomas Hellstrom8523acf2009-08-03 09:25:45 +0200594 if (cpa->flags & CPA_PAGES_ARRAY) {
595 struct page *page = cpa->pages[cpa->curpage];
596 if (unlikely(PageHighMem(page)))
597 return 0;
598 address = (unsigned long)page_address(page);
599 } else if (cpa->flags & CPA_ARRAY)
Shaohua Lid75586a2008-08-21 10:46:06 +0800600 address = cpa->vaddr[cpa->curpage];
601 else
602 address = *cpa->vaddr;
Ingo Molnar97f99fe2008-01-30 13:33:55 +0100603repeat:
Ingo Molnarf0646e42008-01-30 13:33:43 +0100604 kpte = lookup_address(address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 if (!kpte)
Suresh Siddhaa1e46212009-01-20 14:20:21 -0800606 return __cpa_process_fault(cpa, address, primary);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100607
608 old_pte = *kpte;
Suresh Siddhaa1e46212009-01-20 14:20:21 -0800609 if (!pte_val(old_pte))
610 return __cpa_process_fault(cpa, address, primary);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100611
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100612 if (level == PG_LEVEL_4K) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100613 pte_t new_pte;
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100614 pgprot_t new_prot = pte_pgprot(old_pte);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100615 unsigned long pfn = pte_pfn(old_pte);
Thomas Gleixnera72a08a2008-01-30 13:34:07 +0100616
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100617 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
618 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Ingo Molnar86f03982008-01-30 13:34:09 +0100619
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100620 new_prot = static_protections(new_prot, address, pfn);
Ingo Molnar86f03982008-01-30 13:34:09 +0100621
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100622 /*
623 * We need to keep the pfn from the existing PTE,
624 * after all we're only going to change it's attributes
625 * not the memory it points to
626 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100627 new_pte = pfn_pte(pfn, canon_pgprot(new_prot));
628 cpa->pfn = pfn;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100629 /*
630 * Do we really change anything ?
631 */
632 if (pte_val(old_pte) != pte_val(new_pte)) {
633 set_pte_atomic(kpte, new_pte);
Shaohua Lid75586a2008-08-21 10:46:06 +0800634 cpa->flags |= CPA_FLUSHTLB;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100635 }
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100636 cpa->numpages = 1;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100637 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100639
640 /*
641 * Check, whether we can keep the large page intact
642 * and just change the pte:
643 */
Ingo Molnarbeaff632008-02-04 16:48:09 +0100644 do_split = try_preserve_large_page(kpte, address, cpa);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100645 /*
646 * When the range fits into the existing large page,
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100647 * return. cp->numpages and cpa->tlbflush have been updated in
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100648 * try_large_page:
649 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100650 if (do_split <= 0)
651 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100652
653 /*
654 * We have to split the large page:
655 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100656 err = split_large_page(kpte, address);
657 if (!err) {
Suresh Siddhaad5ca552008-09-23 14:00:42 -0700658 /*
659 * Do a global flush tlb after splitting the large page
660 * and before we do the actual change page attribute in the PTE.
661 *
662 * With out this, we violate the TLB application note, that says
663 * "The TLBs may contain both ordinary and large-page
664 * translations for a 4-KByte range of linear addresses. This
665 * may occur if software modifies the paging structures so that
666 * the page size used for the address range changes. If the two
667 * translations differ with respect to page frame or attributes
668 * (e.g., permissions), processor behavior is undefined and may
669 * be implementation-specific."
670 *
671 * We do this global tlb flush inside the cpa_lock, so that we
672 * don't allow any other cpu, with stale tlb entries change the
673 * page attribute in parallel, that also falls into the
674 * just split large page entry.
675 */
676 flush_tlb_all();
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100677 goto repeat;
678 }
Ingo Molnarbeaff632008-02-04 16:48:09 +0100679
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100680 return err;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100681}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100683static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias);
684
685static int cpa_process_alias(struct cpa_data *cpa)
Ingo Molnar44af6c42008-01-30 13:34:03 +0100686{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100687 struct cpa_data alias_cpa;
Tejun Heo992f4c12009-06-22 11:56:24 +0900688 unsigned long laddr = (unsigned long)__va(cpa->pfn << PAGE_SHIFT);
Tejun Heoe59a1bb2009-06-22 11:56:24 +0900689 unsigned long vaddr, remapped;
Tejun Heo992f4c12009-06-22 11:56:24 +0900690 int ret;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100691
Yinghai Lu965194c2008-07-12 14:31:28 -0700692 if (cpa->pfn >= max_pfn_mapped)
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100693 return 0;
694
Yinghai Luf361a452008-07-10 20:38:26 -0700695#ifdef CONFIG_X86_64
Yinghai Lu965194c2008-07-12 14:31:28 -0700696 if (cpa->pfn >= max_low_pfn_mapped && cpa->pfn < (1UL<<(32-PAGE_SHIFT)))
Yinghai Luf361a452008-07-10 20:38:26 -0700697 return 0;
698#endif
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100699 /*
700 * No need to redo, when the primary call touched the direct
701 * mapping already:
702 */
Thomas Hellstrom8523acf2009-08-03 09:25:45 +0200703 if (cpa->flags & CPA_PAGES_ARRAY) {
704 struct page *page = cpa->pages[cpa->curpage];
705 if (unlikely(PageHighMem(page)))
706 return 0;
707 vaddr = (unsigned long)page_address(page);
708 } else if (cpa->flags & CPA_ARRAY)
Shaohua Lid75586a2008-08-21 10:46:06 +0800709 vaddr = cpa->vaddr[cpa->curpage];
710 else
711 vaddr = *cpa->vaddr;
712
713 if (!(within(vaddr, PAGE_OFFSET,
Suresh Siddhaa1e46212009-01-20 14:20:21 -0800714 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT)))) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100715
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100716 alias_cpa = *cpa;
Tejun Heo992f4c12009-06-22 11:56:24 +0900717 alias_cpa.vaddr = &laddr;
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700718 alias_cpa.flags &= ~(CPA_PAGES_ARRAY | CPA_ARRAY);
Shaohua Lid75586a2008-08-21 10:46:06 +0800719
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100720 ret = __change_page_attr_set_clr(&alias_cpa, 0);
Tejun Heo992f4c12009-06-22 11:56:24 +0900721 if (ret)
722 return ret;
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100723 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100724
Arjan van de Ven488fd992008-01-30 13:34:07 +0100725#ifdef CONFIG_X86_64
Thomas Gleixner08797502008-01-30 13:34:09 +0100726 /*
Tejun Heo992f4c12009-06-22 11:56:24 +0900727 * If the primary call didn't touch the high mapping already
728 * and the physical address is inside the kernel map, we need
Thomas Gleixner08797502008-01-30 13:34:09 +0100729 * to touch the high mapped kernel as well:
730 */
Tejun Heo992f4c12009-06-22 11:56:24 +0900731 if (!within(vaddr, (unsigned long)_text, _brk_end) &&
732 within(cpa->pfn, highmap_start_pfn(), highmap_end_pfn())) {
733 unsigned long temp_cpa_vaddr = (cpa->pfn << PAGE_SHIFT) +
734 __START_KERNEL_map - phys_base;
735 alias_cpa = *cpa;
736 alias_cpa.vaddr = &temp_cpa_vaddr;
737 alias_cpa.flags &= ~(CPA_PAGES_ARRAY | CPA_ARRAY);
Thomas Gleixner08797502008-01-30 13:34:09 +0100738
Tejun Heo992f4c12009-06-22 11:56:24 +0900739 /*
740 * The high mapping range is imprecise, so ignore the
741 * return value.
742 */
743 __change_page_attr_set_clr(&alias_cpa, 0);
744 }
Thomas Gleixner08797502008-01-30 13:34:09 +0100745#endif
Tejun Heo992f4c12009-06-22 11:56:24 +0900746
Tejun Heoe59a1bb2009-06-22 11:56:24 +0900747 /*
748 * If the PMD page was partially used for per-cpu remapping,
749 * the recycled area needs to be split and modified. Because
750 * the area is always proper subset of a PMD page
751 * cpa->numpages is guaranteed to be 1 for these areas, so
752 * there's no need to loop over and check for further remaps.
753 */
754 remapped = (unsigned long)pcpu_lpage_remapped((void *)laddr);
755 if (remapped) {
756 WARN_ON(cpa->numpages > 1);
757 alias_cpa = *cpa;
758 alias_cpa.vaddr = &remapped;
759 alias_cpa.flags &= ~(CPA_PAGES_ARRAY | CPA_ARRAY);
760 ret = __change_page_attr_set_clr(&alias_cpa, 0);
761 if (ret)
762 return ret;
763 }
764
Tejun Heo992f4c12009-06-22 11:56:24 +0900765 return 0;
Ingo Molnar44af6c42008-01-30 13:34:03 +0100766}
767
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100768static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100769{
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100770 int ret, numpages = cpa->numpages;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100771
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100772 while (numpages) {
773 /*
774 * Store the remaining nr of pages for the large page
775 * preservation check.
776 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100777 cpa->numpages = numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +0800778 /* for array changes, we can't use large page */
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700779 if (cpa->flags & (CPA_ARRAY | CPA_PAGES_ARRAY))
Shaohua Lid75586a2008-08-21 10:46:06 +0800780 cpa->numpages = 1;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100781
Suresh Siddhaad5ca552008-09-23 14:00:42 -0700782 if (!debug_pagealloc)
783 spin_lock(&cpa_lock);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100784 ret = __change_page_attr(cpa, checkalias);
Suresh Siddhaad5ca552008-09-23 14:00:42 -0700785 if (!debug_pagealloc)
786 spin_unlock(&cpa_lock);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100787 if (ret)
788 return ret;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100789
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100790 if (checkalias) {
791 ret = cpa_process_alias(cpa);
792 if (ret)
793 return ret;
794 }
795
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100796 /*
797 * Adjust the number of pages with the result of the
798 * CPA operation. Either a large page has been
799 * preserved or a single page update happened.
800 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100801 BUG_ON(cpa->numpages > numpages);
802 numpages -= cpa->numpages;
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700803 if (cpa->flags & (CPA_PAGES_ARRAY | CPA_ARRAY))
Shaohua Lid75586a2008-08-21 10:46:06 +0800804 cpa->curpage++;
805 else
806 *cpa->vaddr += cpa->numpages * PAGE_SIZE;
807
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100808 }
Thomas Gleixnerff314522008-01-30 13:34:08 +0100809 return 0;
810}
811
Andi Kleen6bb83832008-02-04 16:48:06 +0100812static inline int cache_attr(pgprot_t attr)
813{
814 return pgprot_val(attr) &
815 (_PAGE_PAT | _PAGE_PAT_LARGE | _PAGE_PWT | _PAGE_PCD);
816}
817
Shaohua Lid75586a2008-08-21 10:46:06 +0800818static int change_page_attr_set_clr(unsigned long *addr, int numpages,
Andi Kleenc9caa022008-03-12 03:53:29 +0100819 pgprot_t mask_set, pgprot_t mask_clr,
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700820 int force_split, int in_flag,
821 struct page **pages)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100822{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100823 struct cpa_data cpa;
Ingo Molnarcacf8902008-08-21 13:46:33 +0200824 int ret, cache, checkalias;
Thomas Gleixner331e4062008-02-04 16:48:06 +0100825
826 /*
827 * Check, if we are requested to change a not supported
828 * feature:
829 */
830 mask_set = canon_pgprot(mask_set);
831 mask_clr = canon_pgprot(mask_clr);
Andi Kleenc9caa022008-03-12 03:53:29 +0100832 if (!pgprot_val(mask_set) && !pgprot_val(mask_clr) && !force_split)
Thomas Gleixner331e4062008-02-04 16:48:06 +0100833 return 0;
834
Thomas Gleixner69b14152008-02-13 11:04:50 +0100835 /* Ensure we are PAGE_SIZE aligned */
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700836 if (in_flag & CPA_ARRAY) {
Shaohua Lid75586a2008-08-21 10:46:06 +0800837 int i;
838 for (i = 0; i < numpages; i++) {
839 if (addr[i] & ~PAGE_MASK) {
840 addr[i] &= PAGE_MASK;
841 WARN_ON_ONCE(1);
842 }
843 }
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700844 } else if (!(in_flag & CPA_PAGES_ARRAY)) {
845 /*
846 * in_flag of CPA_PAGES_ARRAY implies it is aligned.
847 * No need to cehck in that case
848 */
849 if (*addr & ~PAGE_MASK) {
850 *addr &= PAGE_MASK;
851 /*
852 * People should not be passing in unaligned addresses:
853 */
854 WARN_ON_ONCE(1);
855 }
Thomas Gleixner69b14152008-02-13 11:04:50 +0100856 }
857
Nick Piggin5843d9a2008-08-01 03:15:21 +0200858 /* Must avoid aliasing mappings in the highmem code */
859 kmap_flush_unused();
860
Nick Piggindb64fe02008-10-18 20:27:03 -0700861 vm_unmap_aliases();
862
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100863 cpa.vaddr = addr;
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700864 cpa.pages = pages;
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100865 cpa.numpages = numpages;
866 cpa.mask_set = mask_set;
867 cpa.mask_clr = mask_clr;
Shaohua Lid75586a2008-08-21 10:46:06 +0800868 cpa.flags = 0;
869 cpa.curpage = 0;
Andi Kleenc9caa022008-03-12 03:53:29 +0100870 cpa.force_split = force_split;
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100871
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700872 if (in_flag & (CPA_ARRAY | CPA_PAGES_ARRAY))
873 cpa.flags |= in_flag;
Shaohua Lid75586a2008-08-21 10:46:06 +0800874
Thomas Gleixneraf96e442008-02-15 21:49:46 +0100875 /* No alias checking for _NX bit modifications */
876 checkalias = (pgprot_val(mask_set) | pgprot_val(mask_clr)) != _PAGE_NX;
877
878 ret = __change_page_attr_set_clr(&cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100879
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100880 /*
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100881 * Check whether we really changed something:
882 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800883 if (!(cpa.flags & CPA_FLUSHTLB))
Shaohua Li1ac2f7d2008-08-04 14:51:24 +0800884 goto out;
Ingo Molnarcacf8902008-08-21 13:46:33 +0200885
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100886 /*
Andi Kleen6bb83832008-02-04 16:48:06 +0100887 * No need to flush, when we did not set any of the caching
888 * attributes:
889 */
890 cache = cache_attr(mask_set);
891
892 /*
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100893 * On success we use clflush, when the CPU supports it to
894 * avoid the wbindv. If the CPU does not support it and in the
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100895 * error case we fall back to cpa_flush_all (which uses
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100896 * wbindv):
897 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800898 if (!ret && cpu_has_clflush) {
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700899 if (cpa.flags & (CPA_PAGES_ARRAY | CPA_ARRAY)) {
900 cpa_flush_array(addr, numpages, cache,
901 cpa.flags, pages);
902 } else
Shaohua Lid75586a2008-08-21 10:46:06 +0800903 cpa_flush_range(*addr, numpages, cache);
904 } else
Andi Kleen6bb83832008-02-04 16:48:06 +0100905 cpa_flush_all(cache);
Ingo Molnarcacf8902008-08-21 13:46:33 +0200906
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100907out:
Thomas Gleixnerff314522008-01-30 13:34:08 +0100908 return ret;
909}
910
Shaohua Lid75586a2008-08-21 10:46:06 +0800911static inline int change_page_attr_set(unsigned long *addr, int numpages,
912 pgprot_t mask, int array)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100913{
Shaohua Lid75586a2008-08-21 10:46:06 +0800914 return change_page_attr_set_clr(addr, numpages, mask, __pgprot(0), 0,
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700915 (array ? CPA_ARRAY : 0), NULL);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100916}
917
Shaohua Lid75586a2008-08-21 10:46:06 +0800918static inline int change_page_attr_clear(unsigned long *addr, int numpages,
919 pgprot_t mask, int array)
Thomas Gleixner72932c72008-01-30 13:34:08 +0100920{
Shaohua Lid75586a2008-08-21 10:46:06 +0800921 return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask, 0,
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700922 (array ? CPA_ARRAY : 0), NULL);
Thomas Gleixner72932c72008-01-30 13:34:08 +0100923}
924
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -0700925static inline int cpa_set_pages_array(struct page **pages, int numpages,
926 pgprot_t mask)
927{
928 return change_page_attr_set_clr(NULL, numpages, mask, __pgprot(0), 0,
929 CPA_PAGES_ARRAY, pages);
930}
931
932static inline int cpa_clear_pages_array(struct page **pages, int numpages,
933 pgprot_t mask)
934{
935 return change_page_attr_set_clr(NULL, numpages, __pgprot(0), mask, 0,
936 CPA_PAGES_ARRAY, pages);
937}
938
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700939int _set_memory_uc(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100940{
Suresh Siddhade33c442008-04-25 17:07:22 -0700941 /*
942 * for now UC MINUS. see comments in ioremap_nocache()
943 */
Shaohua Lid75586a2008-08-21 10:46:06 +0800944 return change_page_attr_set(&addr, numpages,
945 __pgprot(_PAGE_CACHE_UC_MINUS), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100946}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700947
948int set_memory_uc(unsigned long addr, int numpages)
949{
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -0700950 int ret;
951
Suresh Siddhade33c442008-04-25 17:07:22 -0700952 /*
953 * for now UC MINUS. see comments in ioremap_nocache()
954 */
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -0700955 ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
956 _PAGE_CACHE_UC_MINUS, NULL);
957 if (ret)
958 goto out_err;
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700959
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -0700960 ret = _set_memory_uc(addr, numpages);
961 if (ret)
962 goto out_free;
963
964 return 0;
965
966out_free:
967 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
968out_err:
969 return ret;
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700970}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100971EXPORT_SYMBOL(set_memory_uc);
972
Shaohua Lid75586a2008-08-21 10:46:06 +0800973int set_memory_array_uc(unsigned long *addr, int addrinarray)
974{
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -0700975 int i, j;
976 int ret;
977
Shaohua Lid75586a2008-08-21 10:46:06 +0800978 /*
979 * for now UC MINUS. see comments in ioremap_nocache()
980 */
981 for (i = 0; i < addrinarray; i++) {
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -0700982 ret = reserve_memtype(__pa(addr[i]), __pa(addr[i]) + PAGE_SIZE,
983 _PAGE_CACHE_UC_MINUS, NULL);
984 if (ret)
985 goto out_free;
Shaohua Lid75586a2008-08-21 10:46:06 +0800986 }
987
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -0700988 ret = change_page_attr_set(addr, addrinarray,
Shaohua Lid75586a2008-08-21 10:46:06 +0800989 __pgprot(_PAGE_CACHE_UC_MINUS), 1);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -0700990 if (ret)
991 goto out_free;
Rene Hermanc5e147c2008-08-22 01:02:20 +0200992
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -0700993 return 0;
994
995out_free:
996 for (j = 0; j < i; j++)
997 free_memtype(__pa(addr[j]), __pa(addr[j]) + PAGE_SIZE);
998
999 return ret;
Shaohua Lid75586a2008-08-21 10:46:06 +08001000}
1001EXPORT_SYMBOL(set_memory_array_uc);
1002
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -07001003int _set_memory_wc(unsigned long addr, int numpages)
1004{
venkatesh.pallipadi@intel.com3869c4a2009-04-09 14:26:50 -07001005 int ret;
Pallipadi, Venkateshbdc63402009-07-30 14:43:19 -07001006 unsigned long addr_copy = addr;
1007
venkatesh.pallipadi@intel.com3869c4a2009-04-09 14:26:50 -07001008 ret = change_page_attr_set(&addr, numpages,
1009 __pgprot(_PAGE_CACHE_UC_MINUS), 0);
venkatesh.pallipadi@intel.com3869c4a2009-04-09 14:26:50 -07001010 if (!ret) {
Pallipadi, Venkateshbdc63402009-07-30 14:43:19 -07001011 ret = change_page_attr_set_clr(&addr_copy, numpages,
1012 __pgprot(_PAGE_CACHE_WC),
1013 __pgprot(_PAGE_CACHE_MASK),
1014 0, 0, NULL);
venkatesh.pallipadi@intel.com3869c4a2009-04-09 14:26:50 -07001015 }
1016 return ret;
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -07001017}
1018
1019int set_memory_wc(unsigned long addr, int numpages)
1020{
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001021 int ret;
1022
Andreas Herrmann499f8f82008-06-10 16:06:21 +02001023 if (!pat_enabled)
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -07001024 return set_memory_uc(addr, numpages);
1025
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001026 ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
1027 _PAGE_CACHE_WC, NULL);
1028 if (ret)
1029 goto out_err;
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -07001030
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001031 ret = _set_memory_wc(addr, numpages);
1032 if (ret)
1033 goto out_free;
1034
1035 return 0;
1036
1037out_free:
1038 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
1039out_err:
1040 return ret;
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -07001041}
1042EXPORT_SYMBOL(set_memory_wc);
1043
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001044int _set_memory_wb(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001045{
Shaohua Lid75586a2008-08-21 10:46:06 +08001046 return change_page_attr_clear(&addr, numpages,
1047 __pgprot(_PAGE_CACHE_MASK), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001048}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001049
1050int set_memory_wb(unsigned long addr, int numpages)
1051{
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001052 int ret;
1053
1054 ret = _set_memory_wb(addr, numpages);
1055 if (ret)
1056 return ret;
1057
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -07001058 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001059 return 0;
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001060}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001061EXPORT_SYMBOL(set_memory_wb);
1062
Shaohua Lid75586a2008-08-21 10:46:06 +08001063int set_memory_array_wb(unsigned long *addr, int addrinarray)
1064{
1065 int i;
venkatesh.pallipadi@intel.coma5593e02009-04-09 14:26:48 -07001066 int ret;
1067
1068 ret = change_page_attr_clear(addr, addrinarray,
1069 __pgprot(_PAGE_CACHE_MASK), 1);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001070 if (ret)
1071 return ret;
Shaohua Lid75586a2008-08-21 10:46:06 +08001072
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001073 for (i = 0; i < addrinarray; i++)
1074 free_memtype(__pa(addr[i]), __pa(addr[i]) + PAGE_SIZE);
Rene Hermanc5e147c2008-08-22 01:02:20 +02001075
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001076 return 0;
Shaohua Lid75586a2008-08-21 10:46:06 +08001077}
1078EXPORT_SYMBOL(set_memory_array_wb);
1079
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001080int set_memory_x(unsigned long addr, int numpages)
1081{
Shaohua Lid75586a2008-08-21 10:46:06 +08001082 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_NX), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001083}
1084EXPORT_SYMBOL(set_memory_x);
1085
1086int set_memory_nx(unsigned long addr, int numpages)
1087{
Shaohua Lid75586a2008-08-21 10:46:06 +08001088 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_NX), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001089}
1090EXPORT_SYMBOL(set_memory_nx);
1091
1092int set_memory_ro(unsigned long addr, int numpages)
1093{
Shaohua Lid75586a2008-08-21 10:46:06 +08001094 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_RW), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001095}
Bruce Allana03352d2008-09-29 20:19:22 -07001096EXPORT_SYMBOL_GPL(set_memory_ro);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001097
1098int set_memory_rw(unsigned long addr, int numpages)
1099{
Shaohua Lid75586a2008-08-21 10:46:06 +08001100 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_RW), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001101}
Bruce Allana03352d2008-09-29 20:19:22 -07001102EXPORT_SYMBOL_GPL(set_memory_rw);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001103
1104int set_memory_np(unsigned long addr, int numpages)
1105{
Shaohua Lid75586a2008-08-21 10:46:06 +08001106 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_PRESENT), 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001107}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001108
Andi Kleenc9caa022008-03-12 03:53:29 +01001109int set_memory_4k(unsigned long addr, int numpages)
1110{
Shaohua Lid75586a2008-08-21 10:46:06 +08001111 return change_page_attr_set_clr(&addr, numpages, __pgprot(0),
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001112 __pgprot(0), 1, 0, NULL);
Andi Kleenc9caa022008-03-12 03:53:29 +01001113}
1114
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001115int set_pages_uc(struct page *page, int numpages)
1116{
1117 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001118
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001119 return set_memory_uc(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001120}
1121EXPORT_SYMBOL(set_pages_uc);
1122
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001123int set_pages_array_uc(struct page **pages, int addrinarray)
1124{
1125 unsigned long start;
1126 unsigned long end;
1127 int i;
1128 int free_idx;
1129
1130 for (i = 0; i < addrinarray; i++) {
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001131 if (PageHighMem(pages[i]))
1132 continue;
1133 start = page_to_pfn(pages[i]) << PAGE_SHIFT;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001134 end = start + PAGE_SIZE;
1135 if (reserve_memtype(start, end, _PAGE_CACHE_UC_MINUS, NULL))
1136 goto err_out;
1137 }
1138
1139 if (cpa_set_pages_array(pages, addrinarray,
1140 __pgprot(_PAGE_CACHE_UC_MINUS)) == 0) {
1141 return 0; /* Success */
1142 }
1143err_out:
1144 free_idx = i;
1145 for (i = 0; i < free_idx; i++) {
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001146 if (PageHighMem(pages[i]))
1147 continue;
1148 start = page_to_pfn(pages[i]) << PAGE_SHIFT;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001149 end = start + PAGE_SIZE;
1150 free_memtype(start, end);
1151 }
1152 return -EINVAL;
1153}
1154EXPORT_SYMBOL(set_pages_array_uc);
1155
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001156int set_pages_wb(struct page *page, int numpages)
1157{
1158 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001159
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001160 return set_memory_wb(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001161}
1162EXPORT_SYMBOL(set_pages_wb);
1163
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001164int set_pages_array_wb(struct page **pages, int addrinarray)
1165{
1166 int retval;
1167 unsigned long start;
1168 unsigned long end;
1169 int i;
1170
1171 retval = cpa_clear_pages_array(pages, addrinarray,
1172 __pgprot(_PAGE_CACHE_MASK));
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001173 if (retval)
1174 return retval;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001175
1176 for (i = 0; i < addrinarray; i++) {
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001177 if (PageHighMem(pages[i]))
1178 continue;
1179 start = page_to_pfn(pages[i]) << PAGE_SHIFT;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001180 end = start + PAGE_SIZE;
1181 free_memtype(start, end);
1182 }
1183
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001184 return 0;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001185}
1186EXPORT_SYMBOL(set_pages_array_wb);
1187
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001188int set_pages_x(struct page *page, int numpages)
1189{
1190 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001191
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001192 return set_memory_x(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001193}
1194EXPORT_SYMBOL(set_pages_x);
1195
1196int set_pages_nx(struct page *page, int numpages)
1197{
1198 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001199
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001200 return set_memory_nx(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001201}
1202EXPORT_SYMBOL(set_pages_nx);
1203
1204int set_pages_ro(struct page *page, int numpages)
1205{
1206 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001207
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001208 return set_memory_ro(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001209}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001210
1211int set_pages_rw(struct page *page, int numpages)
1212{
1213 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001214
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001215 return set_memory_rw(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001216}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001217
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218#ifdef CONFIG_DEBUG_PAGEALLOC
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001219
1220static int __set_pages_p(struct page *page, int numpages)
1221{
Shaohua Lid75586a2008-08-21 10:46:06 +08001222 unsigned long tempaddr = (unsigned long) page_address(page);
1223 struct cpa_data cpa = { .vaddr = &tempaddr,
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001224 .numpages = numpages,
1225 .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW),
Shaohua Lid75586a2008-08-21 10:46:06 +08001226 .mask_clr = __pgprot(0),
1227 .flags = 0};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001228
Suresh Siddha55121b42008-09-23 14:00:40 -07001229 /*
1230 * No alias checking needed for setting present flag. otherwise,
1231 * we may need to break large pages for 64-bit kernel text
1232 * mappings (this adds to complexity if we want to do this from
1233 * atomic context especially). Let's keep it simple!
1234 */
1235 return __change_page_attr_set_clr(&cpa, 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001236}
1237
1238static int __set_pages_np(struct page *page, int numpages)
1239{
Shaohua Lid75586a2008-08-21 10:46:06 +08001240 unsigned long tempaddr = (unsigned long) page_address(page);
1241 struct cpa_data cpa = { .vaddr = &tempaddr,
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001242 .numpages = numpages,
1243 .mask_set = __pgprot(0),
Shaohua Lid75586a2008-08-21 10:46:06 +08001244 .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW),
1245 .flags = 0};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001246
Suresh Siddha55121b42008-09-23 14:00:40 -07001247 /*
1248 * No alias checking needed for setting not present flag. otherwise,
1249 * we may need to break large pages for 64-bit kernel text
1250 * mappings (this adds to complexity if we want to do this from
1251 * atomic context especially). Let's keep it simple!
1252 */
1253 return __change_page_attr_set_clr(&cpa, 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001254}
1255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256void kernel_map_pages(struct page *page, int numpages, int enable)
1257{
1258 if (PageHighMem(page))
1259 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001260 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -07001261 debug_check_no_locks_freed(page_address(page),
1262 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001263 }
Ingo Molnarde5097c2006-01-09 15:59:21 -08001264
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001265 /*
Ingo Molnar12d6f212008-01-30 13:33:58 +01001266 * If page allocator is not up yet then do not call c_p_a():
1267 */
1268 if (!debug_pagealloc_enabled)
1269 return;
1270
1271 /*
Ingo Molnarf8d84062008-02-13 14:09:53 +01001272 * The return value is ignored as the calls cannot fail.
Suresh Siddha55121b42008-09-23 14:00:40 -07001273 * Large pages for identity mappings are not used at boot time
1274 * and hence no memory allocations during large page split.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 */
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001276 if (enable)
1277 __set_pages_p(page, numpages);
1278 else
1279 __set_pages_np(page, numpages);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001280
1281 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +01001282 * We should perform an IPI and flush all tlbs,
1283 * but that can deadlock->flush only current cpu:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 */
1285 __flush_tlb_all();
1286}
Rafael J. Wysocki8a235ef2008-02-20 01:47:44 +01001287
1288#ifdef CONFIG_HIBERNATION
1289
1290bool kernel_page_present(struct page *page)
1291{
1292 unsigned int level;
1293 pte_t *pte;
1294
1295 if (PageHighMem(page))
1296 return false;
1297
1298 pte = lookup_address((unsigned long)page_address(page), &level);
1299 return (pte_val(*pte) & _PAGE_PRESENT);
1300}
1301
1302#endif /* CONFIG_HIBERNATION */
1303
1304#endif /* CONFIG_DEBUG_PAGEALLOC */
Arjan van de Vend1028a12008-01-30 13:34:07 +01001305
1306/*
1307 * The testcases use internal knowledge of the implementation that shouldn't
1308 * be exposed to the rest of the kernel. Include these directly here.
1309 */
1310#ifdef CONFIG_CPA_DEBUG
1311#include "pageattr-test.c"
1312#endif