]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/x86/mm/pageattr.c
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[mirror_ubuntu-bionic-kernel.git] / arch / x86 / mm / pageattr.c
CommitLineData
9f4c815c
IM
1/*
2 * Copyright 2002 Andi Kleen, SuSE Labs.
1da177e4 3 * Thanks to Ben LaHaise for precious feedback.
9f4c815c 4 */
1da177e4 5#include <linux/highmem.h>
8192206d 6#include <linux/bootmem.h>
9f4c815c 7#include <linux/sched.h>
9f4c815c 8#include <linux/mm.h>
76ebd054 9#include <linux/interrupt.h>
ee7ae7a1
TG
10#include <linux/seq_file.h>
11#include <linux/debugfs.h>
e59a1bb2 12#include <linux/pfn.h>
8c4bfc6e 13#include <linux/percpu.h>
5a0e3ad6 14#include <linux/gfp.h>
5bd5a452 15#include <linux/pci.h>
d6472302 16#include <linux/vmalloc.h>
9f4c815c 17
66441bd3 18#include <asm/e820/api.h>
1da177e4
LT
19#include <asm/processor.h>
20#include <asm/tlbflush.h>
f8af095d 21#include <asm/sections.h>
93dbda7c 22#include <asm/setup.h>
7c0f6ba6 23#include <linux/uaccess.h>
9f4c815c 24#include <asm/pgalloc.h>
c31c7d48 25#include <asm/proto.h>
1219333d 26#include <asm/pat.h>
d1163651 27#include <asm/set_memory.h>
1da177e4 28
9df84993
IM
29/*
30 * The current flushing context - we pass it instead of 5 arguments:
31 */
72e458df 32struct cpa_data {
d75586ad 33 unsigned long *vaddr;
0fd64c23 34 pgd_t *pgd;
72e458df
TG
35 pgprot_t mask_set;
36 pgprot_t mask_clr;
74256377 37 unsigned long numpages;
d75586ad 38 int flags;
c31c7d48 39 unsigned long pfn;
c9caa02c 40 unsigned force_split : 1;
d75586ad 41 int curpage;
9ae28475 42 struct page **pages;
72e458df
TG
43};
44
ad5ca55f
SS
45/*
46 * Serialize cpa() (for !DEBUG_PAGEALLOC which uses large identity mappings)
47 * using cpa_lock. So that we don't allow any other cpu, with stale large tlb
48 * entries change the page attribute in parallel to some other cpu
49 * splitting a large page entry along with changing the attribute.
50 */
51static DEFINE_SPINLOCK(cpa_lock);
52
d75586ad
SL
53#define CPA_FLUSHTLB 1
54#define CPA_ARRAY 2
9ae28475 55#define CPA_PAGES_ARRAY 4
d75586ad 56
65280e61 57#ifdef CONFIG_PROC_FS
ce0c0e50
AK
58static unsigned long direct_pages_count[PG_LEVEL_NUM];
59
65280e61 60void update_page_count(int level, unsigned long pages)
ce0c0e50 61{
ce0c0e50 62 /* Protect against CPA */
a79e53d8 63 spin_lock(&pgd_lock);
ce0c0e50 64 direct_pages_count[level] += pages;
a79e53d8 65 spin_unlock(&pgd_lock);
65280e61
TG
66}
67
68static void split_page_count(int level)
69{
c9e0d391
DJ
70 if (direct_pages_count[level] == 0)
71 return;
72
65280e61
TG
73 direct_pages_count[level]--;
74 direct_pages_count[level - 1] += PTRS_PER_PTE;
75}
76
e1759c21 77void arch_report_meminfo(struct seq_file *m)
65280e61 78{
b9c3bfc2 79 seq_printf(m, "DirectMap4k: %8lu kB\n",
a06de630
HD
80 direct_pages_count[PG_LEVEL_4K] << 2);
81#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
b9c3bfc2 82 seq_printf(m, "DirectMap2M: %8lu kB\n",
a06de630
HD
83 direct_pages_count[PG_LEVEL_2M] << 11);
84#else
b9c3bfc2 85 seq_printf(m, "DirectMap4M: %8lu kB\n",
a06de630
HD
86 direct_pages_count[PG_LEVEL_2M] << 12);
87#endif
a06de630 88 if (direct_gbpages)
b9c3bfc2 89 seq_printf(m, "DirectMap1G: %8lu kB\n",
a06de630 90 direct_pages_count[PG_LEVEL_1G] << 20);
ce0c0e50 91}
65280e61
TG
92#else
93static inline void split_page_count(int level) { }
94#endif
ce0c0e50 95
c31c7d48
TG
96#ifdef CONFIG_X86_64
97
98static inline unsigned long highmap_start_pfn(void)
99{
fc8d7826 100 return __pa_symbol(_text) >> PAGE_SHIFT;
c31c7d48
TG
101}
102
103static inline unsigned long highmap_end_pfn(void)
104{
4ff53087
TG
105 /* Do not reference physical address outside the kernel. */
106 return __pa_symbol(roundup(_brk_end, PMD_SIZE) - 1) >> PAGE_SHIFT;
c31c7d48
TG
107}
108
109#endif
110
ed724be6
AV
111static inline int
112within(unsigned long addr, unsigned long start, unsigned long end)
687c4825 113{
ed724be6
AV
114 return addr >= start && addr < end;
115}
116
4ff53087
TG
117static inline int
118within_inclusive(unsigned long addr, unsigned long start, unsigned long end)
119{
120 return addr >= start && addr <= end;
121}
122
d7c8f21a
TG
123/*
124 * Flushing functions
125 */
cd8ddf1a 126
cd8ddf1a
TG
127/**
128 * clflush_cache_range - flush a cache range with clflush
9efc31b8 129 * @vaddr: virtual start address
cd8ddf1a
TG
130 * @size: number of bytes to flush
131 *
8b80fd8b
RZ
132 * clflushopt is an unordered instruction which needs fencing with mfence or
133 * sfence to avoid ordering issues.
cd8ddf1a 134 */
4c61afcd 135void clflush_cache_range(void *vaddr, unsigned int size)
d7c8f21a 136{
1f1a89ac
CW
137 const unsigned long clflush_size = boot_cpu_data.x86_clflush_size;
138 void *p = (void *)((unsigned long)vaddr & ~(clflush_size - 1));
6c434d61 139 void *vend = vaddr + size;
1f1a89ac
CW
140
141 if (p >= vend)
142 return;
d7c8f21a 143
cd8ddf1a 144 mb();
4c61afcd 145
1f1a89ac 146 for (; p < vend; p += clflush_size)
6c434d61 147 clflushopt(p);
4c61afcd 148
cd8ddf1a 149 mb();
d7c8f21a 150}
e517a5e9 151EXPORT_SYMBOL_GPL(clflush_cache_range);
d7c8f21a 152
f2b61257
DW
153void arch_invalidate_pmem(void *addr, size_t size)
154{
155 clflush_cache_range(addr, size);
156}
157EXPORT_SYMBOL_GPL(arch_invalidate_pmem);
158
af1e6844 159static void __cpa_flush_all(void *arg)
d7c8f21a 160{
6bb8383b
AK
161 unsigned long cache = (unsigned long)arg;
162
d7c8f21a
TG
163 /*
164 * Flush all to work around Errata in early athlons regarding
165 * large page flushing.
166 */
167 __flush_tlb_all();
168
0b827537 169 if (cache && boot_cpu_data.x86 >= 4)
d7c8f21a
TG
170 wbinvd();
171}
172
6bb8383b 173static void cpa_flush_all(unsigned long cache)
d7c8f21a
TG
174{
175 BUG_ON(irqs_disabled());
176
15c8b6c1 177 on_each_cpu(__cpa_flush_all, (void *) cache, 1);
d7c8f21a
TG
178}
179
57a6a46a
TG
180static void __cpa_flush_range(void *arg)
181{
57a6a46a
TG
182 /*
183 * We could optimize that further and do individual per page
184 * tlb invalidates for a low number of pages. Caveat: we must
185 * flush the high aliases on 64bit as well.
186 */
187 __flush_tlb_all();
57a6a46a
TG
188}
189
6bb8383b 190static void cpa_flush_range(unsigned long start, int numpages, int cache)
57a6a46a 191{
4c61afcd
IM
192 unsigned int i, level;
193 unsigned long addr;
194
a53276e2 195 BUG_ON(irqs_disabled() && !early_boot_irqs_disabled);
4c61afcd 196 WARN_ON(PAGE_ALIGN(start) != start);
57a6a46a 197
15c8b6c1 198 on_each_cpu(__cpa_flush_range, NULL, 1);
57a6a46a 199
6bb8383b
AK
200 if (!cache)
201 return;
202
3b233e52
TG
203 /*
204 * We only need to flush on one CPU,
205 * clflush is a MESI-coherent instruction that
206 * will cause all other CPUs to flush the same
207 * cachelines:
208 */
4c61afcd
IM
209 for (i = 0, addr = start; i < numpages; i++, addr += PAGE_SIZE) {
210 pte_t *pte = lookup_address(addr, &level);
211
212 /*
213 * Only flush present addresses:
214 */
7bfb72e8 215 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
4c61afcd
IM
216 clflush_cache_range((void *) addr, PAGE_SIZE);
217 }
57a6a46a
TG
218}
219
9ae28475 220static void cpa_flush_array(unsigned long *start, int numpages, int cache,
221 int in_flags, struct page **pages)
d75586ad
SL
222{
223 unsigned int i, level;
459fbe00
JO
224#ifdef CONFIG_PREEMPT
225 /*
226 * Avoid wbinvd() because it causes latencies on all CPUs,
227 * regardless of any CPU isolation that may be in effect.
228 *
229 * This should be extended for CAT enabled systems independent of
230 * PREEMPT because wbinvd() does not respect the CAT partitions and
231 * this is exposed to unpriviledged users through the graphics
232 * subsystem.
233 */
234 unsigned long do_wbinvd = 0;
235#else
2171787b 236 unsigned long do_wbinvd = cache && numpages >= 1024; /* 4M threshold */
459fbe00 237#endif
d75586ad
SL
238
239 BUG_ON(irqs_disabled());
240
2171787b 241 on_each_cpu(__cpa_flush_all, (void *) do_wbinvd, 1);
d75586ad 242
2171787b 243 if (!cache || do_wbinvd)
d75586ad
SL
244 return;
245
d75586ad
SL
246 /*
247 * We only need to flush on one CPU,
248 * clflush is a MESI-coherent instruction that
249 * will cause all other CPUs to flush the same
250 * cachelines:
251 */
9ae28475 252 for (i = 0; i < numpages; i++) {
253 unsigned long addr;
254 pte_t *pte;
255
256 if (in_flags & CPA_PAGES_ARRAY)
257 addr = (unsigned long)page_address(pages[i]);
258 else
259 addr = start[i];
260
261 pte = lookup_address(addr, &level);
d75586ad
SL
262
263 /*
264 * Only flush present addresses:
265 */
266 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
9ae28475 267 clflush_cache_range((void *)addr, PAGE_SIZE);
d75586ad
SL
268 }
269}
270
ed724be6
AV
271/*
272 * Certain areas of memory on x86 require very specific protection flags,
273 * for example the BIOS area or kernel text. Callers don't always get this
274 * right (again, ioremap() on BIOS memory is not uncommon) so this function
275 * checks and fixes these known static required protection bits.
276 */
c31c7d48
TG
277static inline pgprot_t static_protections(pgprot_t prot, unsigned long address,
278 unsigned long pfn)
ed724be6
AV
279{
280 pgprot_t forbidden = __pgprot(0);
281
687c4825 282 /*
ed724be6
AV
283 * The BIOS area between 640k and 1Mb needs to be executable for
284 * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support.
687c4825 285 */
5bd5a452
MC
286#ifdef CONFIG_PCI_BIOS
287 if (pcibios_enabled && within(pfn, BIOS_BEGIN >> PAGE_SHIFT, BIOS_END >> PAGE_SHIFT))
ed724be6 288 pgprot_val(forbidden) |= _PAGE_NX;
5bd5a452 289#endif
ed724be6
AV
290
291 /*
292 * The kernel text needs to be executable for obvious reasons
c31c7d48
TG
293 * Does not cover __inittext since that is gone later on. On
294 * 64bit we do not enforce !NX on the low mapping
ed724be6
AV
295 */
296 if (within(address, (unsigned long)_text, (unsigned long)_etext))
297 pgprot_val(forbidden) |= _PAGE_NX;
cc0f21bb 298
cc0f21bb 299 /*
c31c7d48
TG
300 * The .rodata section needs to be read-only. Using the pfn
301 * catches all aliases.
cc0f21bb 302 */
fc8d7826
AD
303 if (within(pfn, __pa_symbol(__start_rodata) >> PAGE_SHIFT,
304 __pa_symbol(__end_rodata) >> PAGE_SHIFT))
cc0f21bb 305 pgprot_val(forbidden) |= _PAGE_RW;
ed724be6 306
9ccaf77c 307#if defined(CONFIG_X86_64)
74e08179 308 /*
502f6604
SS
309 * Once the kernel maps the text as RO (kernel_set_to_readonly is set),
310 * kernel text mappings for the large page aligned text, rodata sections
311 * will be always read-only. For the kernel identity mappings covering
312 * the holes caused by this alignment can be anything that user asks.
74e08179
SS
313 *
314 * This will preserve the large page mappings for kernel text/data
315 * at no extra cost.
316 */
502f6604
SS
317 if (kernel_set_to_readonly &&
318 within(address, (unsigned long)_text,
281ff33b
SS
319 (unsigned long)__end_rodata_hpage_align)) {
320 unsigned int level;
321
322 /*
323 * Don't enforce the !RW mapping for the kernel text mapping,
324 * if the current mapping is already using small page mapping.
325 * No need to work hard to preserve large page mappings in this
326 * case.
327 *
328 * This also fixes the Linux Xen paravirt guest boot failure
329 * (because of unexpected read-only mappings for kernel identity
330 * mappings). In this paravirt guest case, the kernel text
331 * mapping and the kernel identity mapping share the same
332 * page-table pages. Thus we can't really use different
333 * protections for the kernel text and identity mappings. Also,
334 * these shared mappings are made of small page mappings.
335 * Thus this don't enforce !RW mapping for small page kernel
336 * text mapping logic will help Linux Xen parvirt guest boot
0d2eb44f 337 * as well.
281ff33b
SS
338 */
339 if (lookup_address(address, &level) && (level != PG_LEVEL_4K))
340 pgprot_val(forbidden) |= _PAGE_RW;
341 }
74e08179
SS
342#endif
343
ed724be6 344 prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden));
687c4825
IM
345
346 return prot;
347}
348
426e34cc
MF
349/*
350 * Lookup the page table entry for a virtual address in a specific pgd.
351 * Return a pointer to the entry and the level of the mapping.
352 */
353pte_t *lookup_address_in_pgd(pgd_t *pgd, unsigned long address,
354 unsigned int *level)
9f4c815c 355{
45478336 356 p4d_t *p4d;
1da177e4
LT
357 pud_t *pud;
358 pmd_t *pmd;
9f4c815c 359
30551bb3
TG
360 *level = PG_LEVEL_NONE;
361
1da177e4
LT
362 if (pgd_none(*pgd))
363 return NULL;
9df84993 364
45478336
KS
365 p4d = p4d_offset(pgd, address);
366 if (p4d_none(*p4d))
367 return NULL;
368
369 *level = PG_LEVEL_512G;
370 if (p4d_large(*p4d) || !p4d_present(*p4d))
371 return (pte_t *)p4d;
372
373 pud = pud_offset(p4d, address);
1da177e4
LT
374 if (pud_none(*pud))
375 return NULL;
c2f71ee2
AK
376
377 *level = PG_LEVEL_1G;
378 if (pud_large(*pud) || !pud_present(*pud))
379 return (pte_t *)pud;
380
1da177e4
LT
381 pmd = pmd_offset(pud, address);
382 if (pmd_none(*pmd))
383 return NULL;
30551bb3
TG
384
385 *level = PG_LEVEL_2M;
9a14aefc 386 if (pmd_large(*pmd) || !pmd_present(*pmd))
1da177e4 387 return (pte_t *)pmd;
1da177e4 388
30551bb3 389 *level = PG_LEVEL_4K;
9df84993 390
9f4c815c
IM
391 return pte_offset_kernel(pmd, address);
392}
0fd64c23
BP
393
394/*
395 * Lookup the page table entry for a virtual address. Return a pointer
396 * to the entry and the level of the mapping.
397 *
398 * Note: We return pud and pmd either when the entry is marked large
399 * or when the present bit is not set. Otherwise we would return a
400 * pointer to a nonexisting mapping.
401 */
402pte_t *lookup_address(unsigned long address, unsigned int *level)
403{
426e34cc 404 return lookup_address_in_pgd(pgd_offset_k(address), address, level);
0fd64c23 405}
75bb8835 406EXPORT_SYMBOL_GPL(lookup_address);
9f4c815c 407
0fd64c23
BP
408static pte_t *_lookup_address_cpa(struct cpa_data *cpa, unsigned long address,
409 unsigned int *level)
410{
411 if (cpa->pgd)
426e34cc 412 return lookup_address_in_pgd(cpa->pgd + pgd_index(address),
0fd64c23
BP
413 address, level);
414
415 return lookup_address(address, level);
416}
417
792230c3
JG
418/*
419 * Lookup the PMD entry for a virtual address. Return a pointer to the entry
420 * or NULL if not present.
421 */
422pmd_t *lookup_pmd_address(unsigned long address)
423{
424 pgd_t *pgd;
45478336 425 p4d_t *p4d;
792230c3
JG
426 pud_t *pud;
427
428 pgd = pgd_offset_k(address);
429 if (pgd_none(*pgd))
430 return NULL;
431
45478336
KS
432 p4d = p4d_offset(pgd, address);
433 if (p4d_none(*p4d) || p4d_large(*p4d) || !p4d_present(*p4d))
434 return NULL;
435
436 pud = pud_offset(p4d, address);
792230c3
JG
437 if (pud_none(*pud) || pud_large(*pud) || !pud_present(*pud))
438 return NULL;
439
440 return pmd_offset(pud, address);
441}
442
d7656534
DH
443/*
444 * This is necessary because __pa() does not work on some
445 * kinds of memory, like vmalloc() or the alloc_remap()
446 * areas on 32-bit NUMA systems. The percpu areas can
447 * end up in this kind of memory, for instance.
448 *
449 * This could be optimized, but it is only intended to be
450 * used at inititalization time, and keeping it
451 * unoptimized should increase the testing coverage for
452 * the more obscure platforms.
453 */
454phys_addr_t slow_virt_to_phys(void *__virt_addr)
455{
456 unsigned long virt_addr = (unsigned long)__virt_addr;
bf70e551
DC
457 phys_addr_t phys_addr;
458 unsigned long offset;
d7656534 459 enum pg_level level;
d7656534
DH
460 pte_t *pte;
461
462 pte = lookup_address(virt_addr, &level);
463 BUG_ON(!pte);
34437e67 464
bf70e551
DC
465 /*
466 * pXX_pfn() returns unsigned long, which must be cast to phys_addr_t
467 * before being left-shifted PAGE_SHIFT bits -- this trick is to
468 * make 32-PAE kernel work correctly.
469 */
34437e67
TK
470 switch (level) {
471 case PG_LEVEL_1G:
bf70e551 472 phys_addr = (phys_addr_t)pud_pfn(*(pud_t *)pte) << PAGE_SHIFT;
34437e67
TK
473 offset = virt_addr & ~PUD_PAGE_MASK;
474 break;
475 case PG_LEVEL_2M:
bf70e551 476 phys_addr = (phys_addr_t)pmd_pfn(*(pmd_t *)pte) << PAGE_SHIFT;
34437e67
TK
477 offset = virt_addr & ~PMD_PAGE_MASK;
478 break;
479 default:
bf70e551 480 phys_addr = (phys_addr_t)pte_pfn(*pte) << PAGE_SHIFT;
34437e67
TK
481 offset = virt_addr & ~PAGE_MASK;
482 }
483
484 return (phys_addr_t)(phys_addr | offset);
d7656534
DH
485}
486EXPORT_SYMBOL_GPL(slow_virt_to_phys);
487
9df84993
IM
488/*
489 * Set the new pmd in all the pgds we know about:
490 */
9a3dc780 491static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
9f4c815c 492{
9f4c815c
IM
493 /* change init_mm */
494 set_pte_atomic(kpte, pte);
44af6c41 495#ifdef CONFIG_X86_32
e4b71dcf 496 if (!SHARED_KERNEL_PMD) {
44af6c41
IM
497 struct page *page;
498
e3ed910d 499 list_for_each_entry(page, &pgd_list, lru) {
44af6c41 500 pgd_t *pgd;
45478336 501 p4d_t *p4d;
44af6c41
IM
502 pud_t *pud;
503 pmd_t *pmd;
504
505 pgd = (pgd_t *)page_address(page) + pgd_index(address);
45478336
KS
506 p4d = p4d_offset(pgd, address);
507 pud = pud_offset(p4d, address);
44af6c41
IM
508 pmd = pmd_offset(pud, address);
509 set_pte_atomic((pte_t *)pmd, pte);
510 }
1da177e4 511 }
44af6c41 512#endif
1da177e4
LT
513}
514
9df84993
IM
515static int
516try_preserve_large_page(pte_t *kpte, unsigned long address,
517 struct cpa_data *cpa)
65e074df 518{
3a19109e 519 unsigned long nextpage_addr, numpages, pmask, psize, addr, pfn, old_pfn;
65e074df 520 pte_t new_pte, old_pte, *tmp;
64edc8ed 521 pgprot_t old_prot, new_prot, req_prot;
fac84939 522 int i, do_split = 1;
f3c4fbb6 523 enum pg_level level;
65e074df 524
c9caa02c
AK
525 if (cpa->force_split)
526 return 1;
527
a79e53d8 528 spin_lock(&pgd_lock);
65e074df
TG
529 /*
530 * Check for races, another CPU might have split this page
531 * up already:
532 */
82f0712c 533 tmp = _lookup_address_cpa(cpa, address, &level);
65e074df
TG
534 if (tmp != kpte)
535 goto out_unlock;
536
537 switch (level) {
538 case PG_LEVEL_2M:
3a19109e
TK
539 old_prot = pmd_pgprot(*(pmd_t *)kpte);
540 old_pfn = pmd_pfn(*(pmd_t *)kpte);
541 break;
65e074df 542 case PG_LEVEL_1G:
3a19109e
TK
543 old_prot = pud_pgprot(*(pud_t *)kpte);
544 old_pfn = pud_pfn(*(pud_t *)kpte);
f3c4fbb6 545 break;
65e074df 546 default:
beaff633 547 do_split = -EINVAL;
65e074df
TG
548 goto out_unlock;
549 }
550
3a19109e
TK
551 psize = page_level_size(level);
552 pmask = page_level_mask(level);
553
65e074df
TG
554 /*
555 * Calculate the number of pages, which fit into this large
556 * page starting at address:
557 */
558 nextpage_addr = (address + psize) & pmask;
559 numpages = (nextpage_addr - address) >> PAGE_SHIFT;
9b5cf48b
RW
560 if (numpages < cpa->numpages)
561 cpa->numpages = numpages;
65e074df
TG
562
563 /*
564 * We are safe now. Check whether the new pgprot is the same:
f5b2831d
JG
565 * Convert protection attributes to 4k-format, as cpa->mask* are set
566 * up accordingly.
65e074df
TG
567 */
568 old_pte = *kpte;
55696b1f 569 req_prot = pgprot_large_2_4k(old_prot);
65e074df 570
64edc8ed
MC
571 pgprot_val(req_prot) &= ~pgprot_val(cpa->mask_clr);
572 pgprot_val(req_prot) |= pgprot_val(cpa->mask_set);
c31c7d48 573
f5b2831d
JG
574 /*
575 * req_prot is in format of 4k pages. It must be converted to large
576 * page format: the caching mode includes the PAT bit located at
577 * different bit positions in the two formats.
578 */
579 req_prot = pgprot_4k_2_large(req_prot);
580
a8aed3e0
AA
581 /*
582 * Set the PSE and GLOBAL flags only if the PRESENT flag is
583 * set otherwise pmd_present/pmd_huge will return true even on
584 * a non present pmd. The canon_pgprot will clear _PAGE_GLOBAL
585 * for the ancient hardware that doesn't support it.
586 */
f76cfa3c
AA
587 if (pgprot_val(req_prot) & _PAGE_PRESENT)
588 pgprot_val(req_prot) |= _PAGE_PSE | _PAGE_GLOBAL;
a8aed3e0 589 else
f76cfa3c 590 pgprot_val(req_prot) &= ~(_PAGE_PSE | _PAGE_GLOBAL);
a8aed3e0 591
f76cfa3c 592 req_prot = canon_pgprot(req_prot);
a8aed3e0 593
c31c7d48 594 /*
3a19109e 595 * old_pfn points to the large page base pfn. So we need
c31c7d48
TG
596 * to add the offset of the virtual address:
597 */
3a19109e 598 pfn = old_pfn + ((address & (psize - 1)) >> PAGE_SHIFT);
c31c7d48
TG
599 cpa->pfn = pfn;
600
64edc8ed 601 new_prot = static_protections(req_prot, address, pfn);
65e074df 602
fac84939
TG
603 /*
604 * We need to check the full range, whether
605 * static_protection() requires a different pgprot for one of
606 * the pages in the range we try to preserve:
607 */
64edc8ed 608 addr = address & pmask;
3a19109e 609 pfn = old_pfn;
64edc8ed
MC
610 for (i = 0; i < (psize >> PAGE_SHIFT); i++, addr += PAGE_SIZE, pfn++) {
611 pgprot_t chk_prot = static_protections(req_prot, addr, pfn);
fac84939
TG
612
613 if (pgprot_val(chk_prot) != pgprot_val(new_prot))
614 goto out_unlock;
615 }
616
65e074df
TG
617 /*
618 * If there are no changes, return. maxpages has been updated
619 * above:
620 */
621 if (pgprot_val(new_prot) == pgprot_val(old_prot)) {
beaff633 622 do_split = 0;
65e074df
TG
623 goto out_unlock;
624 }
625
626 /*
627 * We need to change the attributes. Check, whether we can
628 * change the large page in one go. We request a split, when
629 * the address is not aligned and the number of pages is
630 * smaller than the number of pages in the large page. Note
631 * that we limited the number of possible pages already to
632 * the number of pages in the large page.
633 */
64edc8ed 634 if (address == (address & pmask) && cpa->numpages == (psize >> PAGE_SHIFT)) {
65e074df
TG
635 /*
636 * The address is aligned and the number of pages
637 * covers the full page.
638 */
3a19109e 639 new_pte = pfn_pte(old_pfn, new_prot);
65e074df 640 __set_pmd_pte(kpte, address, new_pte);
d75586ad 641 cpa->flags |= CPA_FLUSHTLB;
beaff633 642 do_split = 0;
65e074df
TG
643 }
644
645out_unlock:
a79e53d8 646 spin_unlock(&pgd_lock);
9df84993 647
beaff633 648 return do_split;
65e074df
TG
649}
650
5952886b 651static int
82f0712c
BP
652__split_large_page(struct cpa_data *cpa, pte_t *kpte, unsigned long address,
653 struct page *base)
bb5c2dbd 654{
5952886b 655 pte_t *pbase = (pte_t *)page_address(base);
d551aaa2 656 unsigned long ref_pfn, pfn, pfninc = 1;
9df84993 657 unsigned int i, level;
ae9aae9e 658 pte_t *tmp;
9df84993 659 pgprot_t ref_prot;
bb5c2dbd 660
a79e53d8 661 spin_lock(&pgd_lock);
bb5c2dbd
IM
662 /*
663 * Check for races, another CPU might have split this page
664 * up for us already:
665 */
82f0712c 666 tmp = _lookup_address_cpa(cpa, address, &level);
ae9aae9e
WC
667 if (tmp != kpte) {
668 spin_unlock(&pgd_lock);
669 return 1;
670 }
bb5c2dbd 671
6944a9c8 672 paravirt_alloc_pte(&init_mm, page_to_pfn(base));
f5b2831d 673
d551aaa2
TK
674 switch (level) {
675 case PG_LEVEL_2M:
676 ref_prot = pmd_pgprot(*(pmd_t *)kpte);
677 /* clear PSE and promote PAT bit to correct position */
f5b2831d 678 ref_prot = pgprot_large_2_4k(ref_prot);
d551aaa2
TK
679 ref_pfn = pmd_pfn(*(pmd_t *)kpte);
680 break;
bb5c2dbd 681
d551aaa2
TK
682 case PG_LEVEL_1G:
683 ref_prot = pud_pgprot(*(pud_t *)kpte);
684 ref_pfn = pud_pfn(*(pud_t *)kpte);
f07333fd 685 pfninc = PMD_PAGE_SIZE >> PAGE_SHIFT;
d551aaa2 686
a8aed3e0 687 /*
d551aaa2 688 * Clear the PSE flags if the PRESENT flag is not set
a8aed3e0
AA
689 * otherwise pmd_present/pmd_huge will return true
690 * even on a non present pmd.
691 */
d551aaa2 692 if (!(pgprot_val(ref_prot) & _PAGE_PRESENT))
a8aed3e0 693 pgprot_val(ref_prot) &= ~_PAGE_PSE;
d551aaa2
TK
694 break;
695
696 default:
697 spin_unlock(&pgd_lock);
698 return 1;
f07333fd 699 }
f07333fd 700
a8aed3e0
AA
701 /*
702 * Set the GLOBAL flags only if the PRESENT flag is set
703 * otherwise pmd/pte_present will return true even on a non
704 * present pmd/pte. The canon_pgprot will clear _PAGE_GLOBAL
705 * for the ancient hardware that doesn't support it.
706 */
707 if (pgprot_val(ref_prot) & _PAGE_PRESENT)
708 pgprot_val(ref_prot) |= _PAGE_GLOBAL;
709 else
710 pgprot_val(ref_prot) &= ~_PAGE_GLOBAL;
711
63c1dcf4
TG
712 /*
713 * Get the target pfn from the original entry:
714 */
d551aaa2 715 pfn = ref_pfn;
f07333fd 716 for (i = 0; i < PTRS_PER_PTE; i++, pfn += pfninc)
a8aed3e0 717 set_pte(&pbase[i], pfn_pte(pfn, canon_pgprot(ref_prot)));
bb5c2dbd 718
2c66e24d
SP
719 if (virt_addr_valid(address)) {
720 unsigned long pfn = PFN_DOWN(__pa(address));
721
722 if (pfn_range_is_mapped(pfn, pfn + 1))
723 split_page_count(level);
724 }
f361a450 725
bb5c2dbd 726 /*
07a66d7c 727 * Install the new, split up pagetable.
4c881ca1 728 *
07a66d7c
IM
729 * We use the standard kernel pagetable protections for the new
730 * pagetable protections, the actual ptes set above control the
731 * primary protection behavior:
bb5c2dbd 732 */
07a66d7c 733 __set_pmd_pte(kpte, address, mk_pte(base, __pgprot(_KERNPG_TABLE)));
211b3d03
IM
734
735 /*
736 * Intel Atom errata AAH41 workaround.
737 *
738 * The real fix should be in hw or in a microcode update, but
739 * we also probabilistically try to reduce the window of having
740 * a large TLB mixed with 4K TLBs while instruction fetches are
741 * going on.
742 */
743 __flush_tlb_all();
ae9aae9e 744 spin_unlock(&pgd_lock);
211b3d03 745
ae9aae9e
WC
746 return 0;
747}
bb5c2dbd 748
82f0712c
BP
749static int split_large_page(struct cpa_data *cpa, pte_t *kpte,
750 unsigned long address)
ae9aae9e 751{
ae9aae9e
WC
752 struct page *base;
753
288cf3c6 754 if (!debug_pagealloc_enabled())
ae9aae9e
WC
755 spin_unlock(&cpa_lock);
756 base = alloc_pages(GFP_KERNEL | __GFP_NOTRACK, 0);
288cf3c6 757 if (!debug_pagealloc_enabled())
ae9aae9e
WC
758 spin_lock(&cpa_lock);
759 if (!base)
760 return -ENOMEM;
761
82f0712c 762 if (__split_large_page(cpa, kpte, address, base))
8311eb84 763 __free_page(base);
bb5c2dbd 764
bb5c2dbd
IM
765 return 0;
766}
767
52a628fb
BP
768static bool try_to_free_pte_page(pte_t *pte)
769{
770 int i;
771
772 for (i = 0; i < PTRS_PER_PTE; i++)
773 if (!pte_none(pte[i]))
774 return false;
775
776 free_page((unsigned long)pte);
777 return true;
778}
779
780static bool try_to_free_pmd_page(pmd_t *pmd)
781{
782 int i;
783
784 for (i = 0; i < PTRS_PER_PMD; i++)
785 if (!pmd_none(pmd[i]))
786 return false;
787
788 free_page((unsigned long)pmd);
789 return true;
790}
791
792static bool unmap_pte_range(pmd_t *pmd, unsigned long start, unsigned long end)
793{
794 pte_t *pte = pte_offset_kernel(pmd, start);
795
796 while (start < end) {
797 set_pte(pte, __pte(0));
798
799 start += PAGE_SIZE;
800 pte++;
801 }
802
803 if (try_to_free_pte_page((pte_t *)pmd_page_vaddr(*pmd))) {
804 pmd_clear(pmd);
805 return true;
806 }
807 return false;
808}
809
810static void __unmap_pmd_range(pud_t *pud, pmd_t *pmd,
811 unsigned long start, unsigned long end)
812{
813 if (unmap_pte_range(pmd, start, end))
814 if (try_to_free_pmd_page((pmd_t *)pud_page_vaddr(*pud)))
815 pud_clear(pud);
816}
817
818static void unmap_pmd_range(pud_t *pud, unsigned long start, unsigned long end)
819{
820 pmd_t *pmd = pmd_offset(pud, start);
821
822 /*
823 * Not on a 2MB page boundary?
824 */
825 if (start & (PMD_SIZE - 1)) {
826 unsigned long next_page = (start + PMD_SIZE) & PMD_MASK;
827 unsigned long pre_end = min_t(unsigned long, end, next_page);
828
829 __unmap_pmd_range(pud, pmd, start, pre_end);
830
831 start = pre_end;
832 pmd++;
833 }
834
835 /*
836 * Try to unmap in 2M chunks.
837 */
838 while (end - start >= PMD_SIZE) {
839 if (pmd_large(*pmd))
840 pmd_clear(pmd);
841 else
842 __unmap_pmd_range(pud, pmd, start, start + PMD_SIZE);
843
844 start += PMD_SIZE;
845 pmd++;
846 }
847
848 /*
849 * 4K leftovers?
850 */
851 if (start < end)
852 return __unmap_pmd_range(pud, pmd, start, end);
853
854 /*
855 * Try again to free the PMD page if haven't succeeded above.
856 */
857 if (!pud_none(*pud))
858 if (try_to_free_pmd_page((pmd_t *)pud_page_vaddr(*pud)))
859 pud_clear(pud);
860}
0bb8aeee 861
45478336 862static void unmap_pud_range(p4d_t *p4d, unsigned long start, unsigned long end)
0bb8aeee 863{
45478336 864 pud_t *pud = pud_offset(p4d, start);
0bb8aeee
BP
865
866 /*
867 * Not on a GB page boundary?
868 */
869 if (start & (PUD_SIZE - 1)) {
870 unsigned long next_page = (start + PUD_SIZE) & PUD_MASK;
871 unsigned long pre_end = min_t(unsigned long, end, next_page);
872
873 unmap_pmd_range(pud, start, pre_end);
874
875 start = pre_end;
876 pud++;
877 }
878
879 /*
880 * Try to unmap in 1G chunks?
881 */
882 while (end - start >= PUD_SIZE) {
883
884 if (pud_large(*pud))
885 pud_clear(pud);
886 else
887 unmap_pmd_range(pud, start, start + PUD_SIZE);
888
889 start += PUD_SIZE;
890 pud++;
891 }
892
893 /*
894 * 2M leftovers?
895 */
896 if (start < end)
897 unmap_pmd_range(pud, start, end);
898
899 /*
900 * No need to try to free the PUD page because we'll free it in
901 * populate_pgd's error path
902 */
903}
904
f900a4b8
BP
905static int alloc_pte_page(pmd_t *pmd)
906{
907 pte_t *pte = (pte_t *)get_zeroed_page(GFP_KERNEL | __GFP_NOTRACK);
908 if (!pte)
909 return -1;
910
911 set_pmd(pmd, __pmd(__pa(pte) | _KERNPG_TABLE));
912 return 0;
913}
914
4b23538d
BP
915static int alloc_pmd_page(pud_t *pud)
916{
917 pmd_t *pmd = (pmd_t *)get_zeroed_page(GFP_KERNEL | __GFP_NOTRACK);
918 if (!pmd)
919 return -1;
920
921 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE));
922 return 0;
923}
924
c6b6f363
BP
925static void populate_pte(struct cpa_data *cpa,
926 unsigned long start, unsigned long end,
927 unsigned num_pages, pmd_t *pmd, pgprot_t pgprot)
928{
929 pte_t *pte;
930
931 pte = pte_offset_kernel(pmd, start);
932
39763015
SP
933 /*
934 * Set the GLOBAL flags only if the PRESENT flag is
935 * set otherwise pte_present will return true even on
936 * a non present pte. The canon_pgprot will clear
937 * _PAGE_GLOBAL for the ancient hardware that doesn't
938 * support it.
939 */
940 if (pgprot_val(pgprot) & _PAGE_PRESENT)
941 pgprot_val(pgprot) |= _PAGE_GLOBAL;
942 else
943 pgprot_val(pgprot) &= ~_PAGE_GLOBAL;
c6b6f363 944
39763015 945 pgprot = canon_pgprot(pgprot);
c6b6f363 946
c6b6f363 947 while (num_pages-- && start < end) {
edc3b912 948 set_pte(pte, pfn_pte(cpa->pfn, pgprot));
c6b6f363
BP
949
950 start += PAGE_SIZE;
edc3b912 951 cpa->pfn++;
c6b6f363
BP
952 pte++;
953 }
954}
f900a4b8 955
e535ec08
MF
956static long populate_pmd(struct cpa_data *cpa,
957 unsigned long start, unsigned long end,
958 unsigned num_pages, pud_t *pud, pgprot_t pgprot)
f900a4b8 959{
e535ec08 960 long cur_pages = 0;
f900a4b8 961 pmd_t *pmd;
f5b2831d 962 pgprot_t pmd_pgprot;
f900a4b8
BP
963
964 /*
965 * Not on a 2M boundary?
966 */
967 if (start & (PMD_SIZE - 1)) {
968 unsigned long pre_end = start + (num_pages << PAGE_SHIFT);
969 unsigned long next_page = (start + PMD_SIZE) & PMD_MASK;
970
971 pre_end = min_t(unsigned long, pre_end, next_page);
972 cur_pages = (pre_end - start) >> PAGE_SHIFT;
973 cur_pages = min_t(unsigned int, num_pages, cur_pages);
974
975 /*
976 * Need a PTE page?
977 */
978 pmd = pmd_offset(pud, start);
979 if (pmd_none(*pmd))
980 if (alloc_pte_page(pmd))
981 return -1;
982
983 populate_pte(cpa, start, pre_end, cur_pages, pmd, pgprot);
984
985 start = pre_end;
986 }
987
988 /*
989 * We mapped them all?
990 */
991 if (num_pages == cur_pages)
992 return cur_pages;
993
f5b2831d
JG
994 pmd_pgprot = pgprot_4k_2_large(pgprot);
995
f900a4b8
BP
996 while (end - start >= PMD_SIZE) {
997
998 /*
999 * We cannot use a 1G page so allocate a PMD page if needed.
1000 */
1001 if (pud_none(*pud))
1002 if (alloc_pmd_page(pud))
1003 return -1;
1004
1005 pmd = pmd_offset(pud, start);
1006
edc3b912 1007 set_pmd(pmd, __pmd(cpa->pfn << PAGE_SHIFT | _PAGE_PSE |
f5b2831d 1008 massage_pgprot(pmd_pgprot)));
f900a4b8
BP
1009
1010 start += PMD_SIZE;
edc3b912 1011 cpa->pfn += PMD_SIZE >> PAGE_SHIFT;
f900a4b8
BP
1012 cur_pages += PMD_SIZE >> PAGE_SHIFT;
1013 }
1014
1015 /*
1016 * Map trailing 4K pages.
1017 */
1018 if (start < end) {
1019 pmd = pmd_offset(pud, start);
1020 if (pmd_none(*pmd))
1021 if (alloc_pte_page(pmd))
1022 return -1;
1023
1024 populate_pte(cpa, start, end, num_pages - cur_pages,
1025 pmd, pgprot);
1026 }
1027 return num_pages;
1028}
4b23538d 1029
45478336
KS
1030static int populate_pud(struct cpa_data *cpa, unsigned long start, p4d_t *p4d,
1031 pgprot_t pgprot)
4b23538d
BP
1032{
1033 pud_t *pud;
1034 unsigned long end;
e535ec08 1035 long cur_pages = 0;
f5b2831d 1036 pgprot_t pud_pgprot;
4b23538d
BP
1037
1038 end = start + (cpa->numpages << PAGE_SHIFT);
1039
1040 /*
1041 * Not on a Gb page boundary? => map everything up to it with
1042 * smaller pages.
1043 */
1044 if (start & (PUD_SIZE - 1)) {
1045 unsigned long pre_end;
1046 unsigned long next_page = (start + PUD_SIZE) & PUD_MASK;
1047
1048 pre_end = min_t(unsigned long, end, next_page);
1049 cur_pages = (pre_end - start) >> PAGE_SHIFT;
1050 cur_pages = min_t(int, (int)cpa->numpages, cur_pages);
1051
45478336 1052 pud = pud_offset(p4d, start);
4b23538d
BP
1053
1054 /*
1055 * Need a PMD page?
1056 */
1057 if (pud_none(*pud))
1058 if (alloc_pmd_page(pud))
1059 return -1;
1060
1061 cur_pages = populate_pmd(cpa, start, pre_end, cur_pages,
1062 pud, pgprot);
1063 if (cur_pages < 0)
1064 return cur_pages;
1065
1066 start = pre_end;
1067 }
1068
1069 /* We mapped them all? */
1070 if (cpa->numpages == cur_pages)
1071 return cur_pages;
1072
45478336 1073 pud = pud_offset(p4d, start);
f5b2831d 1074 pud_pgprot = pgprot_4k_2_large(pgprot);
4b23538d
BP
1075
1076 /*
1077 * Map everything starting from the Gb boundary, possibly with 1G pages
1078 */
b8291adc 1079 while (boot_cpu_has(X86_FEATURE_GBPAGES) && end - start >= PUD_SIZE) {
edc3b912 1080 set_pud(pud, __pud(cpa->pfn << PAGE_SHIFT | _PAGE_PSE |
f5b2831d 1081 massage_pgprot(pud_pgprot)));
4b23538d
BP
1082
1083 start += PUD_SIZE;
edc3b912 1084 cpa->pfn += PUD_SIZE >> PAGE_SHIFT;
4b23538d
BP
1085 cur_pages += PUD_SIZE >> PAGE_SHIFT;
1086 pud++;
1087 }
1088
1089 /* Map trailing leftover */
1090 if (start < end) {
e535ec08 1091 long tmp;
4b23538d 1092
45478336 1093 pud = pud_offset(p4d, start);
4b23538d
BP
1094 if (pud_none(*pud))
1095 if (alloc_pmd_page(pud))
1096 return -1;
1097
1098 tmp = populate_pmd(cpa, start, end, cpa->numpages - cur_pages,
1099 pud, pgprot);
1100 if (tmp < 0)
1101 return cur_pages;
1102
1103 cur_pages += tmp;
1104 }
1105 return cur_pages;
1106}
f3f72966
BP
1107
1108/*
1109 * Restrictions for kernel page table do not necessarily apply when mapping in
1110 * an alternate PGD.
1111 */
1112static int populate_pgd(struct cpa_data *cpa, unsigned long addr)
1113{
1114 pgprot_t pgprot = __pgprot(_KERNPG_TABLE);
f3f72966 1115 pud_t *pud = NULL; /* shut up gcc */
45478336 1116 p4d_t *p4d;
42a54772 1117 pgd_t *pgd_entry;
e535ec08 1118 long ret;
f3f72966
BP
1119
1120 pgd_entry = cpa->pgd + pgd_index(addr);
1121
45478336
KS
1122 if (pgd_none(*pgd_entry)) {
1123 p4d = (p4d_t *)get_zeroed_page(GFP_KERNEL | __GFP_NOTRACK);
1124 if (!p4d)
1125 return -1;
1126
1127 set_pgd(pgd_entry, __pgd(__pa(p4d) | _KERNPG_TABLE));
1128 }
1129
f3f72966
BP
1130 /*
1131 * Allocate a PUD page and hand it down for mapping.
1132 */
45478336
KS
1133 p4d = p4d_offset(pgd_entry, addr);
1134 if (p4d_none(*p4d)) {
f3f72966
BP
1135 pud = (pud_t *)get_zeroed_page(GFP_KERNEL | __GFP_NOTRACK);
1136 if (!pud)
1137 return -1;
530dd8d4 1138
45478336 1139 set_p4d(p4d, __p4d(__pa(pud) | _KERNPG_TABLE));
f3f72966
BP
1140 }
1141
1142 pgprot_val(pgprot) &= ~pgprot_val(cpa->mask_clr);
1143 pgprot_val(pgprot) |= pgprot_val(cpa->mask_set);
1144
45478336 1145 ret = populate_pud(cpa, addr, p4d, pgprot);
0bb8aeee 1146 if (ret < 0) {
55920d31
AL
1147 /*
1148 * Leave the PUD page in place in case some other CPU or thread
1149 * already found it, but remove any useless entries we just
1150 * added to it.
1151 */
45478336 1152 unmap_pud_range(p4d, addr,
0bb8aeee 1153 addr + (cpa->numpages << PAGE_SHIFT));
f3f72966 1154 return ret;
0bb8aeee 1155 }
42a54772 1156
f3f72966
BP
1157 cpa->numpages = ret;
1158 return 0;
1159}
1160
a1e46212
SS
1161static int __cpa_process_fault(struct cpa_data *cpa, unsigned long vaddr,
1162 int primary)
1163{
7fc8442f
MF
1164 if (cpa->pgd) {
1165 /*
1166 * Right now, we only execute this code path when mapping
1167 * the EFI virtual memory map regions, no other users
1168 * provide a ->pgd value. This may change in the future.
1169 */
82f0712c 1170 return populate_pgd(cpa, vaddr);
7fc8442f 1171 }
82f0712c 1172
a1e46212
SS
1173 /*
1174 * Ignore all non primary paths.
1175 */
405e1133
JB
1176 if (!primary) {
1177 cpa->numpages = 1;
a1e46212 1178 return 0;
405e1133 1179 }
a1e46212
SS
1180
1181 /*
1182 * Ignore the NULL PTE for kernel identity mapping, as it is expected
1183 * to have holes.
1184 * Also set numpages to '1' indicating that we processed cpa req for
1185 * one virtual address page and its pfn. TBD: numpages can be set based
1186 * on the initial value and the level returned by lookup_address().
1187 */
1188 if (within(vaddr, PAGE_OFFSET,
1189 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT))) {
1190 cpa->numpages = 1;
1191 cpa->pfn = __pa(vaddr) >> PAGE_SHIFT;
1192 return 0;
1193 } else {
1194 WARN(1, KERN_WARNING "CPA: called for zero pte. "
1195 "vaddr = %lx cpa->vaddr = %lx\n", vaddr,
1196 *cpa->vaddr);
1197
1198 return -EFAULT;
1199 }
1200}
1201
c31c7d48 1202static int __change_page_attr(struct cpa_data *cpa, int primary)
9f4c815c 1203{
d75586ad 1204 unsigned long address;
da7bfc50
HH
1205 int do_split, err;
1206 unsigned int level;
c31c7d48 1207 pte_t *kpte, old_pte;
1da177e4 1208
8523acfe
TH
1209 if (cpa->flags & CPA_PAGES_ARRAY) {
1210 struct page *page = cpa->pages[cpa->curpage];
1211 if (unlikely(PageHighMem(page)))
1212 return 0;
1213 address = (unsigned long)page_address(page);
1214 } else if (cpa->flags & CPA_ARRAY)
d75586ad
SL
1215 address = cpa->vaddr[cpa->curpage];
1216 else
1217 address = *cpa->vaddr;
97f99fed 1218repeat:
82f0712c 1219 kpte = _lookup_address_cpa(cpa, address, &level);
1da177e4 1220 if (!kpte)
a1e46212 1221 return __cpa_process_fault(cpa, address, primary);
c31c7d48
TG
1222
1223 old_pte = *kpte;
dcb32d99 1224 if (pte_none(old_pte))
a1e46212 1225 return __cpa_process_fault(cpa, address, primary);
9f4c815c 1226
30551bb3 1227 if (level == PG_LEVEL_4K) {
c31c7d48 1228 pte_t new_pte;
626c2c9d 1229 pgprot_t new_prot = pte_pgprot(old_pte);
c31c7d48 1230 unsigned long pfn = pte_pfn(old_pte);
86f03989 1231
72e458df
TG
1232 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
1233 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
86f03989 1234
c31c7d48 1235 new_prot = static_protections(new_prot, address, pfn);
86f03989 1236
a8aed3e0
AA
1237 /*
1238 * Set the GLOBAL flags only if the PRESENT flag is
1239 * set otherwise pte_present will return true even on
1240 * a non present pte. The canon_pgprot will clear
1241 * _PAGE_GLOBAL for the ancient hardware that doesn't
1242 * support it.
1243 */
1244 if (pgprot_val(new_prot) & _PAGE_PRESENT)
1245 pgprot_val(new_prot) |= _PAGE_GLOBAL;
1246 else
1247 pgprot_val(new_prot) &= ~_PAGE_GLOBAL;
1248
626c2c9d
AV
1249 /*
1250 * We need to keep the pfn from the existing PTE,
1251 * after all we're only going to change it's attributes
1252 * not the memory it points to
1253 */
c31c7d48
TG
1254 new_pte = pfn_pte(pfn, canon_pgprot(new_prot));
1255 cpa->pfn = pfn;
f4ae5da0
TG
1256 /*
1257 * Do we really change anything ?
1258 */
1259 if (pte_val(old_pte) != pte_val(new_pte)) {
1260 set_pte_atomic(kpte, new_pte);
d75586ad 1261 cpa->flags |= CPA_FLUSHTLB;
f4ae5da0 1262 }
9b5cf48b 1263 cpa->numpages = 1;
65e074df 1264 return 0;
1da177e4 1265 }
65e074df
TG
1266
1267 /*
1268 * Check, whether we can keep the large page intact
1269 * and just change the pte:
1270 */
beaff633 1271 do_split = try_preserve_large_page(kpte, address, cpa);
65e074df
TG
1272 /*
1273 * When the range fits into the existing large page,
9b5cf48b 1274 * return. cp->numpages and cpa->tlbflush have been updated in
65e074df
TG
1275 * try_large_page:
1276 */
87f7f8fe
IM
1277 if (do_split <= 0)
1278 return do_split;
65e074df
TG
1279
1280 /*
1281 * We have to split the large page:
1282 */
82f0712c 1283 err = split_large_page(cpa, kpte, address);
87f7f8fe 1284 if (!err) {
ad5ca55f
SS
1285 /*
1286 * Do a global flush tlb after splitting the large page
1287 * and before we do the actual change page attribute in the PTE.
1288 *
1289 * With out this, we violate the TLB application note, that says
1290 * "The TLBs may contain both ordinary and large-page
1291 * translations for a 4-KByte range of linear addresses. This
1292 * may occur if software modifies the paging structures so that
1293 * the page size used for the address range changes. If the two
1294 * translations differ with respect to page frame or attributes
1295 * (e.g., permissions), processor behavior is undefined and may
1296 * be implementation-specific."
1297 *
1298 * We do this global tlb flush inside the cpa_lock, so that we
1299 * don't allow any other cpu, with stale tlb entries change the
1300 * page attribute in parallel, that also falls into the
1301 * just split large page entry.
1302 */
1303 flush_tlb_all();
87f7f8fe
IM
1304 goto repeat;
1305 }
beaff633 1306
87f7f8fe 1307 return err;
9f4c815c 1308}
1da177e4 1309
c31c7d48
TG
1310static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias);
1311
1312static int cpa_process_alias(struct cpa_data *cpa)
1da177e4 1313{
c31c7d48 1314 struct cpa_data alias_cpa;
992f4c1c 1315 unsigned long laddr = (unsigned long)__va(cpa->pfn << PAGE_SHIFT);
e933a73f 1316 unsigned long vaddr;
992f4c1c 1317 int ret;
44af6c41 1318
8eb5779f 1319 if (!pfn_range_is_mapped(cpa->pfn, cpa->pfn + 1))
c31c7d48 1320 return 0;
626c2c9d 1321
f34b439f
TG
1322 /*
1323 * No need to redo, when the primary call touched the direct
1324 * mapping already:
1325 */
8523acfe
TH
1326 if (cpa->flags & CPA_PAGES_ARRAY) {
1327 struct page *page = cpa->pages[cpa->curpage];
1328 if (unlikely(PageHighMem(page)))
1329 return 0;
1330 vaddr = (unsigned long)page_address(page);
1331 } else if (cpa->flags & CPA_ARRAY)
d75586ad
SL
1332 vaddr = cpa->vaddr[cpa->curpage];
1333 else
1334 vaddr = *cpa->vaddr;
1335
1336 if (!(within(vaddr, PAGE_OFFSET,
a1e46212 1337 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT)))) {
44af6c41 1338
f34b439f 1339 alias_cpa = *cpa;
992f4c1c 1340 alias_cpa.vaddr = &laddr;
9ae28475 1341 alias_cpa.flags &= ~(CPA_PAGES_ARRAY | CPA_ARRAY);
d75586ad 1342
f34b439f 1343 ret = __change_page_attr_set_clr(&alias_cpa, 0);
992f4c1c
TH
1344 if (ret)
1345 return ret;
f34b439f 1346 }
44af6c41 1347
44af6c41 1348#ifdef CONFIG_X86_64
488fd995 1349 /*
992f4c1c
TH
1350 * If the primary call didn't touch the high mapping already
1351 * and the physical address is inside the kernel map, we need
0879750f 1352 * to touch the high mapped kernel as well:
488fd995 1353 */
992f4c1c 1354 if (!within(vaddr, (unsigned long)_text, _brk_end) &&
4ff53087
TG
1355 within_inclusive(cpa->pfn, highmap_start_pfn(),
1356 highmap_end_pfn())) {
992f4c1c
TH
1357 unsigned long temp_cpa_vaddr = (cpa->pfn << PAGE_SHIFT) +
1358 __START_KERNEL_map - phys_base;
1359 alias_cpa = *cpa;
1360 alias_cpa.vaddr = &temp_cpa_vaddr;
1361 alias_cpa.flags &= ~(CPA_PAGES_ARRAY | CPA_ARRAY);
c31c7d48 1362
992f4c1c
TH
1363 /*
1364 * The high mapping range is imprecise, so ignore the
1365 * return value.
1366 */
1367 __change_page_attr_set_clr(&alias_cpa, 0);
1368 }
488fd995 1369#endif
992f4c1c
TH
1370
1371 return 0;
1da177e4
LT
1372}
1373
c31c7d48 1374static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias)
ff31452b 1375{
e535ec08
MF
1376 unsigned long numpages = cpa->numpages;
1377 int ret;
ff31452b 1378
65e074df
TG
1379 while (numpages) {
1380 /*
1381 * Store the remaining nr of pages for the large page
1382 * preservation check.
1383 */
9b5cf48b 1384 cpa->numpages = numpages;
d75586ad 1385 /* for array changes, we can't use large page */
9ae28475 1386 if (cpa->flags & (CPA_ARRAY | CPA_PAGES_ARRAY))
d75586ad 1387 cpa->numpages = 1;
c31c7d48 1388
288cf3c6 1389 if (!debug_pagealloc_enabled())
ad5ca55f 1390 spin_lock(&cpa_lock);
c31c7d48 1391 ret = __change_page_attr(cpa, checkalias);
288cf3c6 1392 if (!debug_pagealloc_enabled())
ad5ca55f 1393 spin_unlock(&cpa_lock);
ff31452b
TG
1394 if (ret)
1395 return ret;
ff31452b 1396
c31c7d48
TG
1397 if (checkalias) {
1398 ret = cpa_process_alias(cpa);
1399 if (ret)
1400 return ret;
1401 }
1402
65e074df
TG
1403 /*
1404 * Adjust the number of pages with the result of the
1405 * CPA operation. Either a large page has been
1406 * preserved or a single page update happened.
1407 */
74256377 1408 BUG_ON(cpa->numpages > numpages || !cpa->numpages);
9b5cf48b 1409 numpages -= cpa->numpages;
9ae28475 1410 if (cpa->flags & (CPA_PAGES_ARRAY | CPA_ARRAY))
d75586ad
SL
1411 cpa->curpage++;
1412 else
1413 *cpa->vaddr += cpa->numpages * PAGE_SIZE;
1414
65e074df 1415 }
ff31452b
TG
1416 return 0;
1417}
1418
d75586ad 1419static int change_page_attr_set_clr(unsigned long *addr, int numpages,
c9caa02c 1420 pgprot_t mask_set, pgprot_t mask_clr,
9ae28475 1421 int force_split, int in_flag,
1422 struct page **pages)
ff31452b 1423{
72e458df 1424 struct cpa_data cpa;
cacf8906 1425 int ret, cache, checkalias;
fa526d0d 1426 unsigned long baddr = 0;
331e4065 1427
82f0712c
BP
1428 memset(&cpa, 0, sizeof(cpa));
1429
331e4065
TG
1430 /*
1431 * Check, if we are requested to change a not supported
1432 * feature:
1433 */
1434 mask_set = canon_pgprot(mask_set);
1435 mask_clr = canon_pgprot(mask_clr);
c9caa02c 1436 if (!pgprot_val(mask_set) && !pgprot_val(mask_clr) && !force_split)
331e4065
TG
1437 return 0;
1438
69b1415e 1439 /* Ensure we are PAGE_SIZE aligned */
9ae28475 1440 if (in_flag & CPA_ARRAY) {
d75586ad
SL
1441 int i;
1442 for (i = 0; i < numpages; i++) {
1443 if (addr[i] & ~PAGE_MASK) {
1444 addr[i] &= PAGE_MASK;
1445 WARN_ON_ONCE(1);
1446 }
1447 }
9ae28475 1448 } else if (!(in_flag & CPA_PAGES_ARRAY)) {
1449 /*
1450 * in_flag of CPA_PAGES_ARRAY implies it is aligned.
1451 * No need to cehck in that case
1452 */
1453 if (*addr & ~PAGE_MASK) {
1454 *addr &= PAGE_MASK;
1455 /*
1456 * People should not be passing in unaligned addresses:
1457 */
1458 WARN_ON_ONCE(1);
1459 }
fa526d0d
JS
1460 /*
1461 * Save address for cache flush. *addr is modified in the call
1462 * to __change_page_attr_set_clr() below.
1463 */
1464 baddr = *addr;
69b1415e
TG
1465 }
1466
5843d9a4
NP
1467 /* Must avoid aliasing mappings in the highmem code */
1468 kmap_flush_unused();
1469
db64fe02
NP
1470 vm_unmap_aliases();
1471
72e458df 1472 cpa.vaddr = addr;
9ae28475 1473 cpa.pages = pages;
72e458df
TG
1474 cpa.numpages = numpages;
1475 cpa.mask_set = mask_set;
1476 cpa.mask_clr = mask_clr;
d75586ad
SL
1477 cpa.flags = 0;
1478 cpa.curpage = 0;
c9caa02c 1479 cpa.force_split = force_split;
72e458df 1480
9ae28475 1481 if (in_flag & (CPA_ARRAY | CPA_PAGES_ARRAY))
1482 cpa.flags |= in_flag;
d75586ad 1483
af96e443
TG
1484 /* No alias checking for _NX bit modifications */
1485 checkalias = (pgprot_val(mask_set) | pgprot_val(mask_clr)) != _PAGE_NX;
1486
1487 ret = __change_page_attr_set_clr(&cpa, checkalias);
ff31452b 1488
f4ae5da0
TG
1489 /*
1490 * Check whether we really changed something:
1491 */
d75586ad 1492 if (!(cpa.flags & CPA_FLUSHTLB))
1ac2f7d5 1493 goto out;
cacf8906 1494
6bb8383b
AK
1495 /*
1496 * No need to flush, when we did not set any of the caching
1497 * attributes:
1498 */
c06814d8 1499 cache = !!pgprot2cachemode(mask_set);
6bb8383b 1500
57a6a46a 1501 /*
b82ad3d3
BP
1502 * On success we use CLFLUSH, when the CPU supports it to
1503 * avoid the WBINVD. If the CPU does not support it and in the
f026cfa8 1504 * error case we fall back to cpa_flush_all (which uses
b82ad3d3 1505 * WBINVD):
57a6a46a 1506 */
906bf7fd 1507 if (!ret && boot_cpu_has(X86_FEATURE_CLFLUSH)) {
9ae28475 1508 if (cpa.flags & (CPA_PAGES_ARRAY | CPA_ARRAY)) {
1509 cpa_flush_array(addr, numpages, cache,
1510 cpa.flags, pages);
1511 } else
fa526d0d 1512 cpa_flush_range(baddr, numpages, cache);
d75586ad 1513 } else
6bb8383b 1514 cpa_flush_all(cache);
cacf8906 1515
76ebd054 1516out:
ff31452b
TG
1517 return ret;
1518}
1519
d75586ad
SL
1520static inline int change_page_attr_set(unsigned long *addr, int numpages,
1521 pgprot_t mask, int array)
75cbade8 1522{
d75586ad 1523 return change_page_attr_set_clr(addr, numpages, mask, __pgprot(0), 0,
9ae28475 1524 (array ? CPA_ARRAY : 0), NULL);
75cbade8
AV
1525}
1526
d75586ad
SL
1527static inline int change_page_attr_clear(unsigned long *addr, int numpages,
1528 pgprot_t mask, int array)
72932c7a 1529{
d75586ad 1530 return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask, 0,
9ae28475 1531 (array ? CPA_ARRAY : 0), NULL);
72932c7a
TG
1532}
1533
0f350755 1534static inline int cpa_set_pages_array(struct page **pages, int numpages,
1535 pgprot_t mask)
1536{
1537 return change_page_attr_set_clr(NULL, numpages, mask, __pgprot(0), 0,
1538 CPA_PAGES_ARRAY, pages);
1539}
1540
1541static inline int cpa_clear_pages_array(struct page **pages, int numpages,
1542 pgprot_t mask)
1543{
1544 return change_page_attr_set_clr(NULL, numpages, __pgprot(0), mask, 0,
1545 CPA_PAGES_ARRAY, pages);
1546}
1547
1219333d 1548int _set_memory_uc(unsigned long addr, int numpages)
72932c7a 1549{
de33c442
SS
1550 /*
1551 * for now UC MINUS. see comments in ioremap_nocache()
e4b6be33
LR
1552 * If you really need strong UC use ioremap_uc(), but note
1553 * that you cannot override IO areas with set_memory_*() as
1554 * these helpers cannot work with IO memory.
de33c442 1555 */
d75586ad 1556 return change_page_attr_set(&addr, numpages,
c06814d8
JG
1557 cachemode2pgprot(_PAGE_CACHE_MODE_UC_MINUS),
1558 0);
75cbade8 1559}
1219333d 1560
1561int set_memory_uc(unsigned long addr, int numpages)
1562{
9fa3ab39 1563 int ret;
1564
de33c442
SS
1565 /*
1566 * for now UC MINUS. see comments in ioremap_nocache()
1567 */
9fa3ab39 1568 ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
e00c8cc9 1569 _PAGE_CACHE_MODE_UC_MINUS, NULL);
9fa3ab39 1570 if (ret)
1571 goto out_err;
1572
1573 ret = _set_memory_uc(addr, numpages);
1574 if (ret)
1575 goto out_free;
1576
1577 return 0;
1219333d 1578
9fa3ab39 1579out_free:
1580 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
1581out_err:
1582 return ret;
1219333d 1583}
75cbade8
AV
1584EXPORT_SYMBOL(set_memory_uc);
1585
2d070eff 1586static int _set_memory_array(unsigned long *addr, int addrinarray,
c06814d8 1587 enum page_cache_mode new_type)
d75586ad 1588{
623dffb2 1589 enum page_cache_mode set_type;
9fa3ab39 1590 int i, j;
1591 int ret;
1592
d75586ad 1593 for (i = 0; i < addrinarray; i++) {
9fa3ab39 1594 ret = reserve_memtype(__pa(addr[i]), __pa(addr[i]) + PAGE_SIZE,
4f646254 1595 new_type, NULL);
9fa3ab39 1596 if (ret)
1597 goto out_free;
d75586ad
SL
1598 }
1599
623dffb2
TK
1600 /* If WC, set to UC- first and then WC */
1601 set_type = (new_type == _PAGE_CACHE_MODE_WC) ?
1602 _PAGE_CACHE_MODE_UC_MINUS : new_type;
1603
9fa3ab39 1604 ret = change_page_attr_set(addr, addrinarray,
623dffb2 1605 cachemode2pgprot(set_type), 1);
4f646254 1606
c06814d8 1607 if (!ret && new_type == _PAGE_CACHE_MODE_WC)
4f646254 1608 ret = change_page_attr_set_clr(addr, addrinarray,
c06814d8
JG
1609 cachemode2pgprot(
1610 _PAGE_CACHE_MODE_WC),
4f646254
PN
1611 __pgprot(_PAGE_CACHE_MASK),
1612 0, CPA_ARRAY, NULL);
9fa3ab39 1613 if (ret)
1614 goto out_free;
1615
1616 return 0;
1617
1618out_free:
1619 for (j = 0; j < i; j++)
1620 free_memtype(__pa(addr[j]), __pa(addr[j]) + PAGE_SIZE);
1621
1622 return ret;
d75586ad 1623}
4f646254
PN
1624
1625int set_memory_array_uc(unsigned long *addr, int addrinarray)
1626{
c06814d8 1627 return _set_memory_array(addr, addrinarray, _PAGE_CACHE_MODE_UC_MINUS);
4f646254 1628}
d75586ad
SL
1629EXPORT_SYMBOL(set_memory_array_uc);
1630
4f646254
PN
1631int set_memory_array_wc(unsigned long *addr, int addrinarray)
1632{
c06814d8 1633 return _set_memory_array(addr, addrinarray, _PAGE_CACHE_MODE_WC);
4f646254
PN
1634}
1635EXPORT_SYMBOL(set_memory_array_wc);
1636
623dffb2
TK
1637int set_memory_array_wt(unsigned long *addr, int addrinarray)
1638{
1639 return _set_memory_array(addr, addrinarray, _PAGE_CACHE_MODE_WT);
1640}
1641EXPORT_SYMBOL_GPL(set_memory_array_wt);
1642
ef354af4 1643int _set_memory_wc(unsigned long addr, int numpages)
1644{
3869c4aa 1645 int ret;
bdc6340f
PV
1646 unsigned long addr_copy = addr;
1647
3869c4aa 1648 ret = change_page_attr_set(&addr, numpages,
c06814d8
JG
1649 cachemode2pgprot(_PAGE_CACHE_MODE_UC_MINUS),
1650 0);
3869c4aa 1651 if (!ret) {
bdc6340f 1652 ret = change_page_attr_set_clr(&addr_copy, numpages,
c06814d8
JG
1653 cachemode2pgprot(
1654 _PAGE_CACHE_MODE_WC),
bdc6340f
PV
1655 __pgprot(_PAGE_CACHE_MASK),
1656 0, 0, NULL);
3869c4aa 1657 }
1658 return ret;
ef354af4 1659}
1660
1661int set_memory_wc(unsigned long addr, int numpages)
1662{
9fa3ab39 1663 int ret;
1664
9fa3ab39 1665 ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
e00c8cc9 1666 _PAGE_CACHE_MODE_WC, NULL);
9fa3ab39 1667 if (ret)
623dffb2 1668 return ret;
ef354af4 1669
9fa3ab39 1670 ret = _set_memory_wc(addr, numpages);
1671 if (ret)
623dffb2 1672 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
9fa3ab39 1673
9fa3ab39 1674 return ret;
ef354af4 1675}
1676EXPORT_SYMBOL(set_memory_wc);
1677
623dffb2
TK
1678int _set_memory_wt(unsigned long addr, int numpages)
1679{
1680 return change_page_attr_set(&addr, numpages,
1681 cachemode2pgprot(_PAGE_CACHE_MODE_WT), 0);
1682}
1683
1684int set_memory_wt(unsigned long addr, int numpages)
1685{
1686 int ret;
1687
1688 ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
1689 _PAGE_CACHE_MODE_WT, NULL);
1690 if (ret)
1691 return ret;
1692
1693 ret = _set_memory_wt(addr, numpages);
1694 if (ret)
1695 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
1696
1697 return ret;
1698}
1699EXPORT_SYMBOL_GPL(set_memory_wt);
1700
1219333d 1701int _set_memory_wb(unsigned long addr, int numpages)
75cbade8 1702{
c06814d8 1703 /* WB cache mode is hard wired to all cache attribute bits being 0 */
d75586ad
SL
1704 return change_page_attr_clear(&addr, numpages,
1705 __pgprot(_PAGE_CACHE_MASK), 0);
75cbade8 1706}
1219333d 1707
1708int set_memory_wb(unsigned long addr, int numpages)
1709{
9fa3ab39 1710 int ret;
1711
1712 ret = _set_memory_wb(addr, numpages);
1713 if (ret)
1714 return ret;
1715
c15238df 1716 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
9fa3ab39 1717 return 0;
1219333d 1718}
75cbade8
AV
1719EXPORT_SYMBOL(set_memory_wb);
1720
d75586ad
SL
1721int set_memory_array_wb(unsigned long *addr, int addrinarray)
1722{
1723 int i;
a5593e0b 1724 int ret;
1725
c06814d8 1726 /* WB cache mode is hard wired to all cache attribute bits being 0 */
a5593e0b 1727 ret = change_page_attr_clear(addr, addrinarray,
1728 __pgprot(_PAGE_CACHE_MASK), 1);
9fa3ab39 1729 if (ret)
1730 return ret;
d75586ad 1731
9fa3ab39 1732 for (i = 0; i < addrinarray; i++)
1733 free_memtype(__pa(addr[i]), __pa(addr[i]) + PAGE_SIZE);
c5e147cf 1734
9fa3ab39 1735 return 0;
d75586ad
SL
1736}
1737EXPORT_SYMBOL(set_memory_array_wb);
1738
75cbade8
AV
1739int set_memory_x(unsigned long addr, int numpages)
1740{
583140af
PA
1741 if (!(__supported_pte_mask & _PAGE_NX))
1742 return 0;
1743
d75586ad 1744 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_NX), 0);
75cbade8
AV
1745}
1746EXPORT_SYMBOL(set_memory_x);
1747
1748int set_memory_nx(unsigned long addr, int numpages)
1749{
583140af
PA
1750 if (!(__supported_pte_mask & _PAGE_NX))
1751 return 0;
1752
d75586ad 1753 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_NX), 0);
75cbade8
AV
1754}
1755EXPORT_SYMBOL(set_memory_nx);
1756
1757int set_memory_ro(unsigned long addr, int numpages)
1758{
d75586ad 1759 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_RW), 0);
75cbade8 1760}
75cbade8
AV
1761
1762int set_memory_rw(unsigned long addr, int numpages)
1763{
d75586ad 1764 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_RW), 0);
75cbade8 1765}
f62d0f00
IM
1766
1767int set_memory_np(unsigned long addr, int numpages)
1768{
d75586ad 1769 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_PRESENT), 0);
f62d0f00 1770}
75cbade8 1771
c9caa02c
AK
1772int set_memory_4k(unsigned long addr, int numpages)
1773{
d75586ad 1774 return change_page_attr_set_clr(&addr, numpages, __pgprot(0),
9ae28475 1775 __pgprot(0), 1, 0, NULL);
c9caa02c
AK
1776}
1777
77bd2342
TL
1778static int __set_memory_enc_dec(unsigned long addr, int numpages, bool enc)
1779{
1780 struct cpa_data cpa;
1781 unsigned long start;
1782 int ret;
1783
1784 /* Nothing to do if the SME is not active */
1785 if (!sme_active())
1786 return 0;
1787
1788 /* Should not be working on unaligned addresses */
1789 if (WARN_ONCE(addr & ~PAGE_MASK, "misaligned address: %#lx\n", addr))
1790 addr &= PAGE_MASK;
1791
1792 start = addr;
1793
1794 memset(&cpa, 0, sizeof(cpa));
1795 cpa.vaddr = &addr;
1796 cpa.numpages = numpages;
1797 cpa.mask_set = enc ? __pgprot(_PAGE_ENC) : __pgprot(0);
1798 cpa.mask_clr = enc ? __pgprot(0) : __pgprot(_PAGE_ENC);
1799 cpa.pgd = init_mm.pgd;
1800
1801 /* Must avoid aliasing mappings in the highmem code */
1802 kmap_flush_unused();
1803 vm_unmap_aliases();
1804
1805 /*
1806 * Before changing the encryption attribute, we need to flush caches.
1807 */
1808 if (static_cpu_has(X86_FEATURE_CLFLUSH))
1809 cpa_flush_range(start, numpages, 1);
1810 else
1811 cpa_flush_all(1);
1812
1813 ret = __change_page_attr_set_clr(&cpa, 1);
1814
1815 /*
1816 * After changing the encryption attribute, we need to flush TLBs
1817 * again in case any speculative TLB caching occurred (but no need
1818 * to flush caches again). We could just use cpa_flush_all(), but
1819 * in case TLB flushing gets optimized in the cpa_flush_range()
1820 * path use the same logic as above.
1821 */
1822 if (static_cpu_has(X86_FEATURE_CLFLUSH))
1823 cpa_flush_range(start, numpages, 0);
1824 else
1825 cpa_flush_all(0);
1826
1827 return ret;
1828}
1829
1830int set_memory_encrypted(unsigned long addr, int numpages)
1831{
1832 return __set_memory_enc_dec(addr, numpages, true);
1833}
95cf9264 1834EXPORT_SYMBOL_GPL(set_memory_encrypted);
77bd2342
TL
1835
1836int set_memory_decrypted(unsigned long addr, int numpages)
1837{
1838 return __set_memory_enc_dec(addr, numpages, false);
1839}
95cf9264 1840EXPORT_SYMBOL_GPL(set_memory_decrypted);
77bd2342 1841
75cbade8
AV
1842int set_pages_uc(struct page *page, int numpages)
1843{
1844 unsigned long addr = (unsigned long)page_address(page);
75cbade8 1845
d7c8f21a 1846 return set_memory_uc(addr, numpages);
75cbade8
AV
1847}
1848EXPORT_SYMBOL(set_pages_uc);
1849
4f646254 1850static int _set_pages_array(struct page **pages, int addrinarray,
c06814d8 1851 enum page_cache_mode new_type)
0f350755 1852{
1853 unsigned long start;
1854 unsigned long end;
623dffb2 1855 enum page_cache_mode set_type;
0f350755 1856 int i;
1857 int free_idx;
4f646254 1858 int ret;
0f350755 1859
1860 for (i = 0; i < addrinarray; i++) {
8523acfe
TH
1861 if (PageHighMem(pages[i]))
1862 continue;
1863 start = page_to_pfn(pages[i]) << PAGE_SHIFT;
0f350755 1864 end = start + PAGE_SIZE;
4f646254 1865 if (reserve_memtype(start, end, new_type, NULL))
0f350755 1866 goto err_out;
1867 }
1868
623dffb2
TK
1869 /* If WC, set to UC- first and then WC */
1870 set_type = (new_type == _PAGE_CACHE_MODE_WC) ?
1871 _PAGE_CACHE_MODE_UC_MINUS : new_type;
1872
4f646254 1873 ret = cpa_set_pages_array(pages, addrinarray,
623dffb2 1874 cachemode2pgprot(set_type));
c06814d8 1875 if (!ret && new_type == _PAGE_CACHE_MODE_WC)
4f646254 1876 ret = change_page_attr_set_clr(NULL, addrinarray,
c06814d8
JG
1877 cachemode2pgprot(
1878 _PAGE_CACHE_MODE_WC),
4f646254
PN
1879 __pgprot(_PAGE_CACHE_MASK),
1880 0, CPA_PAGES_ARRAY, pages);
1881 if (ret)
1882 goto err_out;
1883 return 0; /* Success */
0f350755 1884err_out:
1885 free_idx = i;
1886 for (i = 0; i < free_idx; i++) {
8523acfe
TH
1887 if (PageHighMem(pages[i]))
1888 continue;
1889 start = page_to_pfn(pages[i]) << PAGE_SHIFT;
0f350755 1890 end = start + PAGE_SIZE;
1891 free_memtype(start, end);
1892 }
1893 return -EINVAL;
1894}
4f646254
PN
1895
1896int set_pages_array_uc(struct page **pages, int addrinarray)
1897{
c06814d8 1898 return _set_pages_array(pages, addrinarray, _PAGE_CACHE_MODE_UC_MINUS);
4f646254 1899}
0f350755 1900EXPORT_SYMBOL(set_pages_array_uc);
1901
4f646254
PN
1902int set_pages_array_wc(struct page **pages, int addrinarray)
1903{
c06814d8 1904 return _set_pages_array(pages, addrinarray, _PAGE_CACHE_MODE_WC);
4f646254
PN
1905}
1906EXPORT_SYMBOL(set_pages_array_wc);
1907
623dffb2
TK
1908int set_pages_array_wt(struct page **pages, int addrinarray)
1909{
1910 return _set_pages_array(pages, addrinarray, _PAGE_CACHE_MODE_WT);
1911}
1912EXPORT_SYMBOL_GPL(set_pages_array_wt);
1913
75cbade8
AV
1914int set_pages_wb(struct page *page, int numpages)
1915{
1916 unsigned long addr = (unsigned long)page_address(page);
75cbade8 1917
d7c8f21a 1918 return set_memory_wb(addr, numpages);
75cbade8
AV
1919}
1920EXPORT_SYMBOL(set_pages_wb);
1921
0f350755 1922int set_pages_array_wb(struct page **pages, int addrinarray)
1923{
1924 int retval;
1925 unsigned long start;
1926 unsigned long end;
1927 int i;
1928
c06814d8 1929 /* WB cache mode is hard wired to all cache attribute bits being 0 */
0f350755 1930 retval = cpa_clear_pages_array(pages, addrinarray,
1931 __pgprot(_PAGE_CACHE_MASK));
9fa3ab39 1932 if (retval)
1933 return retval;
0f350755 1934
1935 for (i = 0; i < addrinarray; i++) {
8523acfe
TH
1936 if (PageHighMem(pages[i]))
1937 continue;
1938 start = page_to_pfn(pages[i]) << PAGE_SHIFT;
0f350755 1939 end = start + PAGE_SIZE;
1940 free_memtype(start, end);
1941 }
1942
9fa3ab39 1943 return 0;
0f350755 1944}
1945EXPORT_SYMBOL(set_pages_array_wb);
1946
75cbade8
AV
1947int set_pages_x(struct page *page, int numpages)
1948{
1949 unsigned long addr = (unsigned long)page_address(page);
75cbade8 1950
d7c8f21a 1951 return set_memory_x(addr, numpages);
75cbade8
AV
1952}
1953EXPORT_SYMBOL(set_pages_x);
1954
1955int set_pages_nx(struct page *page, int numpages)
1956{
1957 unsigned long addr = (unsigned long)page_address(page);
75cbade8 1958
d7c8f21a 1959 return set_memory_nx(addr, numpages);
75cbade8
AV
1960}
1961EXPORT_SYMBOL(set_pages_nx);
1962
1963int set_pages_ro(struct page *page, int numpages)
1964{
1965 unsigned long addr = (unsigned long)page_address(page);
75cbade8 1966
d7c8f21a 1967 return set_memory_ro(addr, numpages);
75cbade8 1968}
75cbade8
AV
1969
1970int set_pages_rw(struct page *page, int numpages)
1971{
1972 unsigned long addr = (unsigned long)page_address(page);
e81d5dc4 1973
d7c8f21a 1974 return set_memory_rw(addr, numpages);
78c94aba
IM
1975}
1976
1da177e4 1977#ifdef CONFIG_DEBUG_PAGEALLOC
f62d0f00
IM
1978
1979static int __set_pages_p(struct page *page, int numpages)
1980{
d75586ad
SL
1981 unsigned long tempaddr = (unsigned long) page_address(page);
1982 struct cpa_data cpa = { .vaddr = &tempaddr,
82f0712c 1983 .pgd = NULL,
72e458df
TG
1984 .numpages = numpages,
1985 .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW),
d75586ad
SL
1986 .mask_clr = __pgprot(0),
1987 .flags = 0};
72932c7a 1988
55121b43
SS
1989 /*
1990 * No alias checking needed for setting present flag. otherwise,
1991 * we may need to break large pages for 64-bit kernel text
1992 * mappings (this adds to complexity if we want to do this from
1993 * atomic context especially). Let's keep it simple!
1994 */
1995 return __change_page_attr_set_clr(&cpa, 0);
f62d0f00
IM
1996}
1997
1998static int __set_pages_np(struct page *page, int numpages)
1999{
d75586ad
SL
2000 unsigned long tempaddr = (unsigned long) page_address(page);
2001 struct cpa_data cpa = { .vaddr = &tempaddr,
82f0712c 2002 .pgd = NULL,
72e458df
TG
2003 .numpages = numpages,
2004 .mask_set = __pgprot(0),
d75586ad
SL
2005 .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW),
2006 .flags = 0};
72932c7a 2007
55121b43
SS
2008 /*
2009 * No alias checking needed for setting not present flag. otherwise,
2010 * we may need to break large pages for 64-bit kernel text
2011 * mappings (this adds to complexity if we want to do this from
2012 * atomic context especially). Let's keep it simple!
2013 */
2014 return __change_page_attr_set_clr(&cpa, 0);
f62d0f00
IM
2015}
2016
031bc574 2017void __kernel_map_pages(struct page *page, int numpages, int enable)
1da177e4
LT
2018{
2019 if (PageHighMem(page))
2020 return;
9f4c815c 2021 if (!enable) {
f9b8404c
IM
2022 debug_check_no_locks_freed(page_address(page),
2023 numpages * PAGE_SIZE);
9f4c815c 2024 }
de5097c2 2025
9f4c815c 2026 /*
f8d8406b 2027 * The return value is ignored as the calls cannot fail.
55121b43
SS
2028 * Large pages for identity mappings are not used at boot time
2029 * and hence no memory allocations during large page split.
1da177e4 2030 */
f62d0f00
IM
2031 if (enable)
2032 __set_pages_p(page, numpages);
2033 else
2034 __set_pages_np(page, numpages);
9f4c815c
IM
2035
2036 /*
e4b71dcf
IM
2037 * We should perform an IPI and flush all tlbs,
2038 * but that can deadlock->flush only current cpu:
1da177e4
LT
2039 */
2040 __flush_tlb_all();
26564600
BO
2041
2042 arch_flush_lazy_mmu_mode();
ee7ae7a1
TG
2043}
2044
8a235efa
RW
2045#ifdef CONFIG_HIBERNATION
2046
2047bool kernel_page_present(struct page *page)
2048{
2049 unsigned int level;
2050 pte_t *pte;
2051
2052 if (PageHighMem(page))
2053 return false;
2054
2055 pte = lookup_address((unsigned long)page_address(page), &level);
2056 return (pte_val(*pte) & _PAGE_PRESENT);
2057}
2058
2059#endif /* CONFIG_HIBERNATION */
2060
2061#endif /* CONFIG_DEBUG_PAGEALLOC */
d1028a15 2062
82f0712c
BP
2063int kernel_map_pages_in_pgd(pgd_t *pgd, u64 pfn, unsigned long address,
2064 unsigned numpages, unsigned long page_flags)
2065{
2066 int retval = -EINVAL;
2067
2068 struct cpa_data cpa = {
2069 .vaddr = &address,
2070 .pfn = pfn,
2071 .pgd = pgd,
2072 .numpages = numpages,
2073 .mask_set = __pgprot(0),
2074 .mask_clr = __pgprot(0),
2075 .flags = 0,
2076 };
2077
2078 if (!(__supported_pte_mask & _PAGE_NX))
2079 goto out;
2080
2081 if (!(page_flags & _PAGE_NX))
2082 cpa.mask_clr = __pgprot(_PAGE_NX);
2083
15f003d2
SP
2084 if (!(page_flags & _PAGE_RW))
2085 cpa.mask_clr = __pgprot(_PAGE_RW);
2086
21729f81
TL
2087 if (!(page_flags & _PAGE_ENC))
2088 cpa.mask_clr = pgprot_encrypted(cpa.mask_clr);
2089
82f0712c
BP
2090 cpa.mask_set = __pgprot(_PAGE_PRESENT | page_flags);
2091
2092 retval = __change_page_attr_set_clr(&cpa, 0);
2093 __flush_tlb_all();
2094
2095out:
2096 return retval;
2097}
2098
d1028a15
AV
2099/*
2100 * The testcases use internal knowledge of the implementation that shouldn't
2101 * be exposed to the rest of the kernel. Include these directly here.
2102 */
2103#ifdef CONFIG_CPA_DEBUG
2104#include "pageattr-test.c"
2105#endif