2 * Copyright 2002 Andi Kleen, SuSE Labs.
3 * Thanks to Ben LaHaise for precious feedback.
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>
11 #include <linux/interrupt.h>
12 #include <linux/seq_file.h>
13 #include <linux/debugfs.h>
14 #include <linux/pfn.h>
17 #include <asm/processor.h>
18 #include <asm/tlbflush.h>
19 #include <asm/sections.h>
20 #include <asm/setup.h>
21 #include <asm/uaccess.h>
22 #include <asm/pgalloc.h>
23 #include <asm/proto.h>
27 * The current flushing context - we pass it instead of 5 arguments:
36 unsigned force_split
: 1;
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.
47 static DEFINE_SPINLOCK(cpa_lock
);
49 #define CPA_FLUSHTLB 1
51 #define CPA_PAGES_ARRAY 4
54 static unsigned long direct_pages_count
[PG_LEVEL_NUM
];
56 void update_page_count(int level
, unsigned long pages
)
60 /* Protect against CPA */
61 spin_lock_irqsave(&pgd_lock
, flags
);
62 direct_pages_count
[level
] += pages
;
63 spin_unlock_irqrestore(&pgd_lock
, flags
);
66 static void split_page_count(int level
)
68 direct_pages_count
[level
]--;
69 direct_pages_count
[level
- 1] += PTRS_PER_PTE
;
72 void arch_report_meminfo(struct seq_file
*m
)
74 seq_printf(m
, "DirectMap4k: %8lu kB\n",
75 direct_pages_count
[PG_LEVEL_4K
] << 2);
76 #if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
77 seq_printf(m
, "DirectMap2M: %8lu kB\n",
78 direct_pages_count
[PG_LEVEL_2M
] << 11);
80 seq_printf(m
, "DirectMap4M: %8lu kB\n",
81 direct_pages_count
[PG_LEVEL_2M
] << 12);
85 seq_printf(m
, "DirectMap1G: %8lu kB\n",
86 direct_pages_count
[PG_LEVEL_1G
] << 20);
90 static inline void split_page_count(int level
) { }
95 static inline unsigned long highmap_start_pfn(void)
97 return __pa(_text
) >> PAGE_SHIFT
;
100 static inline unsigned long highmap_end_pfn(void)
102 return __pa(roundup(_brk_end
, PMD_SIZE
)) >> PAGE_SHIFT
;
107 #ifdef CONFIG_DEBUG_PAGEALLOC
108 # define debug_pagealloc 1
110 # define debug_pagealloc 0
114 within(unsigned long addr
, unsigned long start
, unsigned long end
)
116 return addr
>= start
&& addr
< end
;
124 * clflush_cache_range - flush a cache range with clflush
125 * @addr: virtual start address
126 * @size: number of bytes to flush
128 * clflush is an unordered instruction which needs fencing with mfence
129 * to avoid ordering issues.
131 void clflush_cache_range(void *vaddr
, unsigned int size
)
133 void *vend
= vaddr
+ size
- 1;
137 for (; vaddr
< vend
; vaddr
+= boot_cpu_data
.x86_clflush_size
)
140 * Flush any possible final partial cacheline:
146 EXPORT_SYMBOL_GPL(clflush_cache_range
);
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.
158 if (cache
&& boot_cpu_data
.x86
>= 4)
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.
179 static void cpa_flush_range(unsigned long start
, int numpages
, int cache
)
181 unsigned int i
, level
;
184 BUG_ON(irqs_disabled());
185 WARN_ON(PAGE_ALIGN(start
) != start
);
187 on_each_cpu(__cpa_flush_range
, NULL
, 1);
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
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
)
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
228 for (i
= 0; i
< numpages
; i
++) {
232 if (in_flags
& CPA_PAGES_ARRAY
)
233 addr
= (unsigned long)page_address(pages
[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
,
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
));
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
);
300 *level
= PG_LEVEL_NONE
;
305 pud
= pud_offset(pgd
, address
);
309 *level
= PG_LEVEL_1G
;
310 if (pud_large(*pud
) || !pud_present(*pud
))
313 pmd
= pmd_offset(pud
, address
);
317 *level
= PG_LEVEL_2M
;
318 if (pmd_large(*pmd
) || !pmd_present(*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
)
333 set_pte_atomic(kpte
, pte
);
335 if (!SHARED_KERNEL_PMD
) {
338 list_for_each_entry(page
, &pgd_list
, lru
) {
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
);
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
;
362 if (cpa
->force_split
)
365 spin_lock_irqsave(&pgd_lock
, flags
);
367 * Check for races, another CPU might have split this page
370 tmp
= lookup_address(address
, &level
);
376 psize
= PMD_PAGE_SIZE
;
377 pmask
= PMD_PAGE_MASK
;
381 psize
= PUD_PAGE_SIZE
;
382 pmask
= PUD_PAGE_MASK
;
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:
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
);
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
;
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
))
432 * If there are no changes, return. maxpages has been updated
435 if (pgprot_val(new_prot
) == pgprot_val(old_prot
)) {
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
;
460 spin_unlock_irqrestore(&pgd_lock
, flags
);
465 static int split_large_page(pte_t
*kpte
, unsigned long address
)
467 unsigned long flags
, pfn
, pfninc
= 1;
468 unsigned int i
, level
;
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
);
481 spin_lock_irqsave(&pgd_lock
, flags
);
483 * Check for races, another CPU might have split this page
486 tmp
= lookup_address(address
, &level
);
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
499 WARN_ON_ONCE(pgprot_val(ref_prot
) & _PAGE_PAT_LARGE
);
502 if (level
== PG_LEVEL_1G
) {
503 pfninc
= PMD_PAGE_SIZE
>> PAGE_SHIFT
;
504 pgprot_val(ref_prot
) |= _PAGE_PSE
;
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
);
520 if (address
>= (unsigned long)__va(1UL<<32) &&
521 address
< (unsigned long)__va(max_pfn_mapped
<< PAGE_SHIFT
))
522 split_page_count(level
);
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
548 * If we dropped out via the lookup_address check under
549 * pgd_lock then stick the page back into the pool:
553 spin_unlock_irqrestore(&pgd_lock
, flags
);
558 static int __cpa_process_fault(struct cpa_data
*cpa
, unsigned long vaddr
,
562 * Ignore all non primary paths.
568 * Ignore the NULL PTE for kernel identity mapping, as it is expected
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
))) {
577 cpa
->pfn
= __pa(vaddr
) >> PAGE_SHIFT
;
580 WARN(1, KERN_WARNING
"CPA: called for zero pte. "
581 "vaddr = %lx cpa->vaddr = %lx\n", vaddr
,
588 static int __change_page_attr(struct cpa_data
*cpa
, int primary
)
590 unsigned long address
;
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
)))
599 address
= (unsigned long)page_address(page
);
600 } else if (cpa
->flags
& CPA_ARRAY
)
601 address
= cpa
->vaddr
[cpa
->curpage
];
603 address
= *cpa
->vaddr
;
605 kpte
= lookup_address(address
, &level
);
607 return __cpa_process_fault(cpa
, address
, primary
);
610 if (!pte_val(old_pte
))
611 return __cpa_process_fault(cpa
, address
, primary
);
613 if (level
== PG_LEVEL_4K
) {
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
));
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
;
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
655 * We have to split the large page:
657 err
= split_large_page(kpte
, address
);
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.
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
;
693 if (cpa
->pfn
>= max_pfn_mapped
)
697 if (cpa
->pfn
>= max_low_pfn_mapped
&& cpa
->pfn
< (1UL<<(32-PAGE_SHIFT
)))
701 * No need to redo, when the primary call touched the direct
704 if (cpa
->flags
& CPA_PAGES_ARRAY
) {
705 struct page
*page
= cpa
->pages
[cpa
->curpage
];
706 if (unlikely(PageHighMem(page
)))
708 vaddr
= (unsigned long)page_address(page
);
709 } else if (cpa
->flags
& CPA_ARRAY
)
710 vaddr
= cpa
->vaddr
[cpa
->curpage
];
714 if (!(within(vaddr
, PAGE_OFFSET
,
715 PAGE_OFFSET
+ (max_pfn_mapped
<< PAGE_SHIFT
)))) {
718 alias_cpa
.vaddr
= &laddr
;
719 alias_cpa
.flags
&= ~(CPA_PAGES_ARRAY
| CPA_ARRAY
);
721 ret
= __change_page_attr_set_clr(&alias_cpa
, 0);
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
;
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
744 __change_page_attr_set_clr(&alias_cpa
, 0);
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
);
757 WARN_ON(cpa
->numpages
> 1);
759 alias_cpa
.vaddr
= &remapped
;
760 alias_cpa
.flags
&= ~(CPA_PAGES_ARRAY
| CPA_ARRAY
);
761 ret
= __change_page_attr_set_clr(&alias_cpa
, 0);
769 static int __change_page_attr_set_clr(struct cpa_data
*cpa
, int checkalias
)
771 int ret
, numpages
= cpa
->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
))
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
);
792 ret
= cpa_process_alias(cpa
);
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
))
807 *cpa
->vaddr
+= cpa
->numpages
* PAGE_SIZE
;
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
,
825 int ret
, cache
, checkalias
;
826 unsigned long baddr
= 0;
829 * Check, if we are requested to change a not supported
832 mask_set
= canon_pgprot(mask_set
);
833 mask_clr
= canon_pgprot(mask_clr
);
834 if (!pgprot_val(mask_set
) && !pgprot_val(mask_clr
) && !force_split
)
837 /* Ensure we are PAGE_SIZE aligned */
838 if (in_flag
& CPA_ARRAY
) {
840 for (i
= 0; i
< numpages
; i
++) {
841 if (addr
[i
] & ~PAGE_MASK
) {
842 addr
[i
] &= PAGE_MASK
;
846 } else if (!(in_flag
& CPA_PAGES_ARRAY
)) {
848 * in_flag of CPA_PAGES_ARRAY implies it is aligned.
849 * No need to cehck in that case
851 if (*addr
& ~PAGE_MASK
) {
854 * People should not be passing in unaligned addresses:
859 * Save address for cache flush. *addr is modified in the call
860 * to __change_page_attr_set_clr() below.
865 /* Must avoid aliasing mappings in the highmem code */
872 cpa
.numpages
= numpages
;
873 cpa
.mask_set
= mask_set
;
874 cpa
.mask_clr
= mask_clr
;
877 cpa
.force_split
= force_split
;
879 if (in_flag
& (CPA_ARRAY
| CPA_PAGES_ARRAY
))
880 cpa
.flags
|= in_flag
;
882 /* No alias checking for _NX bit modifications */
883 checkalias
= (pgprot_val(mask_set
) | pgprot_val(mask_clr
)) != _PAGE_NX
;
885 ret
= __change_page_attr_set_clr(&cpa
, checkalias
);
888 * Check whether we really changed something:
890 if (!(cpa
.flags
& CPA_FLUSHTLB
))
894 * No need to flush, when we did not set any of the caching
897 cache
= cache_attr(mask_set
);
900 * On success we use clflush, when the CPU supports it to
901 * avoid the wbindv. If the CPU does not support it and in the
902 * error case we fall back to cpa_flush_all (which uses
905 if (!ret
&& cpu_has_clflush
) {
906 if (cpa
.flags
& (CPA_PAGES_ARRAY
| CPA_ARRAY
)) {
907 cpa_flush_array(addr
, numpages
, cache
,
910 cpa_flush_range(baddr
, numpages
, cache
);
912 cpa_flush_all(cache
);
918 static inline int change_page_attr_set(unsigned long *addr
, int numpages
,
919 pgprot_t mask
, int array
)
921 return change_page_attr_set_clr(addr
, numpages
, mask
, __pgprot(0), 0,
922 (array
? CPA_ARRAY
: 0), NULL
);
925 static inline int change_page_attr_clear(unsigned long *addr
, int numpages
,
926 pgprot_t mask
, int array
)
928 return change_page_attr_set_clr(addr
, numpages
, __pgprot(0), mask
, 0,
929 (array
? CPA_ARRAY
: 0), NULL
);
932 static inline int cpa_set_pages_array(struct page
**pages
, int numpages
,
935 return change_page_attr_set_clr(NULL
, numpages
, mask
, __pgprot(0), 0,
936 CPA_PAGES_ARRAY
, pages
);
939 static inline int cpa_clear_pages_array(struct page
**pages
, int numpages
,
942 return change_page_attr_set_clr(NULL
, numpages
, __pgprot(0), mask
, 0,
943 CPA_PAGES_ARRAY
, pages
);
946 int _set_memory_uc(unsigned long addr
, int numpages
)
949 * for now UC MINUS. see comments in ioremap_nocache()
951 return change_page_attr_set(&addr
, numpages
,
952 __pgprot(_PAGE_CACHE_UC_MINUS
), 0);
955 int set_memory_uc(unsigned long addr
, int numpages
)
960 * for now UC MINUS. see comments in ioremap_nocache()
962 ret
= reserve_memtype(__pa(addr
), __pa(addr
) + numpages
* PAGE_SIZE
,
963 _PAGE_CACHE_UC_MINUS
, NULL
);
967 ret
= _set_memory_uc(addr
, numpages
);
974 free_memtype(__pa(addr
), __pa(addr
) + numpages
* PAGE_SIZE
);
978 EXPORT_SYMBOL(set_memory_uc
);
980 int set_memory_array_uc(unsigned long *addr
, int addrinarray
)
986 * for now UC MINUS. see comments in ioremap_nocache()
988 for (i
= 0; i
< addrinarray
; i
++) {
989 ret
= reserve_memtype(__pa(addr
[i
]), __pa(addr
[i
]) + PAGE_SIZE
,
990 _PAGE_CACHE_UC_MINUS
, NULL
);
995 ret
= change_page_attr_set(addr
, addrinarray
,
996 __pgprot(_PAGE_CACHE_UC_MINUS
), 1);
1003 for (j
= 0; j
< i
; j
++)
1004 free_memtype(__pa(addr
[j
]), __pa(addr
[j
]) + PAGE_SIZE
);
1008 EXPORT_SYMBOL(set_memory_array_uc
);
1010 int _set_memory_wc(unsigned long addr
, int numpages
)
1013 unsigned long addr_copy
= addr
;
1015 ret
= change_page_attr_set(&addr
, numpages
,
1016 __pgprot(_PAGE_CACHE_UC_MINUS
), 0);
1018 ret
= change_page_attr_set_clr(&addr_copy
, numpages
,
1019 __pgprot(_PAGE_CACHE_WC
),
1020 __pgprot(_PAGE_CACHE_MASK
),
1026 int set_memory_wc(unsigned long addr
, int numpages
)
1031 return set_memory_uc(addr
, numpages
);
1033 ret
= reserve_memtype(__pa(addr
), __pa(addr
) + numpages
* PAGE_SIZE
,
1034 _PAGE_CACHE_WC
, NULL
);
1038 ret
= _set_memory_wc(addr
, numpages
);
1045 free_memtype(__pa(addr
), __pa(addr
) + numpages
* PAGE_SIZE
);
1049 EXPORT_SYMBOL(set_memory_wc
);
1051 int _set_memory_wb(unsigned long addr
, int numpages
)
1053 return change_page_attr_clear(&addr
, numpages
,
1054 __pgprot(_PAGE_CACHE_MASK
), 0);
1057 int set_memory_wb(unsigned long addr
, int numpages
)
1061 ret
= _set_memory_wb(addr
, numpages
);
1065 free_memtype(__pa(addr
), __pa(addr
) + numpages
* PAGE_SIZE
);
1068 EXPORT_SYMBOL(set_memory_wb
);
1070 int set_memory_array_wb(unsigned long *addr
, int addrinarray
)
1075 ret
= change_page_attr_clear(addr
, addrinarray
,
1076 __pgprot(_PAGE_CACHE_MASK
), 1);
1080 for (i
= 0; i
< addrinarray
; i
++)
1081 free_memtype(__pa(addr
[i
]), __pa(addr
[i
]) + PAGE_SIZE
);
1085 EXPORT_SYMBOL(set_memory_array_wb
);
1087 int set_memory_x(unsigned long addr
, int numpages
)
1089 return change_page_attr_clear(&addr
, numpages
, __pgprot(_PAGE_NX
), 0);
1091 EXPORT_SYMBOL(set_memory_x
);
1093 int set_memory_nx(unsigned long addr
, int numpages
)
1095 return change_page_attr_set(&addr
, numpages
, __pgprot(_PAGE_NX
), 0);
1097 EXPORT_SYMBOL(set_memory_nx
);
1099 int set_memory_ro(unsigned long addr
, int numpages
)
1101 return change_page_attr_clear(&addr
, numpages
, __pgprot(_PAGE_RW
), 0);
1103 EXPORT_SYMBOL_GPL(set_memory_ro
);
1105 int set_memory_rw(unsigned long addr
, int numpages
)
1107 return change_page_attr_set(&addr
, numpages
, __pgprot(_PAGE_RW
), 0);
1109 EXPORT_SYMBOL_GPL(set_memory_rw
);
1111 int set_memory_np(unsigned long addr
, int numpages
)
1113 return change_page_attr_clear(&addr
, numpages
, __pgprot(_PAGE_PRESENT
), 0);
1116 int set_memory_4k(unsigned long addr
, int numpages
)
1118 return change_page_attr_set_clr(&addr
, numpages
, __pgprot(0),
1119 __pgprot(0), 1, 0, NULL
);
1122 int set_pages_uc(struct page
*page
, int numpages
)
1124 unsigned long addr
= (unsigned long)page_address(page
);
1126 return set_memory_uc(addr
, numpages
);
1128 EXPORT_SYMBOL(set_pages_uc
);
1130 int set_pages_array_uc(struct page
**pages
, int addrinarray
)
1132 unsigned long start
;
1137 for (i
= 0; i
< addrinarray
; i
++) {
1138 if (PageHighMem(pages
[i
]))
1140 start
= page_to_pfn(pages
[i
]) << PAGE_SHIFT
;
1141 end
= start
+ PAGE_SIZE
;
1142 if (reserve_memtype(start
, end
, _PAGE_CACHE_UC_MINUS
, NULL
))
1146 if (cpa_set_pages_array(pages
, addrinarray
,
1147 __pgprot(_PAGE_CACHE_UC_MINUS
)) == 0) {
1148 return 0; /* Success */
1152 for (i
= 0; i
< free_idx
; i
++) {
1153 if (PageHighMem(pages
[i
]))
1155 start
= page_to_pfn(pages
[i
]) << PAGE_SHIFT
;
1156 end
= start
+ PAGE_SIZE
;
1157 free_memtype(start
, end
);
1161 EXPORT_SYMBOL(set_pages_array_uc
);
1163 int set_pages_wb(struct page
*page
, int numpages
)
1165 unsigned long addr
= (unsigned long)page_address(page
);
1167 return set_memory_wb(addr
, numpages
);
1169 EXPORT_SYMBOL(set_pages_wb
);
1171 int set_pages_array_wb(struct page
**pages
, int addrinarray
)
1174 unsigned long start
;
1178 retval
= cpa_clear_pages_array(pages
, addrinarray
,
1179 __pgprot(_PAGE_CACHE_MASK
));
1183 for (i
= 0; i
< addrinarray
; i
++) {
1184 if (PageHighMem(pages
[i
]))
1186 start
= page_to_pfn(pages
[i
]) << PAGE_SHIFT
;
1187 end
= start
+ PAGE_SIZE
;
1188 free_memtype(start
, end
);
1193 EXPORT_SYMBOL(set_pages_array_wb
);
1195 int set_pages_x(struct page
*page
, int numpages
)
1197 unsigned long addr
= (unsigned long)page_address(page
);
1199 return set_memory_x(addr
, numpages
);
1201 EXPORT_SYMBOL(set_pages_x
);
1203 int set_pages_nx(struct page
*page
, int numpages
)
1205 unsigned long addr
= (unsigned long)page_address(page
);
1207 return set_memory_nx(addr
, numpages
);
1209 EXPORT_SYMBOL(set_pages_nx
);
1211 int set_pages_ro(struct page
*page
, int numpages
)
1213 unsigned long addr
= (unsigned long)page_address(page
);
1215 return set_memory_ro(addr
, numpages
);
1218 int set_pages_rw(struct page
*page
, int numpages
)
1220 unsigned long addr
= (unsigned long)page_address(page
);
1222 return set_memory_rw(addr
, numpages
);
1225 #ifdef CONFIG_DEBUG_PAGEALLOC
1227 static int __set_pages_p(struct page
*page
, int numpages
)
1229 unsigned long tempaddr
= (unsigned long) page_address(page
);
1230 struct cpa_data cpa
= { .vaddr
= &tempaddr
,
1231 .numpages
= numpages
,
1232 .mask_set
= __pgprot(_PAGE_PRESENT
| _PAGE_RW
),
1233 .mask_clr
= __pgprot(0),
1237 * No alias checking needed for setting present flag. otherwise,
1238 * we may need to break large pages for 64-bit kernel text
1239 * mappings (this adds to complexity if we want to do this from
1240 * atomic context especially). Let's keep it simple!
1242 return __change_page_attr_set_clr(&cpa
, 0);
1245 static int __set_pages_np(struct page
*page
, int numpages
)
1247 unsigned long tempaddr
= (unsigned long) page_address(page
);
1248 struct cpa_data cpa
= { .vaddr
= &tempaddr
,
1249 .numpages
= numpages
,
1250 .mask_set
= __pgprot(0),
1251 .mask_clr
= __pgprot(_PAGE_PRESENT
| _PAGE_RW
),
1255 * No alias checking needed for setting not present flag. otherwise,
1256 * we may need to break large pages for 64-bit kernel text
1257 * mappings (this adds to complexity if we want to do this from
1258 * atomic context especially). Let's keep it simple!
1260 return __change_page_attr_set_clr(&cpa
, 0);
1263 void kernel_map_pages(struct page
*page
, int numpages
, int enable
)
1265 if (PageHighMem(page
))
1268 debug_check_no_locks_freed(page_address(page
),
1269 numpages
* PAGE_SIZE
);
1273 * If page allocator is not up yet then do not call c_p_a():
1275 if (!debug_pagealloc_enabled
)
1279 * The return value is ignored as the calls cannot fail.
1280 * Large pages for identity mappings are not used at boot time
1281 * and hence no memory allocations during large page split.
1284 __set_pages_p(page
, numpages
);
1286 __set_pages_np(page
, numpages
);
1289 * We should perform an IPI and flush all tlbs,
1290 * but that can deadlock->flush only current cpu:
1295 #ifdef CONFIG_HIBERNATION
1297 bool kernel_page_present(struct page
*page
)
1302 if (PageHighMem(page
))
1305 pte
= lookup_address((unsigned long)page_address(page
), &level
);
1306 return (pte_val(*pte
) & _PAGE_PRESENT
);
1309 #endif /* CONFIG_HIBERNATION */
1311 #endif /* CONFIG_DEBUG_PAGEALLOC */
1314 * The testcases use internal knowledge of the implementation that shouldn't
1315 * be exposed to the rest of the kernel. Include these directly here.
1317 #ifdef CONFIG_CPA_DEBUG
1318 #include "pageattr-test.c"