Merge branch 'percpu-for-linus' into percpu-for-next
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / x86 / mm / pageattr.c
blobdce282f65700507ee849ecf6e55b9fad3ece0347
1 /*
2 * Copyright 2002 Andi Kleen, SuSE Labs.
3 * Thanks to Ben LaHaise for precious feedback.
4 */
5 #include <linux/highmem.h>
6 #include <linux/bootmem.h>
7 #include <linux/module.h>
8 #include <linux/sched.h>
9 #include <linux/slab.h>
10 #include <linux/mm.h>
11 #include <linux/interrupt.h>
12 #include <linux/seq_file.h>
13 #include <linux/debugfs.h>
14 #include <linux/pfn.h>
15 #include <linux/percpu.h>
17 #include <asm/e820.h>
18 #include <asm/processor.h>
19 #include <asm/tlbflush.h>
20 #include <asm/sections.h>
21 #include <asm/setup.h>
22 #include <asm/uaccess.h>
23 #include <asm/pgalloc.h>
24 #include <asm/proto.h>
25 #include <asm/pat.h>
28 * The current flushing context - we pass it instead of 5 arguments:
30 struct cpa_data {
31 unsigned long *vaddr;
32 pgprot_t mask_set;
33 pgprot_t mask_clr;
34 int numpages;
35 int flags;
36 unsigned long pfn;
37 unsigned force_split : 1;
38 int curpage;
39 struct page **pages;
43 * Serialize cpa() (for !DEBUG_PAGEALLOC which uses large identity mappings)
44 * using cpa_lock. So that we don't allow any other cpu, with stale large tlb
45 * entries change the page attribute in parallel to some other cpu
46 * splitting a large page entry along with changing the attribute.
48 static DEFINE_SPINLOCK(cpa_lock);
50 #define CPA_FLUSHTLB 1
51 #define CPA_ARRAY 2
52 #define CPA_PAGES_ARRAY 4
54 #ifdef CONFIG_PROC_FS
55 static unsigned long direct_pages_count[PG_LEVEL_NUM];
57 void update_page_count(int level, unsigned long pages)
59 unsigned long flags;
61 /* Protect against CPA */
62 spin_lock_irqsave(&pgd_lock, flags);
63 direct_pages_count[level] += pages;
64 spin_unlock_irqrestore(&pgd_lock, flags);
67 static void split_page_count(int level)
69 direct_pages_count[level]--;
70 direct_pages_count[level - 1] += PTRS_PER_PTE;
73 void arch_report_meminfo(struct seq_file *m)
75 seq_printf(m, "DirectMap4k: %8lu kB\n",
76 direct_pages_count[PG_LEVEL_4K] << 2);
77 #if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
78 seq_printf(m, "DirectMap2M: %8lu kB\n",
79 direct_pages_count[PG_LEVEL_2M] << 11);
80 #else
81 seq_printf(m, "DirectMap4M: %8lu kB\n",
82 direct_pages_count[PG_LEVEL_2M] << 12);
83 #endif
84 #ifdef CONFIG_X86_64
85 if (direct_gbpages)
86 seq_printf(m, "DirectMap1G: %8lu kB\n",
87 direct_pages_count[PG_LEVEL_1G] << 20);
88 #endif
90 #else
91 static inline void split_page_count(int level) { }
92 #endif
94 #ifdef CONFIG_X86_64
96 static inline unsigned long highmap_start_pfn(void)
98 return __pa(_text) >> PAGE_SHIFT;
101 static inline unsigned long highmap_end_pfn(void)
103 return __pa(roundup(_brk_end, PMD_SIZE)) >> PAGE_SHIFT;
106 #endif
108 #ifdef CONFIG_DEBUG_PAGEALLOC
109 # define debug_pagealloc 1
110 #else
111 # define debug_pagealloc 0
112 #endif
114 static inline int
115 within(unsigned long addr, unsigned long start, unsigned long end)
117 return addr >= start && addr < end;
121 * Flushing functions
125 * clflush_cache_range - flush a cache range with clflush
126 * @addr: virtual start address
127 * @size: number of bytes to flush
129 * clflush is an unordered instruction which needs fencing with mfence
130 * to avoid ordering issues.
132 void clflush_cache_range(void *vaddr, unsigned int size)
134 void *vend = vaddr + size - 1;
136 mb();
138 for (; vaddr < vend; vaddr += boot_cpu_data.x86_clflush_size)
139 clflush(vaddr);
141 * Flush any possible final partial cacheline:
143 clflush(vend);
145 mb();
148 static void __cpa_flush_all(void *arg)
150 unsigned long cache = (unsigned long)arg;
153 * Flush all to work around Errata in early athlons regarding
154 * large page flushing.
156 __flush_tlb_all();
158 if (cache && boot_cpu_data.x86 >= 4)
159 wbinvd();
162 static void cpa_flush_all(unsigned long cache)
164 BUG_ON(irqs_disabled());
166 on_each_cpu(__cpa_flush_all, (void *) cache, 1);
169 static void __cpa_flush_range(void *arg)
172 * We could optimize that further and do individual per page
173 * tlb invalidates for a low number of pages. Caveat: we must
174 * flush the high aliases on 64bit as well.
176 __flush_tlb_all();
179 static void cpa_flush_range(unsigned long start, int numpages, int cache)
181 unsigned int i, level;
182 unsigned long addr;
184 BUG_ON(irqs_disabled());
185 WARN_ON(PAGE_ALIGN(start) != start);
187 on_each_cpu(__cpa_flush_range, NULL, 1);
189 if (!cache)
190 return;
193 * We only need to flush on one CPU,
194 * clflush is a MESI-coherent instruction that
195 * will cause all other CPUs to flush the same
196 * cachelines:
198 for (i = 0, addr = start; i < numpages; i++, addr += PAGE_SIZE) {
199 pte_t *pte = lookup_address(addr, &level);
202 * Only flush present addresses:
204 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
205 clflush_cache_range((void *) addr, PAGE_SIZE);
209 static void cpa_flush_array(unsigned long *start, int numpages, int cache,
210 int in_flags, struct page **pages)
212 unsigned int i, level;
213 unsigned long do_wbinvd = cache && numpages >= 1024; /* 4M threshold */
215 BUG_ON(irqs_disabled());
217 on_each_cpu(__cpa_flush_all, (void *) do_wbinvd, 1);
219 if (!cache || do_wbinvd)
220 return;
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:
228 for (i = 0; i < numpages; i++) {
229 unsigned long addr;
230 pte_t *pte;
232 if (in_flags & CPA_PAGES_ARRAY)
233 addr = (unsigned long)page_address(pages[i]);
234 else
235 addr = start[i];
237 pte = lookup_address(addr, &level);
240 * Only flush present addresses:
242 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
243 clflush_cache_range((void *)addr, PAGE_SIZE);
248 * Certain areas of memory on x86 require very specific protection flags,
249 * for example the BIOS area or kernel text. Callers don't always get this
250 * right (again, ioremap() on BIOS memory is not uncommon) so this function
251 * checks and fixes these known static required protection bits.
253 static inline pgprot_t static_protections(pgprot_t prot, unsigned long address,
254 unsigned long pfn)
256 pgprot_t forbidden = __pgprot(0);
259 * The BIOS area between 640k and 1Mb needs to be executable for
260 * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support.
262 if (within(pfn, BIOS_BEGIN >> PAGE_SHIFT, BIOS_END >> PAGE_SHIFT))
263 pgprot_val(forbidden) |= _PAGE_NX;
266 * The kernel text needs to be executable for obvious reasons
267 * Does not cover __inittext since that is gone later on. On
268 * 64bit we do not enforce !NX on the low mapping
270 if (within(address, (unsigned long)_text, (unsigned long)_etext))
271 pgprot_val(forbidden) |= _PAGE_NX;
274 * The .rodata section needs to be read-only. Using the pfn
275 * catches all aliases.
277 if (within(pfn, __pa((unsigned long)__start_rodata) >> PAGE_SHIFT,
278 __pa((unsigned long)__end_rodata) >> PAGE_SHIFT))
279 pgprot_val(forbidden) |= _PAGE_RW;
281 prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden));
283 return prot;
287 * Lookup the page table entry for a virtual address. Return a pointer
288 * to the entry and the level of the mapping.
290 * Note: We return pud and pmd either when the entry is marked large
291 * or when the present bit is not set. Otherwise we would return a
292 * pointer to a nonexisting mapping.
294 pte_t *lookup_address(unsigned long address, unsigned int *level)
296 pgd_t *pgd = pgd_offset_k(address);
297 pud_t *pud;
298 pmd_t *pmd;
300 *level = PG_LEVEL_NONE;
302 if (pgd_none(*pgd))
303 return NULL;
305 pud = pud_offset(pgd, address);
306 if (pud_none(*pud))
307 return NULL;
309 *level = PG_LEVEL_1G;
310 if (pud_large(*pud) || !pud_present(*pud))
311 return (pte_t *)pud;
313 pmd = pmd_offset(pud, address);
314 if (pmd_none(*pmd))
315 return NULL;
317 *level = PG_LEVEL_2M;
318 if (pmd_large(*pmd) || !pmd_present(*pmd))
319 return (pte_t *)pmd;
321 *level = PG_LEVEL_4K;
323 return pte_offset_kernel(pmd, address);
325 EXPORT_SYMBOL_GPL(lookup_address);
328 * Set the new pmd in all the pgds we know about:
330 static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
332 /* change init_mm */
333 set_pte_atomic(kpte, pte);
334 #ifdef CONFIG_X86_32
335 if (!SHARED_KERNEL_PMD) {
336 struct page *page;
338 list_for_each_entry(page, &pgd_list, lru) {
339 pgd_t *pgd;
340 pud_t *pud;
341 pmd_t *pmd;
343 pgd = (pgd_t *)page_address(page) + pgd_index(address);
344 pud = pud_offset(pgd, address);
345 pmd = pmd_offset(pud, address);
346 set_pte_atomic((pte_t *)pmd, pte);
349 #endif
352 static int
353 try_preserve_large_page(pte_t *kpte, unsigned long address,
354 struct cpa_data *cpa)
356 unsigned long nextpage_addr, numpages, pmask, psize, flags, addr, pfn;
357 pte_t new_pte, old_pte, *tmp;
358 pgprot_t old_prot, new_prot;
359 int i, do_split = 1;
360 unsigned int level;
362 if (cpa->force_split)
363 return 1;
365 spin_lock_irqsave(&pgd_lock, flags);
367 * Check for races, another CPU might have split this page
368 * up already:
370 tmp = lookup_address(address, &level);
371 if (tmp != kpte)
372 goto out_unlock;
374 switch (level) {
375 case PG_LEVEL_2M:
376 psize = PMD_PAGE_SIZE;
377 pmask = PMD_PAGE_MASK;
378 break;
379 #ifdef CONFIG_X86_64
380 case PG_LEVEL_1G:
381 psize = PUD_PAGE_SIZE;
382 pmask = PUD_PAGE_MASK;
383 break;
384 #endif
385 default:
386 do_split = -EINVAL;
387 goto out_unlock;
391 * Calculate the number of pages, which fit into this large
392 * page starting at address:
394 nextpage_addr = (address + psize) & pmask;
395 numpages = (nextpage_addr - address) >> PAGE_SHIFT;
396 if (numpages < cpa->numpages)
397 cpa->numpages = numpages;
400 * We are safe now. Check whether the new pgprot is the same:
402 old_pte = *kpte;
403 old_prot = new_prot = pte_pgprot(old_pte);
405 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
406 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
409 * old_pte points to the large page base address. So we need
410 * to add the offset of the virtual address:
412 pfn = pte_pfn(old_pte) + ((address & (psize - 1)) >> PAGE_SHIFT);
413 cpa->pfn = pfn;
415 new_prot = static_protections(new_prot, address, pfn);
418 * We need to check the full range, whether
419 * static_protection() requires a different pgprot for one of
420 * the pages in the range we try to preserve:
422 addr = address + PAGE_SIZE;
423 pfn++;
424 for (i = 1; i < cpa->numpages; i++, addr += PAGE_SIZE, pfn++) {
425 pgprot_t chk_prot = static_protections(new_prot, addr, pfn);
427 if (pgprot_val(chk_prot) != pgprot_val(new_prot))
428 goto out_unlock;
432 * If there are no changes, return. maxpages has been updated
433 * above:
435 if (pgprot_val(new_prot) == pgprot_val(old_prot)) {
436 do_split = 0;
437 goto out_unlock;
441 * We need to change the attributes. Check, whether we can
442 * change the large page in one go. We request a split, when
443 * the address is not aligned and the number of pages is
444 * smaller than the number of pages in the large page. Note
445 * that we limited the number of possible pages already to
446 * the number of pages in the large page.
448 if (address == (nextpage_addr - psize) && cpa->numpages == numpages) {
450 * The address is aligned and the number of pages
451 * covers the full page.
453 new_pte = pfn_pte(pte_pfn(old_pte), canon_pgprot(new_prot));
454 __set_pmd_pte(kpte, address, new_pte);
455 cpa->flags |= CPA_FLUSHTLB;
456 do_split = 0;
459 out_unlock:
460 spin_unlock_irqrestore(&pgd_lock, flags);
462 return do_split;
465 static int split_large_page(pte_t *kpte, unsigned long address)
467 unsigned long flags, pfn, pfninc = 1;
468 unsigned int i, level;
469 pte_t *pbase, *tmp;
470 pgprot_t ref_prot;
471 struct page *base;
473 if (!debug_pagealloc)
474 spin_unlock(&cpa_lock);
475 base = alloc_pages(GFP_KERNEL | __GFP_NOTRACK, 0);
476 if (!debug_pagealloc)
477 spin_lock(&cpa_lock);
478 if (!base)
479 return -ENOMEM;
481 spin_lock_irqsave(&pgd_lock, flags);
483 * Check for races, another CPU might have split this page
484 * up for us already:
486 tmp = lookup_address(address, &level);
487 if (tmp != kpte)
488 goto out_unlock;
490 pbase = (pte_t *)page_address(base);
491 paravirt_alloc_pte(&init_mm, page_to_pfn(base));
492 ref_prot = pte_pgprot(pte_clrhuge(*kpte));
494 * If we ever want to utilize the PAT bit, we need to
495 * update this function to make sure it's converted from
496 * bit 12 to bit 7 when we cross from the 2MB level to
497 * the 4K level:
499 WARN_ON_ONCE(pgprot_val(ref_prot) & _PAGE_PAT_LARGE);
501 #ifdef CONFIG_X86_64
502 if (level == PG_LEVEL_1G) {
503 pfninc = PMD_PAGE_SIZE >> PAGE_SHIFT;
504 pgprot_val(ref_prot) |= _PAGE_PSE;
506 #endif
509 * Get the target pfn from the original entry:
511 pfn = pte_pfn(*kpte);
512 for (i = 0; i < PTRS_PER_PTE; i++, pfn += pfninc)
513 set_pte(&pbase[i], pfn_pte(pfn, ref_prot));
515 if (address >= (unsigned long)__va(0) &&
516 address < (unsigned long)__va(max_low_pfn_mapped << PAGE_SHIFT))
517 split_page_count(level);
519 #ifdef CONFIG_X86_64
520 if (address >= (unsigned long)__va(1UL<<32) &&
521 address < (unsigned long)__va(max_pfn_mapped << PAGE_SHIFT))
522 split_page_count(level);
523 #endif
526 * Install the new, split up pagetable.
528 * We use the standard kernel pagetable protections for the new
529 * pagetable protections, the actual ptes set above control the
530 * primary protection behavior:
532 __set_pmd_pte(kpte, address, mk_pte(base, __pgprot(_KERNPG_TABLE)));
535 * Intel Atom errata AAH41 workaround.
537 * The real fix should be in hw or in a microcode update, but
538 * we also probabilistically try to reduce the window of having
539 * a large TLB mixed with 4K TLBs while instruction fetches are
540 * going on.
542 __flush_tlb_all();
544 base = NULL;
546 out_unlock:
548 * If we dropped out via the lookup_address check under
549 * pgd_lock then stick the page back into the pool:
551 if (base)
552 __free_page(base);
553 spin_unlock_irqrestore(&pgd_lock, flags);
555 return 0;
558 static int __cpa_process_fault(struct cpa_data *cpa, unsigned long vaddr,
559 int primary)
562 * Ignore all non primary paths.
564 if (!primary)
565 return 0;
568 * Ignore the NULL PTE for kernel identity mapping, as it is expected
569 * to have holes.
570 * Also set numpages to '1' indicating that we processed cpa req for
571 * one virtual address page and its pfn. TBD: numpages can be set based
572 * on the initial value and the level returned by lookup_address().
574 if (within(vaddr, PAGE_OFFSET,
575 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT))) {
576 cpa->numpages = 1;
577 cpa->pfn = __pa(vaddr) >> PAGE_SHIFT;
578 return 0;
579 } else {
580 WARN(1, KERN_WARNING "CPA: called for zero pte. "
581 "vaddr = %lx cpa->vaddr = %lx\n", vaddr,
582 *cpa->vaddr);
584 return -EFAULT;
588 static int __change_page_attr(struct cpa_data *cpa, int primary)
590 unsigned long address;
591 int do_split, err;
592 unsigned int level;
593 pte_t *kpte, old_pte;
595 if (cpa->flags & CPA_PAGES_ARRAY) {
596 struct page *page = cpa->pages[cpa->curpage];
597 if (unlikely(PageHighMem(page)))
598 return 0;
599 address = (unsigned long)page_address(page);
600 } else if (cpa->flags & CPA_ARRAY)
601 address = cpa->vaddr[cpa->curpage];
602 else
603 address = *cpa->vaddr;
604 repeat:
605 kpte = lookup_address(address, &level);
606 if (!kpte)
607 return __cpa_process_fault(cpa, address, primary);
609 old_pte = *kpte;
610 if (!pte_val(old_pte))
611 return __cpa_process_fault(cpa, address, primary);
613 if (level == PG_LEVEL_4K) {
614 pte_t new_pte;
615 pgprot_t new_prot = pte_pgprot(old_pte);
616 unsigned long pfn = pte_pfn(old_pte);
618 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
619 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
621 new_prot = static_protections(new_prot, address, pfn);
624 * We need to keep the pfn from the existing PTE,
625 * after all we're only going to change it's attributes
626 * not the memory it points to
628 new_pte = pfn_pte(pfn, canon_pgprot(new_prot));
629 cpa->pfn = pfn;
631 * Do we really change anything ?
633 if (pte_val(old_pte) != pte_val(new_pte)) {
634 set_pte_atomic(kpte, new_pte);
635 cpa->flags |= CPA_FLUSHTLB;
637 cpa->numpages = 1;
638 return 0;
642 * Check, whether we can keep the large page intact
643 * and just change the pte:
645 do_split = try_preserve_large_page(kpte, address, cpa);
647 * When the range fits into the existing large page,
648 * return. cp->numpages and cpa->tlbflush have been updated in
649 * try_large_page:
651 if (do_split <= 0)
652 return do_split;
655 * We have to split the large page:
657 err = split_large_page(kpte, address);
658 if (!err) {
660 * Do a global flush tlb after splitting the large page
661 * and before we do the actual change page attribute in the PTE.
663 * With out this, we violate the TLB application note, that says
664 * "The TLBs may contain both ordinary and large-page
665 * translations for a 4-KByte range of linear addresses. This
666 * may occur if software modifies the paging structures so that
667 * the page size used for the address range changes. If the two
668 * translations differ with respect to page frame or attributes
669 * (e.g., permissions), processor behavior is undefined and may
670 * be implementation-specific."
672 * We do this global tlb flush inside the cpa_lock, so that we
673 * don't allow any other cpu, with stale tlb entries change the
674 * page attribute in parallel, that also falls into the
675 * just split large page entry.
677 flush_tlb_all();
678 goto repeat;
681 return err;
684 static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias);
686 static int cpa_process_alias(struct cpa_data *cpa)
688 struct cpa_data alias_cpa;
689 unsigned long laddr = (unsigned long)__va(cpa->pfn << PAGE_SHIFT);
690 unsigned long vaddr, remapped;
691 int ret;
693 if (cpa->pfn >= max_pfn_mapped)
694 return 0;
696 #ifdef CONFIG_X86_64
697 if (cpa->pfn >= max_low_pfn_mapped && cpa->pfn < (1UL<<(32-PAGE_SHIFT)))
698 return 0;
699 #endif
701 * No need to redo, when the primary call touched the direct
702 * mapping already:
704 if (cpa->flags & CPA_PAGES_ARRAY) {
705 struct page *page = cpa->pages[cpa->curpage];
706 if (unlikely(PageHighMem(page)))
707 return 0;
708 vaddr = (unsigned long)page_address(page);
709 } else if (cpa->flags & CPA_ARRAY)
710 vaddr = cpa->vaddr[cpa->curpage];
711 else
712 vaddr = *cpa->vaddr;
714 if (!(within(vaddr, PAGE_OFFSET,
715 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT)))) {
717 alias_cpa = *cpa;
718 alias_cpa.vaddr = &laddr;
719 alias_cpa.flags &= ~(CPA_PAGES_ARRAY | CPA_ARRAY);
721 ret = __change_page_attr_set_clr(&alias_cpa, 0);
722 if (ret)
723 return ret;
726 #ifdef CONFIG_X86_64
728 * If the primary call didn't touch the high mapping already
729 * and the physical address is inside the kernel map, we need
730 * to touch the high mapped kernel as well:
732 if (!within(vaddr, (unsigned long)_text, _brk_end) &&
733 within(cpa->pfn, highmap_start_pfn(), highmap_end_pfn())) {
734 unsigned long temp_cpa_vaddr = (cpa->pfn << PAGE_SHIFT) +
735 __START_KERNEL_map - phys_base;
736 alias_cpa = *cpa;
737 alias_cpa.vaddr = &temp_cpa_vaddr;
738 alias_cpa.flags &= ~(CPA_PAGES_ARRAY | CPA_ARRAY);
741 * The high mapping range is imprecise, so ignore the
742 * return value.
744 __change_page_attr_set_clr(&alias_cpa, 0);
746 #endif
749 * If the PMD page was partially used for per-cpu remapping,
750 * the recycled area needs to be split and modified. Because
751 * the area is always proper subset of a PMD page
752 * cpa->numpages is guaranteed to be 1 for these areas, so
753 * there's no need to loop over and check for further remaps.
755 remapped = (unsigned long)pcpu_lpage_remapped((void *)laddr);
756 if (remapped) {
757 WARN_ON(cpa->numpages > 1);
758 alias_cpa = *cpa;
759 alias_cpa.vaddr = &remapped;
760 alias_cpa.flags &= ~(CPA_PAGES_ARRAY | CPA_ARRAY);
761 ret = __change_page_attr_set_clr(&alias_cpa, 0);
762 if (ret)
763 return ret;
766 return 0;
769 static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias)
771 int ret, numpages = cpa->numpages;
773 while (numpages) {
775 * Store the remaining nr of pages for the large page
776 * preservation check.
778 cpa->numpages = numpages;
779 /* for array changes, we can't use large page */
780 if (cpa->flags & (CPA_ARRAY | CPA_PAGES_ARRAY))
781 cpa->numpages = 1;
783 if (!debug_pagealloc)
784 spin_lock(&cpa_lock);
785 ret = __change_page_attr(cpa, checkalias);
786 if (!debug_pagealloc)
787 spin_unlock(&cpa_lock);
788 if (ret)
789 return ret;
791 if (checkalias) {
792 ret = cpa_process_alias(cpa);
793 if (ret)
794 return ret;
798 * Adjust the number of pages with the result of the
799 * CPA operation. Either a large page has been
800 * preserved or a single page update happened.
802 BUG_ON(cpa->numpages > numpages);
803 numpages -= cpa->numpages;
804 if (cpa->flags & (CPA_PAGES_ARRAY | CPA_ARRAY))
805 cpa->curpage++;
806 else
807 *cpa->vaddr += cpa->numpages * PAGE_SIZE;
810 return 0;
813 static inline int cache_attr(pgprot_t attr)
815 return pgprot_val(attr) &
816 (_PAGE_PAT | _PAGE_PAT_LARGE | _PAGE_PWT | _PAGE_PCD);
819 static int change_page_attr_set_clr(unsigned long *addr, int numpages,
820 pgprot_t mask_set, pgprot_t mask_clr,
821 int force_split, int in_flag,
822 struct page **pages)
824 struct cpa_data cpa;
825 int ret, cache, checkalias;
828 * Check, if we are requested to change a not supported
829 * feature:
831 mask_set = canon_pgprot(mask_set);
832 mask_clr = canon_pgprot(mask_clr);
833 if (!pgprot_val(mask_set) && !pgprot_val(mask_clr) && !force_split)
834 return 0;
836 /* Ensure we are PAGE_SIZE aligned */
837 if (in_flag & CPA_ARRAY) {
838 int i;
839 for (i = 0; i < numpages; i++) {
840 if (addr[i] & ~PAGE_MASK) {
841 addr[i] &= PAGE_MASK;
842 WARN_ON_ONCE(1);
845 } else if (!(in_flag & CPA_PAGES_ARRAY)) {
847 * in_flag of CPA_PAGES_ARRAY implies it is aligned.
848 * No need to cehck in that case
850 if (*addr & ~PAGE_MASK) {
851 *addr &= PAGE_MASK;
853 * People should not be passing in unaligned addresses:
855 WARN_ON_ONCE(1);
859 /* Must avoid aliasing mappings in the highmem code */
860 kmap_flush_unused();
862 vm_unmap_aliases();
864 cpa.vaddr = addr;
865 cpa.pages = pages;
866 cpa.numpages = numpages;
867 cpa.mask_set = mask_set;
868 cpa.mask_clr = mask_clr;
869 cpa.flags = 0;
870 cpa.curpage = 0;
871 cpa.force_split = force_split;
873 if (in_flag & (CPA_ARRAY | CPA_PAGES_ARRAY))
874 cpa.flags |= in_flag;
876 /* No alias checking for _NX bit modifications */
877 checkalias = (pgprot_val(mask_set) | pgprot_val(mask_clr)) != _PAGE_NX;
879 ret = __change_page_attr_set_clr(&cpa, checkalias);
882 * Check whether we really changed something:
884 if (!(cpa.flags & CPA_FLUSHTLB))
885 goto out;
888 * No need to flush, when we did not set any of the caching
889 * attributes:
891 cache = cache_attr(mask_set);
894 * On success we use clflush, when the CPU supports it to
895 * avoid the wbindv. If the CPU does not support it and in the
896 * error case we fall back to cpa_flush_all (which uses
897 * wbindv):
899 if (!ret && cpu_has_clflush) {
900 if (cpa.flags & (CPA_PAGES_ARRAY | CPA_ARRAY)) {
901 cpa_flush_array(addr, numpages, cache,
902 cpa.flags, pages);
903 } else
904 cpa_flush_range(*addr, numpages, cache);
905 } else
906 cpa_flush_all(cache);
908 out:
909 return ret;
912 static inline int change_page_attr_set(unsigned long *addr, int numpages,
913 pgprot_t mask, int array)
915 return change_page_attr_set_clr(addr, numpages, mask, __pgprot(0), 0,
916 (array ? CPA_ARRAY : 0), NULL);
919 static inline int change_page_attr_clear(unsigned long *addr, int numpages,
920 pgprot_t mask, int array)
922 return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask, 0,
923 (array ? CPA_ARRAY : 0), NULL);
926 static inline int cpa_set_pages_array(struct page **pages, int numpages,
927 pgprot_t mask)
929 return change_page_attr_set_clr(NULL, numpages, mask, __pgprot(0), 0,
930 CPA_PAGES_ARRAY, pages);
933 static inline int cpa_clear_pages_array(struct page **pages, int numpages,
934 pgprot_t mask)
936 return change_page_attr_set_clr(NULL, numpages, __pgprot(0), mask, 0,
937 CPA_PAGES_ARRAY, pages);
940 int _set_memory_uc(unsigned long addr, int numpages)
943 * for now UC MINUS. see comments in ioremap_nocache()
945 return change_page_attr_set(&addr, numpages,
946 __pgprot(_PAGE_CACHE_UC_MINUS), 0);
949 int set_memory_uc(unsigned long addr, int numpages)
951 int ret;
954 * for now UC MINUS. see comments in ioremap_nocache()
956 ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
957 _PAGE_CACHE_UC_MINUS, NULL);
958 if (ret)
959 goto out_err;
961 ret = _set_memory_uc(addr, numpages);
962 if (ret)
963 goto out_free;
965 return 0;
967 out_free:
968 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
969 out_err:
970 return ret;
972 EXPORT_SYMBOL(set_memory_uc);
974 int set_memory_array_uc(unsigned long *addr, int addrinarray)
976 int i, j;
977 int ret;
980 * for now UC MINUS. see comments in ioremap_nocache()
982 for (i = 0; i < addrinarray; i++) {
983 ret = reserve_memtype(__pa(addr[i]), __pa(addr[i]) + PAGE_SIZE,
984 _PAGE_CACHE_UC_MINUS, NULL);
985 if (ret)
986 goto out_free;
989 ret = change_page_attr_set(addr, addrinarray,
990 __pgprot(_PAGE_CACHE_UC_MINUS), 1);
991 if (ret)
992 goto out_free;
994 return 0;
996 out_free:
997 for (j = 0; j < i; j++)
998 free_memtype(__pa(addr[j]), __pa(addr[j]) + PAGE_SIZE);
1000 return ret;
1002 EXPORT_SYMBOL(set_memory_array_uc);
1004 int _set_memory_wc(unsigned long addr, int numpages)
1006 int ret;
1007 unsigned long addr_copy = addr;
1009 ret = change_page_attr_set(&addr, numpages,
1010 __pgprot(_PAGE_CACHE_UC_MINUS), 0);
1011 if (!ret) {
1012 ret = change_page_attr_set_clr(&addr_copy, numpages,
1013 __pgprot(_PAGE_CACHE_WC),
1014 __pgprot(_PAGE_CACHE_MASK),
1015 0, 0, NULL);
1017 return ret;
1020 int set_memory_wc(unsigned long addr, int numpages)
1022 int ret;
1024 if (!pat_enabled)
1025 return set_memory_uc(addr, numpages);
1027 ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
1028 _PAGE_CACHE_WC, NULL);
1029 if (ret)
1030 goto out_err;
1032 ret = _set_memory_wc(addr, numpages);
1033 if (ret)
1034 goto out_free;
1036 return 0;
1038 out_free:
1039 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
1040 out_err:
1041 return ret;
1043 EXPORT_SYMBOL(set_memory_wc);
1045 int _set_memory_wb(unsigned long addr, int numpages)
1047 return change_page_attr_clear(&addr, numpages,
1048 __pgprot(_PAGE_CACHE_MASK), 0);
1051 int set_memory_wb(unsigned long addr, int numpages)
1053 int ret;
1055 ret = _set_memory_wb(addr, numpages);
1056 if (ret)
1057 return ret;
1059 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
1060 return 0;
1062 EXPORT_SYMBOL(set_memory_wb);
1064 int set_memory_array_wb(unsigned long *addr, int addrinarray)
1066 int i;
1067 int ret;
1069 ret = change_page_attr_clear(addr, addrinarray,
1070 __pgprot(_PAGE_CACHE_MASK), 1);
1071 if (ret)
1072 return ret;
1074 for (i = 0; i < addrinarray; i++)
1075 free_memtype(__pa(addr[i]), __pa(addr[i]) + PAGE_SIZE);
1077 return 0;
1079 EXPORT_SYMBOL(set_memory_array_wb);
1081 int set_memory_x(unsigned long addr, int numpages)
1083 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_NX), 0);
1085 EXPORT_SYMBOL(set_memory_x);
1087 int set_memory_nx(unsigned long addr, int numpages)
1089 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_NX), 0);
1091 EXPORT_SYMBOL(set_memory_nx);
1093 int set_memory_ro(unsigned long addr, int numpages)
1095 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_RW), 0);
1097 EXPORT_SYMBOL_GPL(set_memory_ro);
1099 int set_memory_rw(unsigned long addr, int numpages)
1101 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_RW), 0);
1103 EXPORT_SYMBOL_GPL(set_memory_rw);
1105 int set_memory_np(unsigned long addr, int numpages)
1107 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_PRESENT), 0);
1110 int set_memory_4k(unsigned long addr, int numpages)
1112 return change_page_attr_set_clr(&addr, numpages, __pgprot(0),
1113 __pgprot(0), 1, 0, NULL);
1116 int set_pages_uc(struct page *page, int numpages)
1118 unsigned long addr = (unsigned long)page_address(page);
1120 return set_memory_uc(addr, numpages);
1122 EXPORT_SYMBOL(set_pages_uc);
1124 int set_pages_array_uc(struct page **pages, int addrinarray)
1126 unsigned long start;
1127 unsigned long end;
1128 int i;
1129 int free_idx;
1131 for (i = 0; i < addrinarray; i++) {
1132 if (PageHighMem(pages[i]))
1133 continue;
1134 start = page_to_pfn(pages[i]) << PAGE_SHIFT;
1135 end = start + PAGE_SIZE;
1136 if (reserve_memtype(start, end, _PAGE_CACHE_UC_MINUS, NULL))
1137 goto err_out;
1140 if (cpa_set_pages_array(pages, addrinarray,
1141 __pgprot(_PAGE_CACHE_UC_MINUS)) == 0) {
1142 return 0; /* Success */
1144 err_out:
1145 free_idx = i;
1146 for (i = 0; i < free_idx; i++) {
1147 if (PageHighMem(pages[i]))
1148 continue;
1149 start = page_to_pfn(pages[i]) << PAGE_SHIFT;
1150 end = start + PAGE_SIZE;
1151 free_memtype(start, end);
1153 return -EINVAL;
1155 EXPORT_SYMBOL(set_pages_array_uc);
1157 int set_pages_wb(struct page *page, int numpages)
1159 unsigned long addr = (unsigned long)page_address(page);
1161 return set_memory_wb(addr, numpages);
1163 EXPORT_SYMBOL(set_pages_wb);
1165 int set_pages_array_wb(struct page **pages, int addrinarray)
1167 int retval;
1168 unsigned long start;
1169 unsigned long end;
1170 int i;
1172 retval = cpa_clear_pages_array(pages, addrinarray,
1173 __pgprot(_PAGE_CACHE_MASK));
1174 if (retval)
1175 return retval;
1177 for (i = 0; i < addrinarray; i++) {
1178 if (PageHighMem(pages[i]))
1179 continue;
1180 start = page_to_pfn(pages[i]) << PAGE_SHIFT;
1181 end = start + PAGE_SIZE;
1182 free_memtype(start, end);
1185 return 0;
1187 EXPORT_SYMBOL(set_pages_array_wb);
1189 int set_pages_x(struct page *page, int numpages)
1191 unsigned long addr = (unsigned long)page_address(page);
1193 return set_memory_x(addr, numpages);
1195 EXPORT_SYMBOL(set_pages_x);
1197 int set_pages_nx(struct page *page, int numpages)
1199 unsigned long addr = (unsigned long)page_address(page);
1201 return set_memory_nx(addr, numpages);
1203 EXPORT_SYMBOL(set_pages_nx);
1205 int set_pages_ro(struct page *page, int numpages)
1207 unsigned long addr = (unsigned long)page_address(page);
1209 return set_memory_ro(addr, numpages);
1212 int set_pages_rw(struct page *page, int numpages)
1214 unsigned long addr = (unsigned long)page_address(page);
1216 return set_memory_rw(addr, numpages);
1219 #ifdef CONFIG_DEBUG_PAGEALLOC
1221 static int __set_pages_p(struct page *page, int numpages)
1223 unsigned long tempaddr = (unsigned long) page_address(page);
1224 struct cpa_data cpa = { .vaddr = &tempaddr,
1225 .numpages = numpages,
1226 .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW),
1227 .mask_clr = __pgprot(0),
1228 .flags = 0};
1231 * No alias checking needed for setting present flag. otherwise,
1232 * we may need to break large pages for 64-bit kernel text
1233 * mappings (this adds to complexity if we want to do this from
1234 * atomic context especially). Let's keep it simple!
1236 return __change_page_attr_set_clr(&cpa, 0);
1239 static int __set_pages_np(struct page *page, int numpages)
1241 unsigned long tempaddr = (unsigned long) page_address(page);
1242 struct cpa_data cpa = { .vaddr = &tempaddr,
1243 .numpages = numpages,
1244 .mask_set = __pgprot(0),
1245 .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW),
1246 .flags = 0};
1249 * No alias checking needed for setting not present flag. otherwise,
1250 * we may need to break large pages for 64-bit kernel text
1251 * mappings (this adds to complexity if we want to do this from
1252 * atomic context especially). Let's keep it simple!
1254 return __change_page_attr_set_clr(&cpa, 0);
1257 void kernel_map_pages(struct page *page, int numpages, int enable)
1259 if (PageHighMem(page))
1260 return;
1261 if (!enable) {
1262 debug_check_no_locks_freed(page_address(page),
1263 numpages * PAGE_SIZE);
1267 * If page allocator is not up yet then do not call c_p_a():
1269 if (!debug_pagealloc_enabled)
1270 return;
1273 * The return value is ignored as the calls cannot fail.
1274 * Large pages for identity mappings are not used at boot time
1275 * and hence no memory allocations during large page split.
1277 if (enable)
1278 __set_pages_p(page, numpages);
1279 else
1280 __set_pages_np(page, numpages);
1283 * We should perform an IPI and flush all tlbs,
1284 * but that can deadlock->flush only current cpu:
1286 __flush_tlb_all();
1289 #ifdef CONFIG_HIBERNATION
1291 bool kernel_page_present(struct page *page)
1293 unsigned int level;
1294 pte_t *pte;
1296 if (PageHighMem(page))
1297 return false;
1299 pte = lookup_address((unsigned long)page_address(page), &level);
1300 return (pte_val(*pte) & _PAGE_PRESENT);
1303 #endif /* CONFIG_HIBERNATION */
1305 #endif /* CONFIG_DEBUG_PAGEALLOC */
1308 * The testcases use internal knowledge of the implementation that shouldn't
1309 * be exposed to the rest of the kernel. Include these directly here.
1311 #ifdef CONFIG_CPA_DEBUG
1312 #include "pageattr-test.c"
1313 #endif