Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394...
[pandora-kernel.git] / arch / x86 / mm / pageattr.c
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
16 #include <asm/e820.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>
24 #include <asm/pat.h>
25
26 /*
27  * The current flushing context - we pass it instead of 5 arguments:
28  */
29 struct cpa_data {
30         unsigned long   *vaddr;
31         pgprot_t        mask_set;
32         pgprot_t        mask_clr;
33         int             numpages;
34         int             flags;
35         unsigned long   pfn;
36         unsigned        force_split : 1;
37         int             curpage;
38         struct page     **pages;
39 };
40
41 /*
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  */
47 static DEFINE_SPINLOCK(cpa_lock);
48
49 #define CPA_FLUSHTLB 1
50 #define CPA_ARRAY 2
51 #define CPA_PAGES_ARRAY 4
52
53 #ifdef CONFIG_PROC_FS
54 static unsigned long direct_pages_count[PG_LEVEL_NUM];
55
56 void update_page_count(int level, unsigned long pages)
57 {
58         unsigned long flags;
59
60         /* Protect against CPA */
61         spin_lock_irqsave(&pgd_lock, flags);
62         direct_pages_count[level] += pages;
63         spin_unlock_irqrestore(&pgd_lock, flags);
64 }
65
66 static void split_page_count(int level)
67 {
68         direct_pages_count[level]--;
69         direct_pages_count[level - 1] += PTRS_PER_PTE;
70 }
71
72 void arch_report_meminfo(struct seq_file *m)
73 {
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);
79 #else
80         seq_printf(m, "DirectMap4M:    %8lu kB\n",
81                         direct_pages_count[PG_LEVEL_2M] << 12);
82 #endif
83 #ifdef CONFIG_X86_64
84         if (direct_gbpages)
85                 seq_printf(m, "DirectMap1G:    %8lu kB\n",
86                         direct_pages_count[PG_LEVEL_1G] << 20);
87 #endif
88 }
89 #else
90 static inline void split_page_count(int level) { }
91 #endif
92
93 #ifdef CONFIG_X86_64
94
95 static inline unsigned long highmap_start_pfn(void)
96 {
97         return __pa(_text) >> PAGE_SHIFT;
98 }
99
100 static inline unsigned long highmap_end_pfn(void)
101 {
102         return __pa(roundup(_brk_end, PMD_SIZE)) >> PAGE_SHIFT;
103 }
104
105 #endif
106
107 #ifdef CONFIG_DEBUG_PAGEALLOC
108 # define debug_pagealloc 1
109 #else
110 # define debug_pagealloc 0
111 #endif
112
113 static inline int
114 within(unsigned long addr, unsigned long start, unsigned long end)
115 {
116         return addr >= start && addr < end;
117 }
118
119 /*
120  * Flushing functions
121  */
122
123 /**
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  */
131 void clflush_cache_range(void *vaddr, unsigned int size)
132 {
133         void *vend = vaddr + size - 1;
134
135         mb();
136
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
144         mb();
145 }
146
147 static void __cpa_flush_all(void *arg)
148 {
149         unsigned long cache = (unsigned long)arg;
150
151         /*
152          * Flush all to work around Errata in early athlons regarding
153          * large page flushing.
154          */
155         __flush_tlb_all();
156
157         if (cache && boot_cpu_data.x86 >= 4)
158                 wbinvd();
159 }
160
161 static void cpa_flush_all(unsigned long cache)
162 {
163         BUG_ON(irqs_disabled());
164
165         on_each_cpu(__cpa_flush_all, (void *) cache, 1);
166 }
167
168 static void __cpa_flush_range(void *arg)
169 {
170         /*
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();
176 }
177
178 static void cpa_flush_range(unsigned long start, int numpages, int cache)
179 {
180         unsigned int i, level;
181         unsigned long addr;
182
183         BUG_ON(irqs_disabled());
184         WARN_ON(PAGE_ALIGN(start) != start);
185
186         on_each_cpu(__cpa_flush_range, NULL, 1);
187
188         if (!cache)
189                 return;
190
191         /*
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          */
197         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                  */
203                 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
204                         clflush_cache_range((void *) addr, PAGE_SIZE);
205         }
206 }
207
208 static void cpa_flush_array(unsigned long *start, int numpages, int cache,
209                             int in_flags, struct page **pages)
210 {
211         unsigned int i, level;
212         unsigned long do_wbinvd = cache && numpages >= 1024; /* 4M threshold */
213
214         BUG_ON(irqs_disabled());
215
216         on_each_cpu(__cpa_flush_all, (void *) do_wbinvd, 1);
217
218         if (!cache || do_wbinvd)
219                 return;
220
221         /*
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          */
227         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);
237
238                 /*
239                  * Only flush present addresses:
240                  */
241                 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
242                         clflush_cache_range((void *)addr, PAGE_SIZE);
243         }
244 }
245
246 /*
247  * 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  */
252 static inline pgprot_t static_protections(pgprot_t prot, unsigned long address,
253                                    unsigned long pfn)
254 {
255         pgprot_t forbidden = __pgprot(0);
256
257         /*
258          * The BIOS area between 640k and 1Mb needs to be executable for
259          * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support.
260          */
261         if (within(pfn, BIOS_BEGIN >> PAGE_SHIFT, BIOS_END >> PAGE_SHIFT))
262                 pgprot_val(forbidden) |= _PAGE_NX;
263
264         /*
265          * The kernel text needs to be executable for obvious reasons
266          * Does not cover __inittext since that is gone later on. On
267          * 64bit we do not enforce !NX on the low mapping
268          */
269         if (within(address, (unsigned long)_text, (unsigned long)_etext))
270                 pgprot_val(forbidden) |= _PAGE_NX;
271
272         /*
273          * The .rodata section needs to be read-only. Using the pfn
274          * catches all aliases.
275          */
276         if (within(pfn, __pa((unsigned long)__start_rodata) >> PAGE_SHIFT,
277                    __pa((unsigned long)__end_rodata) >> PAGE_SHIFT))
278                 pgprot_val(forbidden) |= _PAGE_RW;
279
280         prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden));
281
282         return prot;
283 }
284
285 /*
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  */
293 pte_t *lookup_address(unsigned long address, unsigned int *level)
294 {
295         pgd_t *pgd = pgd_offset_k(address);
296         pud_t *pud;
297         pmd_t *pmd;
298
299         *level = PG_LEVEL_NONE;
300
301         if (pgd_none(*pgd))
302                 return NULL;
303
304         pud = pud_offset(pgd, address);
305         if (pud_none(*pud))
306                 return NULL;
307
308         *level = PG_LEVEL_1G;
309         if (pud_large(*pud) || !pud_present(*pud))
310                 return (pte_t *)pud;
311
312         pmd = pmd_offset(pud, address);
313         if (pmd_none(*pmd))
314                 return NULL;
315
316         *level = PG_LEVEL_2M;
317         if (pmd_large(*pmd) || !pmd_present(*pmd))
318                 return (pte_t *)pmd;
319
320         *level = PG_LEVEL_4K;
321
322         return pte_offset_kernel(pmd, address);
323 }
324 EXPORT_SYMBOL_GPL(lookup_address);
325
326 /*
327  * Set the new pmd in all the pgds we know about:
328  */
329 static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
330 {
331         /* change init_mm */
332         set_pte_atomic(kpte, pte);
333 #ifdef CONFIG_X86_32
334         if (!SHARED_KERNEL_PMD) {
335                 struct page *page;
336
337                 list_for_each_entry(page, &pgd_list, lru) {
338                         pgd_t *pgd;
339                         pud_t *pud;
340                         pmd_t *pmd;
341
342                         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                 }
347         }
348 #endif
349 }
350
351 static int
352 try_preserve_large_page(pte_t *kpte, unsigned long address,
353                         struct cpa_data *cpa)
354 {
355         unsigned long nextpage_addr, numpages, pmask, psize, flags, addr, pfn;
356         pte_t new_pte, old_pte, *tmp;
357         pgprot_t old_prot, new_prot;
358         int i, do_split = 1;
359         unsigned int level;
360
361         if (cpa->force_split)
362                 return 1;
363
364         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:
375                 psize = PMD_PAGE_SIZE;
376                 pmask = PMD_PAGE_MASK;
377                 break;
378 #ifdef CONFIG_X86_64
379         case PG_LEVEL_1G:
380                 psize = PUD_PAGE_SIZE;
381                 pmask = PUD_PAGE_MASK;
382                 break;
383 #endif
384         default:
385                 do_split = -EINVAL;
386                 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;
395         if (numpages < cpa->numpages)
396                 cpa->numpages = numpages;
397
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);
406
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);
415
416         /*
417          * 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;
422         pfn++;
423         for (i = 1; i < cpa->numpages; i++, addr += PAGE_SIZE, pfn++) {
424                 pgprot_t chk_prot = static_protections(new_prot, addr, pfn);
425
426                 if (pgprot_val(chk_prot) != pgprot_val(new_prot))
427                         goto out_unlock;
428         }
429
430         /*
431          * If there are no changes, return. maxpages has been updated
432          * above:
433          */
434         if (pgprot_val(new_prot) == pgprot_val(old_prot)) {
435                 do_split = 0;
436                 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          */
447         if (address == (nextpage_addr - psize) && cpa->numpages == numpages) {
448                 /*
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);
454                 cpa->flags |= CPA_FLUSHTLB;
455                 do_split = 0;
456         }
457
458 out_unlock:
459         spin_unlock_irqrestore(&pgd_lock, flags);
460
461         return do_split;
462 }
463
464 static int split_large_page(pte_t *kpte, unsigned long address)
465 {
466         unsigned long flags, pfn, pfninc = 1;
467         unsigned int i, level;
468         pte_t *pbase, *tmp;
469         pgprot_t ref_prot;
470         struct page *base;
471
472         if (!debug_pagealloc)
473                 spin_unlock(&cpa_lock);
474         base = alloc_pages(GFP_KERNEL | __GFP_NOTRACK, 0);
475         if (!debug_pagealloc)
476                 spin_lock(&cpa_lock);
477         if (!base)
478                 return -ENOMEM;
479
480         spin_lock_irqsave(&pgd_lock, flags);
481         /*
482          * Check for races, another CPU might have split this page
483          * up for us already:
484          */
485         tmp = lookup_address(address, &level);
486         if (tmp != kpte)
487                 goto out_unlock;
488
489         pbase = (pte_t *)page_address(base);
490         paravirt_alloc_pte(&init_mm, page_to_pfn(base));
491         ref_prot = pte_pgprot(pte_clrhuge(*kpte));
492         /*
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);
499
500 #ifdef CONFIG_X86_64
501         if (level == PG_LEVEL_1G) {
502                 pfninc = PMD_PAGE_SIZE >> PAGE_SHIFT;
503                 pgprot_val(ref_prot) |= _PAGE_PSE;
504         }
505 #endif
506
507         /*
508          * Get the target pfn from the original entry:
509          */
510         pfn = pte_pfn(*kpte);
511         for (i = 0; i < PTRS_PER_PTE; i++, pfn += pfninc)
512                 set_pte(&pbase[i], pfn_pte(pfn, ref_prot));
513
514         if (address >= (unsigned long)__va(0) &&
515                 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) &&
520                 address < (unsigned long)__va(max_pfn_mapped << PAGE_SHIFT))
521                 split_page_count(level);
522 #endif
523
524         /*
525          * Install the new, split up pagetable.
526          *
527          * We use the standard kernel pagetable protections for the new
528          * pagetable protections, the actual ptes set above control the
529          * primary protection behavior:
530          */
531         __set_pmd_pte(kpte, address, mk_pte(base, __pgprot(_KERNPG_TABLE)));
532
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
543         base = NULL;
544
545 out_unlock:
546         /*
547          * If we dropped out via the lookup_address check under
548          * pgd_lock then stick the page back into the pool:
549          */
550         if (base)
551                 __free_page(base);
552         spin_unlock_irqrestore(&pgd_lock, flags);
553
554         return 0;
555 }
556
557 static 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
587 static int __change_page_attr(struct cpa_data *cpa, int primary)
588 {
589         unsigned long address;
590         int do_split, err;
591         unsigned int level;
592         pte_t *kpte, old_pte;
593
594         if (cpa->flags & CPA_PAGES_ARRAY)
595                 address = (unsigned long)page_address(cpa->pages[cpa->curpage]);
596         else if (cpa->flags & CPA_ARRAY)
597                 address = cpa->vaddr[cpa->curpage];
598         else
599                 address = *cpa->vaddr;
600 repeat:
601         kpte = lookup_address(address, &level);
602         if (!kpte)
603                 return __cpa_process_fault(cpa, address, primary);
604
605         old_pte = *kpte;
606         if (!pte_val(old_pte))
607                 return __cpa_process_fault(cpa, address, primary);
608
609         if (level == PG_LEVEL_4K) {
610                 pte_t new_pte;
611                 pgprot_t new_prot = pte_pgprot(old_pte);
612                 unsigned long pfn = pte_pfn(old_pte);
613
614                 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
615                 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
616
617                 new_prot = static_protections(new_prot, address, pfn);
618
619                 /*
620                  * We need to keep the pfn from the existing PTE,
621                  * after all we're only going to change it's attributes
622                  * not the memory it points to
623                  */
624                 new_pte = pfn_pte(pfn, canon_pgprot(new_prot));
625                 cpa->pfn = pfn;
626                 /*
627                  * Do we really change anything ?
628                  */
629                 if (pte_val(old_pte) != pte_val(new_pte)) {
630                         set_pte_atomic(kpte, new_pte);
631                         cpa->flags |= CPA_FLUSHTLB;
632                 }
633                 cpa->numpages = 1;
634                 return 0;
635         }
636
637         /*
638          * Check, whether we can keep the large page intact
639          * and just change the pte:
640          */
641         do_split = try_preserve_large_page(kpte, address, cpa);
642         /*
643          * When the range fits into the existing large page,
644          * return. cp->numpages and cpa->tlbflush have been updated in
645          * try_large_page:
646          */
647         if (do_split <= 0)
648                 return do_split;
649
650         /*
651          * We have to split the large page:
652          */
653         err = split_large_page(kpte, address);
654         if (!err) {
655                 /*
656                  * Do a global flush tlb after splitting the large page
657                  * and before we do the actual change page attribute in the PTE.
658                  *
659                  * With out this, we violate the TLB application note, that says
660                  * "The TLBs may contain both ordinary and large-page
661                  *  translations for a 4-KByte range of linear addresses. This
662                  *  may occur if software modifies the paging structures so that
663                  *  the page size used for the address range changes. If the two
664                  *  translations differ with respect to page frame or attributes
665                  *  (e.g., permissions), processor behavior is undefined and may
666                  *  be implementation-specific."
667                  *
668                  * We do this global tlb flush inside the cpa_lock, so that we
669                  * don't allow any other cpu, with stale tlb entries change the
670                  * page attribute in parallel, that also falls into the
671                  * just split large page entry.
672                  */
673                 flush_tlb_all();
674                 goto repeat;
675         }
676
677         return err;
678 }
679
680 static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias);
681
682 static int cpa_process_alias(struct cpa_data *cpa)
683 {
684         struct cpa_data alias_cpa;
685         unsigned long laddr = (unsigned long)__va(cpa->pfn << PAGE_SHIFT);
686         unsigned long vaddr, remapped;
687         int ret;
688
689         if (cpa->pfn >= max_pfn_mapped)
690                 return 0;
691
692 #ifdef CONFIG_X86_64
693         if (cpa->pfn >= max_low_pfn_mapped && cpa->pfn < (1UL<<(32-PAGE_SHIFT)))
694                 return 0;
695 #endif
696         /*
697          * No need to redo, when the primary call touched the direct
698          * mapping already:
699          */
700         if (cpa->flags & CPA_PAGES_ARRAY)
701                 vaddr = (unsigned long)page_address(cpa->pages[cpa->curpage]);
702         else if (cpa->flags & CPA_ARRAY)
703                 vaddr = cpa->vaddr[cpa->curpage];
704         else
705                 vaddr = *cpa->vaddr;
706
707         if (!(within(vaddr, PAGE_OFFSET,
708                     PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT)))) {
709
710                 alias_cpa = *cpa;
711                 alias_cpa.vaddr = &laddr;
712                 alias_cpa.flags &= ~(CPA_PAGES_ARRAY | CPA_ARRAY);
713
714                 ret = __change_page_attr_set_clr(&alias_cpa, 0);
715                 if (ret)
716                         return ret;
717         }
718
719 #ifdef CONFIG_X86_64
720         /*
721          * If the primary call didn't touch the high mapping already
722          * and the physical address is inside the kernel map, we need
723          * to touch the high mapped kernel as well:
724          */
725         if (!within(vaddr, (unsigned long)_text, _brk_end) &&
726             within(cpa->pfn, highmap_start_pfn(), highmap_end_pfn())) {
727                 unsigned long temp_cpa_vaddr = (cpa->pfn << PAGE_SHIFT) +
728                                                __START_KERNEL_map - phys_base;
729                 alias_cpa = *cpa;
730                 alias_cpa.vaddr = &temp_cpa_vaddr;
731                 alias_cpa.flags &= ~(CPA_PAGES_ARRAY | CPA_ARRAY);
732
733                 /*
734                  * The high mapping range is imprecise, so ignore the
735                  * return value.
736                  */
737                 __change_page_attr_set_clr(&alias_cpa, 0);
738         }
739 #endif
740
741         /*
742          * If the PMD page was partially used for per-cpu remapping,
743          * the recycled area needs to be split and modified.  Because
744          * the area is always proper subset of a PMD page
745          * cpa->numpages is guaranteed to be 1 for these areas, so
746          * there's no need to loop over and check for further remaps.
747          */
748         remapped = (unsigned long)pcpu_lpage_remapped((void *)laddr);
749         if (remapped) {
750                 WARN_ON(cpa->numpages > 1);
751                 alias_cpa = *cpa;
752                 alias_cpa.vaddr = &remapped;
753                 alias_cpa.flags &= ~(CPA_PAGES_ARRAY | CPA_ARRAY);
754                 ret = __change_page_attr_set_clr(&alias_cpa, 0);
755                 if (ret)
756                         return ret;
757         }
758
759         return 0;
760 }
761
762 static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias)
763 {
764         int ret, numpages = cpa->numpages;
765
766         while (numpages) {
767                 /*
768                  * Store the remaining nr of pages for the large page
769                  * preservation check.
770                  */
771                 cpa->numpages = numpages;
772                 /* for array changes, we can't use large page */
773                 if (cpa->flags & (CPA_ARRAY | CPA_PAGES_ARRAY))
774                         cpa->numpages = 1;
775
776                 if (!debug_pagealloc)
777                         spin_lock(&cpa_lock);
778                 ret = __change_page_attr(cpa, checkalias);
779                 if (!debug_pagealloc)
780                         spin_unlock(&cpa_lock);
781                 if (ret)
782                         return ret;
783
784                 if (checkalias) {
785                         ret = cpa_process_alias(cpa);
786                         if (ret)
787                                 return ret;
788                 }
789
790                 /*
791                  * Adjust the number of pages with the result of the
792                  * CPA operation. Either a large page has been
793                  * preserved or a single page update happened.
794                  */
795                 BUG_ON(cpa->numpages > numpages);
796                 numpages -= cpa->numpages;
797                 if (cpa->flags & (CPA_PAGES_ARRAY | CPA_ARRAY))
798                         cpa->curpage++;
799                 else
800                         *cpa->vaddr += cpa->numpages * PAGE_SIZE;
801
802         }
803         return 0;
804 }
805
806 static inline int cache_attr(pgprot_t attr)
807 {
808         return pgprot_val(attr) &
809                 (_PAGE_PAT | _PAGE_PAT_LARGE | _PAGE_PWT | _PAGE_PCD);
810 }
811
812 static int change_page_attr_set_clr(unsigned long *addr, int numpages,
813                                     pgprot_t mask_set, pgprot_t mask_clr,
814                                     int force_split, int in_flag,
815                                     struct page **pages)
816 {
817         struct cpa_data cpa;
818         int ret, cache, checkalias;
819
820         /*
821          * Check, if we are requested to change a not supported
822          * feature:
823          */
824         mask_set = canon_pgprot(mask_set);
825         mask_clr = canon_pgprot(mask_clr);
826         if (!pgprot_val(mask_set) && !pgprot_val(mask_clr) && !force_split)
827                 return 0;
828
829         /* Ensure we are PAGE_SIZE aligned */
830         if (in_flag & CPA_ARRAY) {
831                 int i;
832                 for (i = 0; i < numpages; i++) {
833                         if (addr[i] & ~PAGE_MASK) {
834                                 addr[i] &= PAGE_MASK;
835                                 WARN_ON_ONCE(1);
836                         }
837                 }
838         } else if (!(in_flag & CPA_PAGES_ARRAY)) {
839                 /*
840                  * in_flag of CPA_PAGES_ARRAY implies it is aligned.
841                  * No need to cehck in that case
842                  */
843                 if (*addr & ~PAGE_MASK) {
844                         *addr &= PAGE_MASK;
845                         /*
846                          * People should not be passing in unaligned addresses:
847                          */
848                         WARN_ON_ONCE(1);
849                 }
850         }
851
852         /* Must avoid aliasing mappings in the highmem code */
853         kmap_flush_unused();
854
855         vm_unmap_aliases();
856
857         cpa.vaddr = addr;
858         cpa.pages = pages;
859         cpa.numpages = numpages;
860         cpa.mask_set = mask_set;
861         cpa.mask_clr = mask_clr;
862         cpa.flags = 0;
863         cpa.curpage = 0;
864         cpa.force_split = force_split;
865
866         if (in_flag & (CPA_ARRAY | CPA_PAGES_ARRAY))
867                 cpa.flags |= in_flag;
868
869         /* No alias checking for _NX bit modifications */
870         checkalias = (pgprot_val(mask_set) | pgprot_val(mask_clr)) != _PAGE_NX;
871
872         ret = __change_page_attr_set_clr(&cpa, checkalias);
873
874         /*
875          * Check whether we really changed something:
876          */
877         if (!(cpa.flags & CPA_FLUSHTLB))
878                 goto out;
879
880         /*
881          * No need to flush, when we did not set any of the caching
882          * attributes:
883          */
884         cache = cache_attr(mask_set);
885
886         /*
887          * On success we use clflush, when the CPU supports it to
888          * avoid the wbindv. If the CPU does not support it and in the
889          * error case we fall back to cpa_flush_all (which uses
890          * wbindv):
891          */
892         if (!ret && cpu_has_clflush) {
893                 if (cpa.flags & (CPA_PAGES_ARRAY | CPA_ARRAY)) {
894                         cpa_flush_array(addr, numpages, cache,
895                                         cpa.flags, pages);
896                 } else
897                         cpa_flush_range(*addr, numpages, cache);
898         } else
899                 cpa_flush_all(cache);
900
901 out:
902         return ret;
903 }
904
905 static inline int change_page_attr_set(unsigned long *addr, int numpages,
906                                        pgprot_t mask, int array)
907 {
908         return change_page_attr_set_clr(addr, numpages, mask, __pgprot(0), 0,
909                 (array ? CPA_ARRAY : 0), NULL);
910 }
911
912 static inline int change_page_attr_clear(unsigned long *addr, int numpages,
913                                          pgprot_t mask, int array)
914 {
915         return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask, 0,
916                 (array ? CPA_ARRAY : 0), NULL);
917 }
918
919 static inline int cpa_set_pages_array(struct page **pages, int numpages,
920                                        pgprot_t mask)
921 {
922         return change_page_attr_set_clr(NULL, numpages, mask, __pgprot(0), 0,
923                 CPA_PAGES_ARRAY, pages);
924 }
925
926 static inline int cpa_clear_pages_array(struct page **pages, int numpages,
927                                          pgprot_t mask)
928 {
929         return change_page_attr_set_clr(NULL, numpages, __pgprot(0), mask, 0,
930                 CPA_PAGES_ARRAY, pages);
931 }
932
933 int _set_memory_uc(unsigned long addr, int numpages)
934 {
935         /*
936          * for now UC MINUS. see comments in ioremap_nocache()
937          */
938         return change_page_attr_set(&addr, numpages,
939                                     __pgprot(_PAGE_CACHE_UC_MINUS), 0);
940 }
941
942 int set_memory_uc(unsigned long addr, int numpages)
943 {
944         int ret;
945
946         /*
947          * for now UC MINUS. see comments in ioremap_nocache()
948          */
949         ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
950                             _PAGE_CACHE_UC_MINUS, NULL);
951         if (ret)
952                 goto out_err;
953
954         ret = _set_memory_uc(addr, numpages);
955         if (ret)
956                 goto out_free;
957
958         return 0;
959
960 out_free:
961         free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
962 out_err:
963         return ret;
964 }
965 EXPORT_SYMBOL(set_memory_uc);
966
967 int set_memory_array_uc(unsigned long *addr, int addrinarray)
968 {
969         int i, j;
970         int ret;
971
972         /*
973          * for now UC MINUS. see comments in ioremap_nocache()
974          */
975         for (i = 0; i < addrinarray; i++) {
976                 ret = reserve_memtype(__pa(addr[i]), __pa(addr[i]) + PAGE_SIZE,
977                                         _PAGE_CACHE_UC_MINUS, NULL);
978                 if (ret)
979                         goto out_free;
980         }
981
982         ret = change_page_attr_set(addr, addrinarray,
983                                     __pgprot(_PAGE_CACHE_UC_MINUS), 1);
984         if (ret)
985                 goto out_free;
986
987         return 0;
988
989 out_free:
990         for (j = 0; j < i; j++)
991                 free_memtype(__pa(addr[j]), __pa(addr[j]) + PAGE_SIZE);
992
993         return ret;
994 }
995 EXPORT_SYMBOL(set_memory_array_uc);
996
997 int _set_memory_wc(unsigned long addr, int numpages)
998 {
999         int ret;
1000         ret = change_page_attr_set(&addr, numpages,
1001                                     __pgprot(_PAGE_CACHE_UC_MINUS), 0);
1002
1003         if (!ret) {
1004                 ret = change_page_attr_set(&addr, numpages,
1005                                     __pgprot(_PAGE_CACHE_WC), 0);
1006         }
1007         return ret;
1008 }
1009
1010 int set_memory_wc(unsigned long addr, int numpages)
1011 {
1012         int ret;
1013
1014         if (!pat_enabled)
1015                 return set_memory_uc(addr, numpages);
1016
1017         ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
1018                 _PAGE_CACHE_WC, NULL);
1019         if (ret)
1020                 goto out_err;
1021
1022         ret = _set_memory_wc(addr, numpages);
1023         if (ret)
1024                 goto out_free;
1025
1026         return 0;
1027
1028 out_free:
1029         free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
1030 out_err:
1031         return ret;
1032 }
1033 EXPORT_SYMBOL(set_memory_wc);
1034
1035 int _set_memory_wb(unsigned long addr, int numpages)
1036 {
1037         return change_page_attr_clear(&addr, numpages,
1038                                       __pgprot(_PAGE_CACHE_MASK), 0);
1039 }
1040
1041 int set_memory_wb(unsigned long addr, int numpages)
1042 {
1043         int ret;
1044
1045         ret = _set_memory_wb(addr, numpages);
1046         if (ret)
1047                 return ret;
1048
1049         free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
1050         return 0;
1051 }
1052 EXPORT_SYMBOL(set_memory_wb);
1053
1054 int set_memory_array_wb(unsigned long *addr, int addrinarray)
1055 {
1056         int i;
1057         int ret;
1058
1059         ret = change_page_attr_clear(addr, addrinarray,
1060                                       __pgprot(_PAGE_CACHE_MASK), 1);
1061         if (ret)
1062                 return ret;
1063
1064         for (i = 0; i < addrinarray; i++)
1065                 free_memtype(__pa(addr[i]), __pa(addr[i]) + PAGE_SIZE);
1066
1067         return 0;
1068 }
1069 EXPORT_SYMBOL(set_memory_array_wb);
1070
1071 int set_memory_x(unsigned long addr, int numpages)
1072 {
1073         return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_NX), 0);
1074 }
1075 EXPORT_SYMBOL(set_memory_x);
1076
1077 int set_memory_nx(unsigned long addr, int numpages)
1078 {
1079         return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_NX), 0);
1080 }
1081 EXPORT_SYMBOL(set_memory_nx);
1082
1083 int set_memory_ro(unsigned long addr, int numpages)
1084 {
1085         return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_RW), 0);
1086 }
1087 EXPORT_SYMBOL_GPL(set_memory_ro);
1088
1089 int set_memory_rw(unsigned long addr, int numpages)
1090 {
1091         return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_RW), 0);
1092 }
1093 EXPORT_SYMBOL_GPL(set_memory_rw);
1094
1095 int set_memory_np(unsigned long addr, int numpages)
1096 {
1097         return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_PRESENT), 0);
1098 }
1099
1100 int set_memory_4k(unsigned long addr, int numpages)
1101 {
1102         return change_page_attr_set_clr(&addr, numpages, __pgprot(0),
1103                                         __pgprot(0), 1, 0, NULL);
1104 }
1105
1106 int set_pages_uc(struct page *page, int numpages)
1107 {
1108         unsigned long addr = (unsigned long)page_address(page);
1109
1110         return set_memory_uc(addr, numpages);
1111 }
1112 EXPORT_SYMBOL(set_pages_uc);
1113
1114 int set_pages_array_uc(struct page **pages, int addrinarray)
1115 {
1116         unsigned long start;
1117         unsigned long end;
1118         int i;
1119         int free_idx;
1120
1121         for (i = 0; i < addrinarray; i++) {
1122                 start = (unsigned long)page_address(pages[i]);
1123                 end = start + PAGE_SIZE;
1124                 if (reserve_memtype(start, end, _PAGE_CACHE_UC_MINUS, NULL))
1125                         goto err_out;
1126         }
1127
1128         if (cpa_set_pages_array(pages, addrinarray,
1129                         __pgprot(_PAGE_CACHE_UC_MINUS)) == 0) {
1130                 return 0; /* Success */
1131         }
1132 err_out:
1133         free_idx = i;
1134         for (i = 0; i < free_idx; i++) {
1135                 start = (unsigned long)page_address(pages[i]);
1136                 end = start + PAGE_SIZE;
1137                 free_memtype(start, end);
1138         }
1139         return -EINVAL;
1140 }
1141 EXPORT_SYMBOL(set_pages_array_uc);
1142
1143 int set_pages_wb(struct page *page, int numpages)
1144 {
1145         unsigned long addr = (unsigned long)page_address(page);
1146
1147         return set_memory_wb(addr, numpages);
1148 }
1149 EXPORT_SYMBOL(set_pages_wb);
1150
1151 int set_pages_array_wb(struct page **pages, int addrinarray)
1152 {
1153         int retval;
1154         unsigned long start;
1155         unsigned long end;
1156         int i;
1157
1158         retval = cpa_clear_pages_array(pages, addrinarray,
1159                         __pgprot(_PAGE_CACHE_MASK));
1160         if (retval)
1161                 return retval;
1162
1163         for (i = 0; i < addrinarray; i++) {
1164                 start = (unsigned long)page_address(pages[i]);
1165                 end = start + PAGE_SIZE;
1166                 free_memtype(start, end);
1167         }
1168
1169         return 0;
1170 }
1171 EXPORT_SYMBOL(set_pages_array_wb);
1172
1173 int set_pages_x(struct page *page, int numpages)
1174 {
1175         unsigned long addr = (unsigned long)page_address(page);
1176
1177         return set_memory_x(addr, numpages);
1178 }
1179 EXPORT_SYMBOL(set_pages_x);
1180
1181 int set_pages_nx(struct page *page, int numpages)
1182 {
1183         unsigned long addr = (unsigned long)page_address(page);
1184
1185         return set_memory_nx(addr, numpages);
1186 }
1187 EXPORT_SYMBOL(set_pages_nx);
1188
1189 int set_pages_ro(struct page *page, int numpages)
1190 {
1191         unsigned long addr = (unsigned long)page_address(page);
1192
1193         return set_memory_ro(addr, numpages);
1194 }
1195
1196 int set_pages_rw(struct page *page, int numpages)
1197 {
1198         unsigned long addr = (unsigned long)page_address(page);
1199
1200         return set_memory_rw(addr, numpages);
1201 }
1202
1203 #ifdef CONFIG_DEBUG_PAGEALLOC
1204
1205 static int __set_pages_p(struct page *page, int numpages)
1206 {
1207         unsigned long tempaddr = (unsigned long) page_address(page);
1208         struct cpa_data cpa = { .vaddr = &tempaddr,
1209                                 .numpages = numpages,
1210                                 .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW),
1211                                 .mask_clr = __pgprot(0),
1212                                 .flags = 0};
1213
1214         /*
1215          * No alias checking needed for setting present flag. otherwise,
1216          * we may need to break large pages for 64-bit kernel text
1217          * mappings (this adds to complexity if we want to do this from
1218          * atomic context especially). Let's keep it simple!
1219          */
1220         return __change_page_attr_set_clr(&cpa, 0);
1221 }
1222
1223 static int __set_pages_np(struct page *page, int numpages)
1224 {
1225         unsigned long tempaddr = (unsigned long) page_address(page);
1226         struct cpa_data cpa = { .vaddr = &tempaddr,
1227                                 .numpages = numpages,
1228                                 .mask_set = __pgprot(0),
1229                                 .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW),
1230                                 .flags = 0};
1231
1232         /*
1233          * No alias checking needed for setting not present flag. otherwise,
1234          * we may need to break large pages for 64-bit kernel text
1235          * mappings (this adds to complexity if we want to do this from
1236          * atomic context especially). Let's keep it simple!
1237          */
1238         return __change_page_attr_set_clr(&cpa, 0);
1239 }
1240
1241 void kernel_map_pages(struct page *page, int numpages, int enable)
1242 {
1243         if (PageHighMem(page))
1244                 return;
1245         if (!enable) {
1246                 debug_check_no_locks_freed(page_address(page),
1247                                            numpages * PAGE_SIZE);
1248         }
1249
1250         /*
1251          * If page allocator is not up yet then do not call c_p_a():
1252          */
1253         if (!debug_pagealloc_enabled)
1254                 return;
1255
1256         /*
1257          * The return value is ignored as the calls cannot fail.
1258          * Large pages for identity mappings are not used at boot time
1259          * and hence no memory allocations during large page split.
1260          */
1261         if (enable)
1262                 __set_pages_p(page, numpages);
1263         else
1264                 __set_pages_np(page, numpages);
1265
1266         /*
1267          * We should perform an IPI and flush all tlbs,
1268          * but that can deadlock->flush only current cpu:
1269          */
1270         __flush_tlb_all();
1271 }
1272
1273 #ifdef CONFIG_HIBERNATION
1274
1275 bool kernel_page_present(struct page *page)
1276 {
1277         unsigned int level;
1278         pte_t *pte;
1279
1280         if (PageHighMem(page))
1281                 return false;
1282
1283         pte = lookup_address((unsigned long)page_address(page), &level);
1284         return (pte_val(*pte) & _PAGE_PRESENT);
1285 }
1286
1287 #endif /* CONFIG_HIBERNATION */
1288
1289 #endif /* CONFIG_DEBUG_PAGEALLOC */
1290
1291 /*
1292  * The testcases use internal knowledge of the implementation that shouldn't
1293  * be exposed to the rest of the kernel. Include these directly here.
1294  */
1295 #ifdef CONFIG_CPA_DEBUG
1296 #include "pageattr-test.c"
1297 #endif