]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/x86/mm/pageattr.c
x86: cpa, add the PAT bit defines
[net-next-2.6.git] / arch / x86 / mm / pageattr.c
CommitLineData
9f4c815c
IM
1/*
2 * Copyright 2002 Andi Kleen, SuSE Labs.
1da177e4 3 * Thanks to Ben LaHaise for precious feedback.
9f4c815c 4 */
1da177e4 5#include <linux/highmem.h>
8192206d 6#include <linux/bootmem.h>
1da177e4 7#include <linux/module.h>
9f4c815c 8#include <linux/sched.h>
1da177e4 9#include <linux/slab.h>
9f4c815c
IM
10#include <linux/mm.h>
11
950f9d95 12#include <asm/e820.h>
1da177e4
LT
13#include <asm/processor.h>
14#include <asm/tlbflush.h>
f8af095d 15#include <asm/sections.h>
9f4c815c
IM
16#include <asm/uaccess.h>
17#include <asm/pgalloc.h>
1da177e4 18
ed724be6
AV
19static inline int
20within(unsigned long addr, unsigned long start, unsigned long end)
687c4825 21{
ed724be6
AV
22 return addr >= start && addr < end;
23}
24
d7c8f21a
TG
25/*
26 * Flushing functions
27 */
cd8ddf1a 28
cd8ddf1a
TG
29/**
30 * clflush_cache_range - flush a cache range with clflush
31 * @addr: virtual start address
32 * @size: number of bytes to flush
33 *
34 * clflush is an unordered instruction which needs fencing with mfence
35 * to avoid ordering issues.
36 */
4c61afcd 37void clflush_cache_range(void *vaddr, unsigned int size)
d7c8f21a 38{
4c61afcd 39 void *vend = vaddr + size - 1;
d7c8f21a 40
cd8ddf1a 41 mb();
4c61afcd
IM
42
43 for (; vaddr < vend; vaddr += boot_cpu_data.x86_clflush_size)
44 clflush(vaddr);
45 /*
46 * Flush any possible final partial cacheline:
47 */
48 clflush(vend);
49
cd8ddf1a 50 mb();
d7c8f21a
TG
51}
52
af1e6844 53static void __cpa_flush_all(void *arg)
d7c8f21a
TG
54{
55 /*
56 * Flush all to work around Errata in early athlons regarding
57 * large page flushing.
58 */
59 __flush_tlb_all();
60
61 if (boot_cpu_data.x86_model >= 4)
62 wbinvd();
63}
64
af1e6844 65static void cpa_flush_all(void)
d7c8f21a
TG
66{
67 BUG_ON(irqs_disabled());
68
af1e6844 69 on_each_cpu(__cpa_flush_all, NULL, 1, 1);
d7c8f21a
TG
70}
71
57a6a46a
TG
72static void __cpa_flush_range(void *arg)
73{
57a6a46a
TG
74 /*
75 * We could optimize that further and do individual per page
76 * tlb invalidates for a low number of pages. Caveat: we must
77 * flush the high aliases on 64bit as well.
78 */
79 __flush_tlb_all();
57a6a46a
TG
80}
81
4c61afcd 82static void cpa_flush_range(unsigned long start, int numpages)
57a6a46a 83{
4c61afcd
IM
84 unsigned int i, level;
85 unsigned long addr;
86
57a6a46a 87 BUG_ON(irqs_disabled());
4c61afcd 88 WARN_ON(PAGE_ALIGN(start) != start);
57a6a46a 89
3b233e52 90 on_each_cpu(__cpa_flush_range, NULL, 1, 1);
57a6a46a 91
3b233e52
TG
92 /*
93 * We only need to flush on one CPU,
94 * clflush is a MESI-coherent instruction that
95 * will cause all other CPUs to flush the same
96 * cachelines:
97 */
4c61afcd
IM
98 for (i = 0, addr = start; i < numpages; i++, addr += PAGE_SIZE) {
99 pte_t *pte = lookup_address(addr, &level);
100
101 /*
102 * Only flush present addresses:
103 */
104 if (pte && pte_present(*pte))
105 clflush_cache_range((void *) addr, PAGE_SIZE);
106 }
57a6a46a
TG
107}
108
cc0f21bb
AV
109#define HIGH_MAP_START __START_KERNEL_map
110#define HIGH_MAP_END (__START_KERNEL_map + KERNEL_TEXT_SIZE)
111
112
113/*
114 * Converts a virtual address to a X86-64 highmap address
115 */
116static unsigned long virt_to_highmap(void *address)
117{
118#ifdef CONFIG_X86_64
119 return __pa((unsigned long)address) + HIGH_MAP_START - phys_base;
120#else
121 return (unsigned long)address;
122#endif
123}
124
ed724be6
AV
125/*
126 * Certain areas of memory on x86 require very specific protection flags,
127 * for example the BIOS area or kernel text. Callers don't always get this
128 * right (again, ioremap() on BIOS memory is not uncommon) so this function
129 * checks and fixes these known static required protection bits.
130 */
131static inline pgprot_t static_protections(pgprot_t prot, unsigned long address)
132{
133 pgprot_t forbidden = __pgprot(0);
134
687c4825 135 /*
ed724be6
AV
136 * The BIOS area between 640k and 1Mb needs to be executable for
137 * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support.
687c4825 138 */
ed724be6
AV
139 if (within(__pa(address), BIOS_BEGIN, BIOS_END))
140 pgprot_val(forbidden) |= _PAGE_NX;
141
142 /*
143 * The kernel text needs to be executable for obvious reasons
144 * Does not cover __inittext since that is gone later on
145 */
146 if (within(address, (unsigned long)_text, (unsigned long)_etext))
147 pgprot_val(forbidden) |= _PAGE_NX;
cc0f21bb
AV
148 /*
149 * Do the same for the x86-64 high kernel mapping
150 */
151 if (within(address, virt_to_highmap(_text), virt_to_highmap(_etext)))
152 pgprot_val(forbidden) |= _PAGE_NX;
153
ed724be6
AV
154
155#ifdef CONFIG_DEBUG_RODATA
156 /* The .rodata section needs to be read-only */
157 if (within(address, (unsigned long)__start_rodata,
158 (unsigned long)__end_rodata))
159 pgprot_val(forbidden) |= _PAGE_RW;
cc0f21bb
AV
160 /*
161 * Do the same for the x86-64 high kernel mapping
162 */
163 if (within(address, virt_to_highmap(__start_rodata),
164 virt_to_highmap(__end_rodata)))
165 pgprot_val(forbidden) |= _PAGE_RW;
ed724be6
AV
166#endif
167
168 prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden));
687c4825
IM
169
170 return prot;
171}
172
f0646e43 173pte_t *lookup_address(unsigned long address, int *level)
9f4c815c 174{
1da177e4
LT
175 pgd_t *pgd = pgd_offset_k(address);
176 pud_t *pud;
177 pmd_t *pmd;
9f4c815c 178
30551bb3
TG
179 *level = PG_LEVEL_NONE;
180
1da177e4
LT
181 if (pgd_none(*pgd))
182 return NULL;
183 pud = pud_offset(pgd, address);
184 if (pud_none(*pud))
185 return NULL;
186 pmd = pmd_offset(pud, address);
187 if (pmd_none(*pmd))
188 return NULL;
30551bb3
TG
189
190 *level = PG_LEVEL_2M;
1da177e4
LT
191 if (pmd_large(*pmd))
192 return (pte_t *)pmd;
1da177e4 193
30551bb3 194 *level = PG_LEVEL_4K;
9f4c815c
IM
195 return pte_offset_kernel(pmd, address);
196}
197
9a3dc780 198static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
9f4c815c 199{
9f4c815c
IM
200 /* change init_mm */
201 set_pte_atomic(kpte, pte);
44af6c41 202#ifdef CONFIG_X86_32
e4b71dcf 203 if (!SHARED_KERNEL_PMD) {
44af6c41
IM
204 struct page *page;
205
e3ed910d 206 list_for_each_entry(page, &pgd_list, lru) {
44af6c41
IM
207 pgd_t *pgd;
208 pud_t *pud;
209 pmd_t *pmd;
210
211 pgd = (pgd_t *)page_address(page) + pgd_index(address);
212 pud = pud_offset(pgd, address);
213 pmd = pmd_offset(pud, address);
214 set_pte_atomic((pte_t *)pmd, pte);
215 }
1da177e4 216 }
44af6c41 217#endif
1da177e4
LT
218}
219
7afe15b9 220static int split_large_page(pte_t *kpte, unsigned long address)
bb5c2dbd 221{
7afe15b9 222 pgprot_t ref_prot = pte_pgprot(pte_clrhuge(*kpte));
12d6f21e 223 gfp_t gfp_flags = GFP_KERNEL;
63c1dcf4 224 unsigned long flags, addr, pfn;
bb5c2dbd
IM
225 pte_t *pbase, *tmp;
226 struct page *base;
86f03989 227 unsigned int i, level;
bb5c2dbd 228
12d6f21e 229#ifdef CONFIG_DEBUG_PAGEALLOC
86f03989
IM
230 gfp_flags = __GFP_HIGH | __GFP_NOFAIL | __GFP_NOWARN;
231 gfp_flags = GFP_ATOMIC | __GFP_NOWARN;
12d6f21e
IM
232#endif
233 base = alloc_pages(gfp_flags, 0);
bb5c2dbd
IM
234 if (!base)
235 return -ENOMEM;
236
9a3dc780 237 spin_lock_irqsave(&pgd_lock, flags);
bb5c2dbd
IM
238 /*
239 * Check for races, another CPU might have split this page
240 * up for us already:
241 */
242 tmp = lookup_address(address, &level);
5508a748
IM
243 if (tmp != kpte) {
244 WARN_ON_ONCE(1);
bb5c2dbd 245 goto out_unlock;
5508a748 246 }
bb5c2dbd
IM
247
248 address = __pa(address);
249 addr = address & LARGE_PAGE_MASK;
250 pbase = (pte_t *)page_address(base);
44af6c41 251#ifdef CONFIG_X86_32
bb5c2dbd 252 paravirt_alloc_pt(&init_mm, page_to_pfn(base));
44af6c41 253#endif
bb5c2dbd 254
63c1dcf4
TG
255 /*
256 * Get the target pfn from the original entry:
257 */
258 pfn = pte_pfn(*kpte);
259 for (i = 0; i < PTRS_PER_PTE; i++, pfn++)
260 set_pte(&pbase[i], pfn_pte(pfn, ref_prot));
bb5c2dbd
IM
261
262 /*
4c881ca1
HY
263 * Install the new, split up pagetable. Important detail here:
264 *
265 * On Intel the NX bit of all levels must be cleared to make a
266 * page executable. See section 4.13.2 of Intel 64 and IA-32
267 * Architectures Software Developer's Manual).
bb5c2dbd 268 */
4c881ca1 269 ref_prot = pte_pgprot(pte_mkexec(pte_clrhuge(*kpte)));
9a3dc780 270 __set_pmd_pte(kpte, address, mk_pte(base, ref_prot));
bb5c2dbd
IM
271 base = NULL;
272
273out_unlock:
9a3dc780 274 spin_unlock_irqrestore(&pgd_lock, flags);
bb5c2dbd
IM
275
276 if (base)
277 __free_pages(base, 0);
278
279 return 0;
280}
281
44af6c41 282static int
626c2c9d 283__change_page_attr(unsigned long address, pgprot_t mask_set, pgprot_t mask_clr)
9f4c815c 284{
1da177e4 285 struct page *kpte_page;
bb5c2dbd 286 int level, err = 0;
9f4c815c 287 pte_t *kpte;
1da177e4 288
97f99fed 289repeat:
f0646e43 290 kpte = lookup_address(address, &level);
1da177e4
LT
291 if (!kpte)
292 return -EINVAL;
9f4c815c 293
1da177e4 294 kpte_page = virt_to_page(kpte);
65d2f0bc
AK
295 BUG_ON(PageLRU(kpte_page));
296 BUG_ON(PageCompound(kpte_page));
297
30551bb3 298 if (level == PG_LEVEL_4K) {
86f03989 299 pte_t new_pte, old_pte = *kpte;
626c2c9d
AV
300 pgprot_t new_prot = pte_pgprot(old_pte);
301
302 if(!pte_val(old_pte)) {
303 WARN_ON_ONCE(1);
304 return -EINVAL;
305 }
86f03989
IM
306
307 pgprot_val(new_prot) &= ~pgprot_val(mask_clr);
308 pgprot_val(new_prot) |= pgprot_val(mask_set);
309
310 new_prot = static_protections(new_prot, address);
311
626c2c9d
AV
312 /*
313 * We need to keep the pfn from the existing PTE,
314 * after all we're only going to change it's attributes
315 * not the memory it points to
316 */
317 new_pte = pfn_pte(pte_pfn(old_pte), canon_pgprot(new_prot));
86f03989
IM
318 set_pte_atomic(kpte, new_pte);
319 } else {
7afe15b9 320 err = split_large_page(kpte, address);
bb5c2dbd
IM
321 if (!err)
322 goto repeat;
1da177e4 323 }
bb5c2dbd 324 return err;
9f4c815c 325}
1da177e4 326
44af6c41
IM
327/**
328 * change_page_attr_addr - Change page table attributes in linear mapping
329 * @address: Virtual address in linear mapping.
44af6c41 330 * @prot: New page table attribute (PAGE_*)
1da177e4 331 *
44af6c41
IM
332 * Change page attributes of a page in the direct mapping. This is a variant
333 * of change_page_attr() that also works on memory holes that do not have
334 * mem_map entry (pfn_valid() is false).
9f4c815c 335 *
44af6c41 336 * See change_page_attr() documentation for more details.
75cbade8
AV
337 *
338 * Modules and drivers should use the set_memory_* APIs instead.
1da177e4 339 */
44af6c41 340
0879750f 341
86f03989
IM
342static int
343change_page_attr_addr(unsigned long address, pgprot_t mask_set,
0879750f 344 pgprot_t mask_clr)
1da177e4 345{
0879750f 346 int err;
44af6c41
IM
347
348#ifdef CONFIG_X86_64
626c2c9d
AV
349 unsigned long phys_addr = __pa(address);
350
0879750f
TG
351 /*
352 * If we are inside the high mapped kernel range, then we
353 * fixup the low mapping first. __va() returns the virtual
354 * address in the linear mapping:
355 */
356 if (within(address, HIGH_MAP_START, HIGH_MAP_END))
357 address = (unsigned long) __va(phys_addr);
44af6c41
IM
358#endif
359
626c2c9d 360 err = __change_page_attr(address, mask_set, mask_clr);
0879750f
TG
361 if (err)
362 return err;
44af6c41 363
44af6c41 364#ifdef CONFIG_X86_64
488fd995 365 /*
0879750f
TG
366 * If the physical address is inside the kernel map, we need
367 * to touch the high mapped kernel as well:
488fd995 368 */
0879750f
TG
369 if (within(phys_addr, 0, KERNEL_TEXT_SIZE)) {
370 /*
371 * Calc the high mapping address. See __phys_addr()
372 * for the non obvious details.
cc0f21bb
AV
373 *
374 * Note that NX and other required permissions are
375 * checked in static_protections().
0879750f
TG
376 */
377 address = phys_addr + HIGH_MAP_START - phys_base;
0879750f 378
86f03989 379 /*
0879750f
TG
380 * Our high aliases are imprecise, because we check
381 * everything between 0 and KERNEL_TEXT_SIZE, so do
382 * not propagate lookup failures back to users:
86f03989 383 */
626c2c9d 384 __change_page_attr(address, mask_set, mask_clr);
9f4c815c 385 }
488fd995 386#endif
1da177e4
LT
387 return err;
388}
389
ff31452b
TG
390static int __change_page_attr_set_clr(unsigned long addr, int numpages,
391 pgprot_t mask_set, pgprot_t mask_clr)
392{
86f03989
IM
393 unsigned int i;
394 int ret;
ff31452b 395
86f03989
IM
396 for (i = 0; i < numpages ; i++, addr += PAGE_SIZE) {
397 ret = change_page_attr_addr(addr, mask_set, mask_clr);
ff31452b
TG
398 if (ret)
399 return ret;
ff31452b
TG
400 }
401
402 return 0;
403}
404
405static int change_page_attr_set_clr(unsigned long addr, int numpages,
406 pgprot_t mask_set, pgprot_t mask_clr)
407{
331e4065
TG
408 int ret;
409
410 /*
411 * Check, if we are requested to change a not supported
412 * feature:
413 */
414 mask_set = canon_pgprot(mask_set);
415 mask_clr = canon_pgprot(mask_clr);
416 if (!pgprot_val(mask_set) && !pgprot_val(mask_clr))
417 return 0;
418
419 ret = __change_page_attr_set_clr(addr, numpages, mask_set, mask_clr);
ff31452b 420
57a6a46a
TG
421 /*
422 * On success we use clflush, when the CPU supports it to
423 * avoid the wbindv. If the CPU does not support it and in the
af1e6844 424 * error case we fall back to cpa_flush_all (which uses
57a6a46a
TG
425 * wbindv):
426 */
427 if (!ret && cpu_has_clflush)
428 cpa_flush_range(addr, numpages);
429 else
af1e6844 430 cpa_flush_all();
ff31452b
TG
431
432 return ret;
433}
434
56744546
TG
435static inline int change_page_attr_set(unsigned long addr, int numpages,
436 pgprot_t mask)
75cbade8 437{
56744546 438 return change_page_attr_set_clr(addr, numpages, mask, __pgprot(0));
75cbade8
AV
439}
440
56744546
TG
441static inline int change_page_attr_clear(unsigned long addr, int numpages,
442 pgprot_t mask)
72932c7a 443{
5827040d 444 return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask);
72932c7a
TG
445}
446
447int set_memory_uc(unsigned long addr, int numpages)
448{
449 return change_page_attr_set(addr, numpages,
450 __pgprot(_PAGE_PCD | _PAGE_PWT));
75cbade8
AV
451}
452EXPORT_SYMBOL(set_memory_uc);
453
454int set_memory_wb(unsigned long addr, int numpages)
455{
72932c7a
TG
456 return change_page_attr_clear(addr, numpages,
457 __pgprot(_PAGE_PCD | _PAGE_PWT));
75cbade8
AV
458}
459EXPORT_SYMBOL(set_memory_wb);
460
461int set_memory_x(unsigned long addr, int numpages)
462{
72932c7a 463 return change_page_attr_clear(addr, numpages, __pgprot(_PAGE_NX));
75cbade8
AV
464}
465EXPORT_SYMBOL(set_memory_x);
466
467int set_memory_nx(unsigned long addr, int numpages)
468{
72932c7a 469 return change_page_attr_set(addr, numpages, __pgprot(_PAGE_NX));
75cbade8
AV
470}
471EXPORT_SYMBOL(set_memory_nx);
472
473int set_memory_ro(unsigned long addr, int numpages)
474{
72932c7a 475 return change_page_attr_clear(addr, numpages, __pgprot(_PAGE_RW));
75cbade8 476}
75cbade8
AV
477
478int set_memory_rw(unsigned long addr, int numpages)
479{
72932c7a 480 return change_page_attr_set(addr, numpages, __pgprot(_PAGE_RW));
75cbade8 481}
f62d0f00
IM
482
483int set_memory_np(unsigned long addr, int numpages)
484{
72932c7a 485 return change_page_attr_clear(addr, numpages, __pgprot(_PAGE_PRESENT));
f62d0f00 486}
75cbade8
AV
487
488int set_pages_uc(struct page *page, int numpages)
489{
490 unsigned long addr = (unsigned long)page_address(page);
75cbade8 491
d7c8f21a 492 return set_memory_uc(addr, numpages);
75cbade8
AV
493}
494EXPORT_SYMBOL(set_pages_uc);
495
496int set_pages_wb(struct page *page, int numpages)
497{
498 unsigned long addr = (unsigned long)page_address(page);
75cbade8 499
d7c8f21a 500 return set_memory_wb(addr, numpages);
75cbade8
AV
501}
502EXPORT_SYMBOL(set_pages_wb);
503
504int set_pages_x(struct page *page, int numpages)
505{
506 unsigned long addr = (unsigned long)page_address(page);
75cbade8 507
d7c8f21a 508 return set_memory_x(addr, numpages);
75cbade8
AV
509}
510EXPORT_SYMBOL(set_pages_x);
511
512int set_pages_nx(struct page *page, int numpages)
513{
514 unsigned long addr = (unsigned long)page_address(page);
75cbade8 515
d7c8f21a 516 return set_memory_nx(addr, numpages);
75cbade8
AV
517}
518EXPORT_SYMBOL(set_pages_nx);
519
520int set_pages_ro(struct page *page, int numpages)
521{
522 unsigned long addr = (unsigned long)page_address(page);
75cbade8 523
d7c8f21a 524 return set_memory_ro(addr, numpages);
75cbade8 525}
75cbade8
AV
526
527int set_pages_rw(struct page *page, int numpages)
528{
529 unsigned long addr = (unsigned long)page_address(page);
e81d5dc4 530
d7c8f21a 531 return set_memory_rw(addr, numpages);
78c94aba
IM
532}
533
1da177e4 534
56744546
TG
535#if defined(CONFIG_DEBUG_PAGEALLOC) || defined(CONFIG_CPA_DEBUG)
536static inline int __change_page_attr_set(unsigned long addr, int numpages,
537 pgprot_t mask)
538{
539 return __change_page_attr_set_clr(addr, numpages, mask, __pgprot(0));
540}
541
542static inline int __change_page_attr_clear(unsigned long addr, int numpages,
543 pgprot_t mask)
544{
545 return __change_page_attr_set_clr(addr, numpages, __pgprot(0), mask);
546}
547#endif
548
1da177e4 549#ifdef CONFIG_DEBUG_PAGEALLOC
f62d0f00
IM
550
551static int __set_pages_p(struct page *page, int numpages)
552{
553 unsigned long addr = (unsigned long)page_address(page);
72932c7a
TG
554
555 return __change_page_attr_set(addr, numpages,
556 __pgprot(_PAGE_PRESENT | _PAGE_RW));
f62d0f00
IM
557}
558
559static int __set_pages_np(struct page *page, int numpages)
560{
561 unsigned long addr = (unsigned long)page_address(page);
72932c7a
TG
562
563 return __change_page_attr_clear(addr, numpages,
564 __pgprot(_PAGE_PRESENT));
f62d0f00
IM
565}
566
1da177e4
LT
567void kernel_map_pages(struct page *page, int numpages, int enable)
568{
569 if (PageHighMem(page))
570 return;
9f4c815c 571 if (!enable) {
f9b8404c
IM
572 debug_check_no_locks_freed(page_address(page),
573 numpages * PAGE_SIZE);
9f4c815c 574 }
de5097c2 575
12d6f21e
IM
576 /*
577 * If page allocator is not up yet then do not call c_p_a():
578 */
579 if (!debug_pagealloc_enabled)
580 return;
581
9f4c815c 582 /*
e4b71dcf
IM
583 * The return value is ignored - the calls cannot fail,
584 * large pages are disabled at boot time:
1da177e4 585 */
f62d0f00
IM
586 if (enable)
587 __set_pages_p(page, numpages);
588 else
589 __set_pages_np(page, numpages);
9f4c815c
IM
590
591 /*
e4b71dcf
IM
592 * We should perform an IPI and flush all tlbs,
593 * but that can deadlock->flush only current cpu:
1da177e4
LT
594 */
595 __flush_tlb_all();
596}
597#endif
d1028a15
AV
598
599/*
600 * The testcases use internal knowledge of the implementation that shouldn't
601 * be exposed to the rest of the kernel. Include these directly here.
602 */
603#ifdef CONFIG_CPA_DEBUG
604#include "pageattr-test.c"
605#endif