blob: 1271bc9fa3c64f433a53d6dfd628b048c7b7f19f [file] [log] [blame]
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001/*
2 * Copyright 2002 Andi Kleen, SuSE Labs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Thanks to Ben LaHaise for precious feedback.
Ingo Molnar9f4c8152008-01-30 13:33:41 +01004 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/highmem.h>
Ingo Molnar81922062008-01-30 13:34:04 +01006#include <linux/bootmem.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +01007#include <linux/sched.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +01008#include <linux/mm.h>
Thomas Gleixner76ebd052008-02-09 23:24:09 +01009#include <linux/interrupt.h>
Thomas Gleixneree7ae7a2008-04-17 17:40:45 +020010#include <linux/seq_file.h>
11#include <linux/debugfs.h>
Tejun Heoe59a1bb2009-06-22 11:56:24 +090012#include <linux/pfn.h>
Tejun Heo8c4bfc62009-07-04 08:10:59 +090013#include <linux/percpu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/gfp.h>
Matthieu Castet5bd5a452010-11-16 22:31:26 +010015#include <linux/pci.h>
Stephen Rothwelld6472302015-06-02 19:01:38 +100016#include <linux/vmalloc.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010017
Thomas Gleixner950f9d92008-01-30 13:34:06 +010018#include <asm/e820.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/processor.h>
20#include <asm/tlbflush.h>
Dave Jonesf8af0952006-01-06 00:12:10 -080021#include <asm/sections.h>
Jeremy Fitzhardinge93dbda72009-02-26 17:35:44 -080022#include <asm/setup.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010023#include <asm/uaccess.h>
24#include <asm/pgalloc.h>
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010025#include <asm/proto.h>
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -070026#include <asm/pat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Ingo Molnar9df84992008-02-04 16:48:09 +010028/*
29 * The current flushing context - we pass it instead of 5 arguments:
30 */
Thomas Gleixner72e458d2008-02-04 16:48:07 +010031struct cpa_data {
Shaohua Lid75586a2008-08-21 10:46:06 +080032 unsigned long *vaddr;
Borislav Petkov0fd64c22013-10-31 17:25:00 +010033 pgd_t *pgd;
Thomas Gleixner72e458d2008-02-04 16:48:07 +010034 pgprot_t mask_set;
35 pgprot_t mask_clr;
Matt Fleming74256372016-01-29 11:36:10 +000036 unsigned long numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +080037 int flags;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010038 unsigned long pfn;
Andi Kleenc9caa022008-03-12 03:53:29 +010039 unsigned force_split : 1;
Shaohua Lid75586a2008-08-21 10:46:06 +080040 int curpage;
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -070041 struct page **pages;
Thomas Gleixner72e458d2008-02-04 16:48:07 +010042};
43
Suresh Siddhaad5ca552008-09-23 14:00:42 -070044/*
45 * Serialize cpa() (for !DEBUG_PAGEALLOC which uses large identity mappings)
46 * using cpa_lock. So that we don't allow any other cpu, with stale large tlb
47 * entries change the page attribute in parallel to some other cpu
48 * splitting a large page entry along with changing the attribute.
49 */
50static DEFINE_SPINLOCK(cpa_lock);
51
Shaohua Lid75586a2008-08-21 10:46:06 +080052#define CPA_FLUSHTLB 1
53#define CPA_ARRAY 2
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -070054#define CPA_PAGES_ARRAY 4
Dave Hansen8f0baad2017-08-30 16:23:00 -070055#define CPA_FREE_PAGETABLES 8
Shaohua Lid75586a2008-08-21 10:46:06 +080056
Thomas Gleixner65280e62008-05-05 16:35:21 +020057#ifdef CONFIG_PROC_FS
Andi Kleence0c0e52008-05-02 11:46:49 +020058static unsigned long direct_pages_count[PG_LEVEL_NUM];
59
Thomas Gleixner65280e62008-05-05 16:35:21 +020060void update_page_count(int level, unsigned long pages)
Andi Kleence0c0e52008-05-02 11:46:49 +020061{
Andi Kleence0c0e52008-05-02 11:46:49 +020062 /* Protect against CPA */
Andrea Arcangelia79e53d2011-02-16 15:45:22 -080063 spin_lock(&pgd_lock);
Andi Kleence0c0e52008-05-02 11:46:49 +020064 direct_pages_count[level] += pages;
Andrea Arcangelia79e53d2011-02-16 15:45:22 -080065 spin_unlock(&pgd_lock);
Andi Kleence0c0e52008-05-02 11:46:49 +020066}
67
Thomas Gleixner65280e62008-05-05 16:35:21 +020068static void split_page_count(int level)
69{
Dave Jonesc9e0d392016-01-11 12:04:28 -050070 if (direct_pages_count[level] == 0)
71 return;
72
Thomas Gleixner65280e62008-05-05 16:35:21 +020073 direct_pages_count[level]--;
74 direct_pages_count[level - 1] += PTRS_PER_PTE;
75}
76
Alexey Dobriyane1759c22008-10-15 23:50:22 +040077void arch_report_meminfo(struct seq_file *m)
Thomas Gleixner65280e62008-05-05 16:35:21 +020078{
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000079 seq_printf(m, "DirectMap4k: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010080 direct_pages_count[PG_LEVEL_4K] << 2);
81#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000082 seq_printf(m, "DirectMap2M: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010083 direct_pages_count[PG_LEVEL_2M] << 11);
84#else
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000085 seq_printf(m, "DirectMap4M: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010086 direct_pages_count[PG_LEVEL_2M] << 12);
87#endif
Hugh Dickinsa06de632008-08-15 13:58:32 +010088 if (direct_gbpages)
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000089 seq_printf(m, "DirectMap1G: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010090 direct_pages_count[PG_LEVEL_1G] << 20);
Thomas Gleixner65280e62008-05-05 16:35:21 +020091}
92#else
93static inline void split_page_count(int level) { }
94#endif
95
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010096#ifdef CONFIG_X86_64
97
98static inline unsigned long highmap_start_pfn(void)
99{
Alexander Duyckfc8d7822012-11-16 13:57:13 -0800100 return __pa_symbol(_text) >> PAGE_SHIFT;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100101}
102
103static inline unsigned long highmap_end_pfn(void)
104{
Thomas Garnier4ff53082016-06-15 12:05:45 -0700105 /* Do not reference physical address outside the kernel. */
106 return __pa_symbol(roundup(_brk_end, PMD_SIZE) - 1) >> PAGE_SHIFT;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100107}
108
109#endif
110
Arjan van de Vened724be2008-01-30 13:34:04 +0100111static inline int
112within(unsigned long addr, unsigned long start, unsigned long end)
Ingo Molnar687c4822008-01-30 13:34:04 +0100113{
Arjan van de Vened724be2008-01-30 13:34:04 +0100114 return addr >= start && addr < end;
115}
116
Thomas Garnier4ff53082016-06-15 12:05:45 -0700117static inline int
118within_inclusive(unsigned long addr, unsigned long start, unsigned long end)
119{
120 return addr >= start && addr <= end;
121}
122
Arjan van de Vened724be2008-01-30 13:34:04 +0100123/*
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100124 * Flushing functions
125 */
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100126
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100127/**
128 * clflush_cache_range - flush a cache range with clflush
Wanpeng Li9efc31b2012-06-10 10:50:52 +0800129 * @vaddr: virtual start address
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100130 * @size: number of bytes to flush
131 *
Ross Zwisler8b80fd82014-02-26 12:06:50 -0700132 * clflushopt is an unordered instruction which needs fencing with mfence or
133 * sfence to avoid ordering issues.
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100134 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100135void clflush_cache_range(void *vaddr, unsigned int size)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100136{
Chris Wilson1f1a89a2016-01-08 09:55:33 +0000137 const unsigned long clflush_size = boot_cpu_data.x86_clflush_size;
138 void *p = (void *)((unsigned long)vaddr & ~(clflush_size - 1));
Ross Zwisler6c434d62015-05-11 10:15:49 +0200139 void *vend = vaddr + size;
Chris Wilson1f1a89a2016-01-08 09:55:33 +0000140
141 if (p >= vend)
142 return;
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100143
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100144 mb();
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100145
Chris Wilson1f1a89a2016-01-08 09:55:33 +0000146 for (; p < vend; p += clflush_size)
Ross Zwisler6c434d62015-05-11 10:15:49 +0200147 clflushopt(p);
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100148
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100149 mb();
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100150}
Eric Anholte517a5e2009-09-10 17:48:48 -0700151EXPORT_SYMBOL_GPL(clflush_cache_range);
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100152
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100153static void __cpa_flush_all(void *arg)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100154{
Andi Kleen6bb83832008-02-04 16:48:06 +0100155 unsigned long cache = (unsigned long)arg;
156
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100157 /*
158 * Flush all to work around Errata in early athlons regarding
159 * large page flushing.
160 */
161 __flush_tlb_all();
162
venkatesh.pallipadi@intel.com0b827532009-05-22 13:23:37 -0700163 if (cache && boot_cpu_data.x86 >= 4)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100164 wbinvd();
165}
166
Andi Kleen6bb83832008-02-04 16:48:06 +0100167static void cpa_flush_all(unsigned long cache)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100168{
169 BUG_ON(irqs_disabled());
170
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200171 on_each_cpu(__cpa_flush_all, (void *) cache, 1);
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100172}
173
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100174static void __cpa_flush_range(void *arg)
175{
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100176 /*
177 * We could optimize that further and do individual per page
178 * tlb invalidates for a low number of pages. Caveat: we must
179 * flush the high aliases on 64bit as well.
180 */
181 __flush_tlb_all();
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100182}
183
Andi Kleen6bb83832008-02-04 16:48:06 +0100184static void cpa_flush_range(unsigned long start, int numpages, int cache)
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100185{
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100186 unsigned int i, level;
187 unsigned long addr;
188
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100189 BUG_ON(irqs_disabled());
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100190 WARN_ON(PAGE_ALIGN(start) != start);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100191
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200192 on_each_cpu(__cpa_flush_range, NULL, 1);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100193
Andi Kleen6bb83832008-02-04 16:48:06 +0100194 if (!cache)
195 return;
196
Thomas Gleixner3b233e52008-01-30 13:34:08 +0100197 /*
198 * We only need to flush on one CPU,
199 * clflush is a MESI-coherent instruction that
200 * will cause all other CPUs to flush the same
201 * cachelines:
202 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100203 for (i = 0, addr = start; i < numpages; i++, addr += PAGE_SIZE) {
204 pte_t *pte = lookup_address(addr, &level);
205
206 /*
207 * Only flush present addresses:
208 */
Thomas Gleixner7bfb72e2008-02-04 16:48:08 +0100209 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100210 clflush_cache_range((void *) addr, PAGE_SIZE);
211 }
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100212}
213
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700214static void cpa_flush_array(unsigned long *start, int numpages, int cache,
215 int in_flags, struct page **pages)
Shaohua Lid75586a2008-08-21 10:46:06 +0800216{
217 unsigned int i, level;
Pallipadi, Venkatesh21717872009-05-26 10:33:35 -0700218 unsigned long do_wbinvd = cache && numpages >= 1024; /* 4M threshold */
Shaohua Lid75586a2008-08-21 10:46:06 +0800219
220 BUG_ON(irqs_disabled());
221
Pallipadi, Venkatesh21717872009-05-26 10:33:35 -0700222 on_each_cpu(__cpa_flush_all, (void *) do_wbinvd, 1);
Shaohua Lid75586a2008-08-21 10:46:06 +0800223
Pallipadi, Venkatesh21717872009-05-26 10:33:35 -0700224 if (!cache || do_wbinvd)
Shaohua Lid75586a2008-08-21 10:46:06 +0800225 return;
226
Shaohua Lid75586a2008-08-21 10:46:06 +0800227 /*
228 * We only need to flush on one CPU,
229 * clflush is a MESI-coherent instruction that
230 * will cause all other CPUs to flush the same
231 * cachelines:
232 */
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700233 for (i = 0; i < numpages; i++) {
234 unsigned long addr;
235 pte_t *pte;
236
237 if (in_flags & CPA_PAGES_ARRAY)
238 addr = (unsigned long)page_address(pages[i]);
239 else
240 addr = start[i];
241
242 pte = lookup_address(addr, &level);
Shaohua Lid75586a2008-08-21 10:46:06 +0800243
244 /*
245 * Only flush present addresses:
246 */
247 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700248 clflush_cache_range((void *)addr, PAGE_SIZE);
Shaohua Lid75586a2008-08-21 10:46:06 +0800249 }
250}
251
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100252/*
Arjan van de Vened724be2008-01-30 13:34:04 +0100253 * Certain areas of memory on x86 require very specific protection flags,
254 * for example the BIOS area or kernel text. Callers don't always get this
255 * right (again, ioremap() on BIOS memory is not uncommon) so this function
256 * checks and fixes these known static required protection bits.
257 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100258static inline pgprot_t static_protections(pgprot_t prot, unsigned long address,
259 unsigned long pfn)
Arjan van de Vened724be2008-01-30 13:34:04 +0100260{
261 pgprot_t forbidden = __pgprot(0);
262
Ingo Molnar687c4822008-01-30 13:34:04 +0100263 /*
Arjan van de Vened724be2008-01-30 13:34:04 +0100264 * The BIOS area between 640k and 1Mb needs to be executable for
265 * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support.
Ingo Molnar687c4822008-01-30 13:34:04 +0100266 */
Matthieu Castet5bd5a452010-11-16 22:31:26 +0100267#ifdef CONFIG_PCI_BIOS
268 if (pcibios_enabled && within(pfn, BIOS_BEGIN >> PAGE_SHIFT, BIOS_END >> PAGE_SHIFT))
Arjan van de Vened724be2008-01-30 13:34:04 +0100269 pgprot_val(forbidden) |= _PAGE_NX;
Matthieu Castet5bd5a452010-11-16 22:31:26 +0100270#endif
Arjan van de Vened724be2008-01-30 13:34:04 +0100271
272 /*
273 * The kernel text needs to be executable for obvious reasons
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100274 * Does not cover __inittext since that is gone later on. On
275 * 64bit we do not enforce !NX on the low mapping
Arjan van de Vened724be2008-01-30 13:34:04 +0100276 */
277 if (within(address, (unsigned long)_text, (unsigned long)_etext))
278 pgprot_val(forbidden) |= _PAGE_NX;
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100279
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100280 /*
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100281 * The .rodata section needs to be read-only. Using the pfn
Dave Hansen2bbb81d2018-04-06 13:55:14 -0700282 * catches all aliases. This also includes __ro_after_init,
283 * so do not enforce until kernel_set_to_readonly is true.
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100284 */
Dave Hansen2bbb81d2018-04-06 13:55:14 -0700285 if (kernel_set_to_readonly &&
286 within(pfn, __pa_symbol(__start_rodata) >> PAGE_SHIFT,
Alexander Duyckfc8d7822012-11-16 13:57:13 -0800287 __pa_symbol(__end_rodata) >> PAGE_SHIFT))
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100288 pgprot_val(forbidden) |= _PAGE_RW;
Arjan van de Vened724be2008-01-30 13:34:04 +0100289
Kees Cook9ccaf772016-02-17 14:41:14 -0800290#if defined(CONFIG_X86_64)
Suresh Siddha74e08172009-10-14 14:46:56 -0700291 /*
Suresh Siddha502f6602009-10-28 18:46:56 -0800292 * Once the kernel maps the text as RO (kernel_set_to_readonly is set),
293 * kernel text mappings for the large page aligned text, rodata sections
294 * will be always read-only. For the kernel identity mappings covering
295 * the holes caused by this alignment can be anything that user asks.
Suresh Siddha74e08172009-10-14 14:46:56 -0700296 *
297 * This will preserve the large page mappings for kernel text/data
298 * at no extra cost.
299 */
Suresh Siddha502f6602009-10-28 18:46:56 -0800300 if (kernel_set_to_readonly &&
301 within(address, (unsigned long)_text,
Suresh Siddha281ff332010-02-18 11:51:40 -0800302 (unsigned long)__end_rodata_hpage_align)) {
303 unsigned int level;
304
305 /*
306 * Don't enforce the !RW mapping for the kernel text mapping,
307 * if the current mapping is already using small page mapping.
308 * No need to work hard to preserve large page mappings in this
309 * case.
310 *
311 * This also fixes the Linux Xen paravirt guest boot failure
312 * (because of unexpected read-only mappings for kernel identity
313 * mappings). In this paravirt guest case, the kernel text
314 * mapping and the kernel identity mapping share the same
315 * page-table pages. Thus we can't really use different
316 * protections for the kernel text and identity mappings. Also,
317 * these shared mappings are made of small page mappings.
318 * Thus this don't enforce !RW mapping for small page kernel
319 * text mapping logic will help Linux Xen parvirt guest boot
Lucas De Marchi0d2eb442011-03-17 16:24:16 -0300320 * as well.
Suresh Siddha281ff332010-02-18 11:51:40 -0800321 */
322 if (lookup_address(address, &level) && (level != PG_LEVEL_4K))
323 pgprot_val(forbidden) |= _PAGE_RW;
324 }
Suresh Siddha74e08172009-10-14 14:46:56 -0700325#endif
326
Arjan van de Vened724be2008-01-30 13:34:04 +0100327 prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden));
Ingo Molnar687c4822008-01-30 13:34:04 +0100328
329 return prot;
330}
331
Matt Fleming426e34c2013-12-06 21:13:04 +0000332/*
333 * Lookup the page table entry for a virtual address in a specific pgd.
334 * Return a pointer to the entry and the level of the mapping.
335 */
336pte_t *lookup_address_in_pgd(pgd_t *pgd, unsigned long address,
337 unsigned int *level)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100338{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 pud_t *pud;
340 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100341
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100342 *level = PG_LEVEL_NONE;
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 if (pgd_none(*pgd))
345 return NULL;
Ingo Molnar9df84992008-02-04 16:48:09 +0100346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 pud = pud_offset(pgd, address);
348 if (pud_none(*pud))
349 return NULL;
Andi Kleenc2f71ee2008-02-04 16:48:09 +0100350
351 *level = PG_LEVEL_1G;
352 if (pud_large(*pud) || !pud_present(*pud))
353 return (pte_t *)pud;
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 pmd = pmd_offset(pud, address);
356 if (pmd_none(*pmd))
357 return NULL;
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100358
359 *level = PG_LEVEL_2M;
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100360 if (pmd_large(*pmd) || !pmd_present(*pmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return (pte_t *)pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100363 *level = PG_LEVEL_4K;
Ingo Molnar9df84992008-02-04 16:48:09 +0100364
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100365 return pte_offset_kernel(pmd, address);
366}
Borislav Petkov0fd64c22013-10-31 17:25:00 +0100367
368/*
369 * Lookup the page table entry for a virtual address. Return a pointer
370 * to the entry and the level of the mapping.
371 *
372 * Note: We return pud and pmd either when the entry is marked large
373 * or when the present bit is not set. Otherwise we would return a
374 * pointer to a nonexisting mapping.
375 */
376pte_t *lookup_address(unsigned long address, unsigned int *level)
377{
Matt Fleming426e34c2013-12-06 21:13:04 +0000378 return lookup_address_in_pgd(pgd_offset_k(address), address, level);
Borislav Petkov0fd64c22013-10-31 17:25:00 +0100379}
Pekka Paalanen75bb8832008-05-12 21:20:56 +0200380EXPORT_SYMBOL_GPL(lookup_address);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100381
Borislav Petkov0fd64c22013-10-31 17:25:00 +0100382static pte_t *_lookup_address_cpa(struct cpa_data *cpa, unsigned long address,
383 unsigned int *level)
384{
385 if (cpa->pgd)
Matt Fleming426e34c2013-12-06 21:13:04 +0000386 return lookup_address_in_pgd(cpa->pgd + pgd_index(address),
Borislav Petkov0fd64c22013-10-31 17:25:00 +0100387 address, level);
388
389 return lookup_address(address, level);
390}
391
Ingo Molnar9df84992008-02-04 16:48:09 +0100392/*
Juergen Gross792230c2014-11-28 11:53:56 +0100393 * Lookup the PMD entry for a virtual address. Return a pointer to the entry
394 * or NULL if not present.
395 */
396pmd_t *lookup_pmd_address(unsigned long address)
397{
398 pgd_t *pgd;
399 pud_t *pud;
400
401 pgd = pgd_offset_k(address);
402 if (pgd_none(*pgd))
403 return NULL;
404
405 pud = pud_offset(pgd, address);
406 if (pud_none(*pud) || pud_large(*pud) || !pud_present(*pud))
407 return NULL;
408
409 return pmd_offset(pud, address);
410}
411
412/*
Dave Hansend7656532013-01-22 13:24:33 -0800413 * This is necessary because __pa() does not work on some
414 * kinds of memory, like vmalloc() or the alloc_remap()
415 * areas on 32-bit NUMA systems. The percpu areas can
416 * end up in this kind of memory, for instance.
417 *
418 * This could be optimized, but it is only intended to be
419 * used at inititalization time, and keeping it
420 * unoptimized should increase the testing coverage for
421 * the more obscure platforms.
422 */
423phys_addr_t slow_virt_to_phys(void *__virt_addr)
424{
425 unsigned long virt_addr = (unsigned long)__virt_addr;
Dexuan Cuibf70e552016-02-25 01:58:12 -0800426 phys_addr_t phys_addr;
427 unsigned long offset;
Dave Hansend7656532013-01-22 13:24:33 -0800428 enum pg_level level;
Dave Hansend7656532013-01-22 13:24:33 -0800429 pte_t *pte;
430
431 pte = lookup_address(virt_addr, &level);
432 BUG_ON(!pte);
Toshi Kani34437e62015-09-17 12:24:20 -0600433
Dexuan Cuibf70e552016-02-25 01:58:12 -0800434 /*
435 * pXX_pfn() returns unsigned long, which must be cast to phys_addr_t
436 * before being left-shifted PAGE_SHIFT bits -- this trick is to
437 * make 32-PAE kernel work correctly.
438 */
Toshi Kani34437e62015-09-17 12:24:20 -0600439 switch (level) {
440 case PG_LEVEL_1G:
Dexuan Cuibf70e552016-02-25 01:58:12 -0800441 phys_addr = (phys_addr_t)pud_pfn(*(pud_t *)pte) << PAGE_SHIFT;
Toshi Kani34437e62015-09-17 12:24:20 -0600442 offset = virt_addr & ~PUD_PAGE_MASK;
443 break;
444 case PG_LEVEL_2M:
Dexuan Cuibf70e552016-02-25 01:58:12 -0800445 phys_addr = (phys_addr_t)pmd_pfn(*(pmd_t *)pte) << PAGE_SHIFT;
Toshi Kani34437e62015-09-17 12:24:20 -0600446 offset = virt_addr & ~PMD_PAGE_MASK;
447 break;
448 default:
Dexuan Cuibf70e552016-02-25 01:58:12 -0800449 phys_addr = (phys_addr_t)pte_pfn(*pte) << PAGE_SHIFT;
Toshi Kani34437e62015-09-17 12:24:20 -0600450 offset = virt_addr & ~PAGE_MASK;
451 }
452
453 return (phys_addr_t)(phys_addr | offset);
Dave Hansend7656532013-01-22 13:24:33 -0800454}
455EXPORT_SYMBOL_GPL(slow_virt_to_phys);
456
457/*
Ingo Molnar9df84992008-02-04 16:48:09 +0100458 * Set the new pmd in all the pgds we know about:
459 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100460static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100461{
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100462 /* change init_mm */
463 set_pte_atomic(kpte, pte);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100464#ifdef CONFIG_X86_32
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100465 if (!SHARED_KERNEL_PMD) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100466 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Jeremy Fitzhardingee3ed9102008-01-30 13:34:11 +0100468 list_for_each_entry(page, &pgd_list, lru) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100469 pgd_t *pgd;
470 pud_t *pud;
471 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100472
Ingo Molnar44af6c42008-01-30 13:34:03 +0100473 pgd = (pgd_t *)page_address(page) + pgd_index(address);
474 pud = pud_offset(pgd, address);
475 pmd = pmd_offset(pud, address);
476 set_pte_atomic((pte_t *)pmd, pte);
477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100479#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
Ingo Molnar9df84992008-02-04 16:48:09 +0100482static int
483try_preserve_large_page(pte_t *kpte, unsigned long address,
484 struct cpa_data *cpa)
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100485{
Toshi Kani3a191092015-09-17 12:24:22 -0600486 unsigned long nextpage_addr, numpages, pmask, psize, addr, pfn, old_pfn;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100487 pte_t new_pte, old_pte, *tmp;
matthieu castet64edc8e2010-11-16 22:30:27 +0100488 pgprot_t old_prot, new_prot, req_prot;
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100489 int i, do_split = 1;
Dave Hansenf3c4fbb2013-01-22 13:24:32 -0800490 enum pg_level level;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100491
Andi Kleenc9caa022008-03-12 03:53:29 +0100492 if (cpa->force_split)
493 return 1;
494
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800495 spin_lock(&pgd_lock);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100496 /*
497 * Check for races, another CPU might have split this page
498 * up already:
499 */
Borislav Petkov82f07122013-10-31 17:25:07 +0100500 tmp = _lookup_address_cpa(cpa, address, &level);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100501 if (tmp != kpte)
502 goto out_unlock;
503
504 switch (level) {
505 case PG_LEVEL_2M:
Toshi Kani3a191092015-09-17 12:24:22 -0600506 old_prot = pmd_pgprot(*(pmd_t *)kpte);
507 old_pfn = pmd_pfn(*(pmd_t *)kpte);
508 break;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100509 case PG_LEVEL_1G:
Toshi Kani3a191092015-09-17 12:24:22 -0600510 old_prot = pud_pgprot(*(pud_t *)kpte);
511 old_pfn = pud_pfn(*(pud_t *)kpte);
Dave Hansenf3c4fbb2013-01-22 13:24:32 -0800512 break;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100513 default:
Ingo Molnarbeaff632008-02-04 16:48:09 +0100514 do_split = -EINVAL;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100515 goto out_unlock;
516 }
517
Toshi Kani3a191092015-09-17 12:24:22 -0600518 psize = page_level_size(level);
519 pmask = page_level_mask(level);
520
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100521 /*
522 * Calculate the number of pages, which fit into this large
523 * page starting at address:
524 */
525 nextpage_addr = (address + psize) & pmask;
526 numpages = (nextpage_addr - address) >> PAGE_SHIFT;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100527 if (numpages < cpa->numpages)
528 cpa->numpages = numpages;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100529
530 /*
531 * We are safe now. Check whether the new pgprot is the same:
Juergen Grossf5b28312014-11-03 14:02:02 +0100532 * Convert protection attributes to 4k-format, as cpa->mask* are set
533 * up accordingly.
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100534 */
535 old_pte = *kpte;
Toshi Kani55696b12015-09-17 12:24:24 -0600536 req_prot = pgprot_large_2_4k(old_prot);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100537
matthieu castet64edc8e2010-11-16 22:30:27 +0100538 pgprot_val(req_prot) &= ~pgprot_val(cpa->mask_clr);
539 pgprot_val(req_prot) |= pgprot_val(cpa->mask_set);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100540
541 /*
Juergen Grossf5b28312014-11-03 14:02:02 +0100542 * req_prot is in format of 4k pages. It must be converted to large
543 * page format: the caching mode includes the PAT bit located at
544 * different bit positions in the two formats.
545 */
546 req_prot = pgprot_4k_2_large(req_prot);
547
548 /*
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800549 * Set the PSE and GLOBAL flags only if the PRESENT flag is
550 * set otherwise pmd_present/pmd_huge will return true even on
551 * a non present pmd. The canon_pgprot will clear _PAGE_GLOBAL
552 * for the ancient hardware that doesn't support it.
553 */
Andrea Arcangelif76cfa32013-04-10 15:28:25 +0200554 if (pgprot_val(req_prot) & _PAGE_PRESENT)
555 pgprot_val(req_prot) |= _PAGE_PSE | _PAGE_GLOBAL;
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800556 else
Andrea Arcangelif76cfa32013-04-10 15:28:25 +0200557 pgprot_val(req_prot) &= ~(_PAGE_PSE | _PAGE_GLOBAL);
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800558
Andrea Arcangelif76cfa32013-04-10 15:28:25 +0200559 req_prot = canon_pgprot(req_prot);
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800560
561 /*
Toshi Kani3a191092015-09-17 12:24:22 -0600562 * old_pfn points to the large page base pfn. So we need
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100563 * to add the offset of the virtual address:
564 */
Toshi Kani3a191092015-09-17 12:24:22 -0600565 pfn = old_pfn + ((address & (psize - 1)) >> PAGE_SHIFT);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100566 cpa->pfn = pfn;
567
matthieu castet64edc8e2010-11-16 22:30:27 +0100568 new_prot = static_protections(req_prot, address, pfn);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100569
570 /*
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100571 * We need to check the full range, whether
572 * static_protection() requires a different pgprot for one of
573 * the pages in the range we try to preserve:
574 */
matthieu castet64edc8e2010-11-16 22:30:27 +0100575 addr = address & pmask;
Toshi Kani3a191092015-09-17 12:24:22 -0600576 pfn = old_pfn;
matthieu castet64edc8e2010-11-16 22:30:27 +0100577 for (i = 0; i < (psize >> PAGE_SHIFT); i++, addr += PAGE_SIZE, pfn++) {
578 pgprot_t chk_prot = static_protections(req_prot, addr, pfn);
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100579
580 if (pgprot_val(chk_prot) != pgprot_val(new_prot))
581 goto out_unlock;
582 }
583
584 /*
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100585 * If there are no changes, return. maxpages has been updated
586 * above:
587 */
588 if (pgprot_val(new_prot) == pgprot_val(old_prot)) {
Ingo Molnarbeaff632008-02-04 16:48:09 +0100589 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100590 goto out_unlock;
591 }
592
593 /*
594 * We need to change the attributes. Check, whether we can
595 * change the large page in one go. We request a split, when
596 * the address is not aligned and the number of pages is
597 * smaller than the number of pages in the large page. Note
598 * that we limited the number of possible pages already to
599 * the number of pages in the large page.
600 */
matthieu castet64edc8e2010-11-16 22:30:27 +0100601 if (address == (address & pmask) && cpa->numpages == (psize >> PAGE_SHIFT)) {
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100602 /*
603 * The address is aligned and the number of pages
604 * covers the full page.
605 */
Toshi Kani3a191092015-09-17 12:24:22 -0600606 new_pte = pfn_pte(old_pfn, new_prot);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100607 __set_pmd_pte(kpte, address, new_pte);
Shaohua Lid75586a2008-08-21 10:46:06 +0800608 cpa->flags |= CPA_FLUSHTLB;
Ingo Molnarbeaff632008-02-04 16:48:09 +0100609 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100610 }
611
612out_unlock:
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800613 spin_unlock(&pgd_lock);
Ingo Molnar9df84992008-02-04 16:48:09 +0100614
Ingo Molnarbeaff632008-02-04 16:48:09 +0100615 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100616}
617
Borislav Petkov59528862013-03-21 18:16:57 +0100618static int
Borislav Petkov82f07122013-10-31 17:25:07 +0100619__split_large_page(struct cpa_data *cpa, pte_t *kpte, unsigned long address,
620 struct page *base)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100621{
Borislav Petkov59528862013-03-21 18:16:57 +0100622 pte_t *pbase = (pte_t *)page_address(base);
Toshi Kanid551aaa2015-09-17 12:24:23 -0600623 unsigned long ref_pfn, pfn, pfninc = 1;
Ingo Molnar86f03982008-01-30 13:34:09 +0100624 unsigned int i, level;
Wen Congyangae9aae92013-02-22 16:33:04 -0800625 pte_t *tmp;
Ingo Molnar9df84992008-02-04 16:48:09 +0100626 pgprot_t ref_prot;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100627
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800628 spin_lock(&pgd_lock);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100629 /*
630 * Check for races, another CPU might have split this page
631 * up for us already:
632 */
Borislav Petkov82f07122013-10-31 17:25:07 +0100633 tmp = _lookup_address_cpa(cpa, address, &level);
Wen Congyangae9aae92013-02-22 16:33:04 -0800634 if (tmp != kpte) {
635 spin_unlock(&pgd_lock);
636 return 1;
637 }
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100638
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700639 paravirt_alloc_pte(&init_mm, page_to_pfn(base));
Juergen Grossf5b28312014-11-03 14:02:02 +0100640
Toshi Kanid551aaa2015-09-17 12:24:23 -0600641 switch (level) {
642 case PG_LEVEL_2M:
643 ref_prot = pmd_pgprot(*(pmd_t *)kpte);
644 /* clear PSE and promote PAT bit to correct position */
Juergen Grossf5b28312014-11-03 14:02:02 +0100645 ref_prot = pgprot_large_2_4k(ref_prot);
Toshi Kanid551aaa2015-09-17 12:24:23 -0600646 ref_pfn = pmd_pfn(*(pmd_t *)kpte);
647 break;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100648
Toshi Kanid551aaa2015-09-17 12:24:23 -0600649 case PG_LEVEL_1G:
650 ref_prot = pud_pgprot(*(pud_t *)kpte);
651 ref_pfn = pud_pfn(*(pud_t *)kpte);
Andi Kleenf07333f2008-02-04 16:48:09 +0100652 pfninc = PMD_PAGE_SIZE >> PAGE_SHIFT;
Toshi Kanid551aaa2015-09-17 12:24:23 -0600653
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800654 /*
Toshi Kanid551aaa2015-09-17 12:24:23 -0600655 * Clear the PSE flags if the PRESENT flag is not set
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800656 * otherwise pmd_present/pmd_huge will return true
657 * even on a non present pmd.
658 */
Toshi Kanid551aaa2015-09-17 12:24:23 -0600659 if (!(pgprot_val(ref_prot) & _PAGE_PRESENT))
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800660 pgprot_val(ref_prot) &= ~_PAGE_PSE;
Toshi Kanid551aaa2015-09-17 12:24:23 -0600661 break;
662
663 default:
664 spin_unlock(&pgd_lock);
665 return 1;
Andi Kleenf07333f2008-02-04 16:48:09 +0100666 }
Andi Kleenf07333f2008-02-04 16:48:09 +0100667
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100668 /*
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800669 * Set the GLOBAL flags only if the PRESENT flag is set
670 * otherwise pmd/pte_present will return true even on a non
671 * present pmd/pte. The canon_pgprot will clear _PAGE_GLOBAL
672 * for the ancient hardware that doesn't support it.
673 */
674 if (pgprot_val(ref_prot) & _PAGE_PRESENT)
675 pgprot_val(ref_prot) |= _PAGE_GLOBAL;
676 else
677 pgprot_val(ref_prot) &= ~_PAGE_GLOBAL;
678
679 /*
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100680 * Get the target pfn from the original entry:
681 */
Toshi Kanid551aaa2015-09-17 12:24:23 -0600682 pfn = ref_pfn;
Andi Kleenf07333f2008-02-04 16:48:09 +0100683 for (i = 0; i < PTRS_PER_PTE; i++, pfn += pfninc)
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800684 set_pte(&pbase[i], pfn_pte(pfn, canon_pgprot(ref_prot)));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100685
Sai Praneeth2c66e24d2015-10-16 16:20:27 -0700686 if (virt_addr_valid(address)) {
687 unsigned long pfn = PFN_DOWN(__pa(address));
688
689 if (pfn_range_is_mapped(pfn, pfn + 1))
690 split_page_count(level);
691 }
Yinghai Luf361a452008-07-10 20:38:26 -0700692
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100693 /*
Ingo Molnar07a66d72009-02-20 08:04:13 +0100694 * Install the new, split up pagetable.
Huang, Ying4c881ca2008-01-30 13:34:04 +0100695 *
Ingo Molnar07a66d72009-02-20 08:04:13 +0100696 * We use the standard kernel pagetable protections for the new
697 * pagetable protections, the actual ptes set above control the
698 * primary protection behavior:
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100699 */
Ingo Molnar07a66d72009-02-20 08:04:13 +0100700 __set_pmd_pte(kpte, address, mk_pte(base, __pgprot(_KERNPG_TABLE)));
Ingo Molnar211b3d02009-03-10 22:31:03 +0100701
702 /*
703 * Intel Atom errata AAH41 workaround.
704 *
705 * The real fix should be in hw or in a microcode update, but
706 * we also probabilistically try to reduce the window of having
707 * a large TLB mixed with 4K TLBs while instruction fetches are
708 * going on.
709 */
710 __flush_tlb_all();
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800711 spin_unlock(&pgd_lock);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100712
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100713 return 0;
714}
715
Borislav Petkov82f07122013-10-31 17:25:07 +0100716static int split_large_page(struct cpa_data *cpa, pte_t *kpte,
717 unsigned long address)
Wen Congyangae9aae92013-02-22 16:33:04 -0800718{
Wen Congyangae9aae92013-02-22 16:33:04 -0800719 struct page *base;
720
Christian Borntraeger288cf3c2016-03-15 14:57:33 -0700721 if (!debug_pagealloc_enabled())
Wen Congyangae9aae92013-02-22 16:33:04 -0800722 spin_unlock(&cpa_lock);
723 base = alloc_pages(GFP_KERNEL | __GFP_NOTRACK, 0);
Christian Borntraeger288cf3c2016-03-15 14:57:33 -0700724 if (!debug_pagealloc_enabled())
Wen Congyangae9aae92013-02-22 16:33:04 -0800725 spin_lock(&cpa_lock);
726 if (!base)
727 return -ENOMEM;
728
Borislav Petkov82f07122013-10-31 17:25:07 +0100729 if (__split_large_page(cpa, kpte, address, base))
Wen Congyangae9aae92013-02-22 16:33:04 -0800730 __free_page(base);
731
732 return 0;
733}
734
Dave Hansen8f0baad2017-08-30 16:23:00 -0700735static bool try_to_free_pte_page(struct cpa_data *cpa, pte_t *pte)
Borislav Petkov52a628f2013-10-31 17:25:06 +0100736{
737 int i;
738
Dave Hansen8f0baad2017-08-30 16:23:00 -0700739 if (!(cpa->flags & CPA_FREE_PAGETABLES))
740 return false;
741
Borislav Petkov52a628f2013-10-31 17:25:06 +0100742 for (i = 0; i < PTRS_PER_PTE; i++)
743 if (!pte_none(pte[i]))
744 return false;
745
746 free_page((unsigned long)pte);
747 return true;
748}
749
Dave Hansen8f0baad2017-08-30 16:23:00 -0700750static bool try_to_free_pmd_page(struct cpa_data *cpa, pmd_t *pmd)
Borislav Petkov52a628f2013-10-31 17:25:06 +0100751{
752 int i;
753
Dave Hansen8f0baad2017-08-30 16:23:00 -0700754 if (!(cpa->flags & CPA_FREE_PAGETABLES))
755 return false;
756
Borislav Petkov52a628f2013-10-31 17:25:06 +0100757 for (i = 0; i < PTRS_PER_PMD; i++)
758 if (!pmd_none(pmd[i]))
759 return false;
760
761 free_page((unsigned long)pmd);
762 return true;
763}
764
Dave Hansen8f0baad2017-08-30 16:23:00 -0700765static bool unmap_pte_range(struct cpa_data *cpa, pmd_t *pmd,
766 unsigned long start,
767 unsigned long end)
Borislav Petkov52a628f2013-10-31 17:25:06 +0100768{
769 pte_t *pte = pte_offset_kernel(pmd, start);
770
771 while (start < end) {
772 set_pte(pte, __pte(0));
773
774 start += PAGE_SIZE;
775 pte++;
776 }
777
Dave Hansen8f0baad2017-08-30 16:23:00 -0700778 if (try_to_free_pte_page(cpa, (pte_t *)pmd_page_vaddr(*pmd))) {
Borislav Petkov52a628f2013-10-31 17:25:06 +0100779 pmd_clear(pmd);
780 return true;
781 }
782 return false;
783}
784
Dave Hansen8f0baad2017-08-30 16:23:00 -0700785static void __unmap_pmd_range(struct cpa_data *cpa, pud_t *pud, pmd_t *pmd,
Borislav Petkov52a628f2013-10-31 17:25:06 +0100786 unsigned long start, unsigned long end)
787{
Dave Hansen8f0baad2017-08-30 16:23:00 -0700788 if (unmap_pte_range(cpa, pmd, start, end))
789 if (try_to_free_pmd_page(cpa, (pmd_t *)pud_page_vaddr(*pud)))
Borislav Petkov52a628f2013-10-31 17:25:06 +0100790 pud_clear(pud);
791}
792
Dave Hansen8f0baad2017-08-30 16:23:00 -0700793static void unmap_pmd_range(struct cpa_data *cpa, pud_t *pud,
794 unsigned long start, unsigned long end)
Borislav Petkov52a628f2013-10-31 17:25:06 +0100795{
796 pmd_t *pmd = pmd_offset(pud, start);
797
798 /*
799 * Not on a 2MB page boundary?
800 */
801 if (start & (PMD_SIZE - 1)) {
802 unsigned long next_page = (start + PMD_SIZE) & PMD_MASK;
803 unsigned long pre_end = min_t(unsigned long, end, next_page);
804
Dave Hansen8f0baad2017-08-30 16:23:00 -0700805 __unmap_pmd_range(cpa, pud, pmd, start, pre_end);
Borislav Petkov52a628f2013-10-31 17:25:06 +0100806
807 start = pre_end;
808 pmd++;
809 }
810
811 /*
812 * Try to unmap in 2M chunks.
813 */
814 while (end - start >= PMD_SIZE) {
815 if (pmd_large(*pmd))
816 pmd_clear(pmd);
817 else
Dave Hansen8f0baad2017-08-30 16:23:00 -0700818 __unmap_pmd_range(cpa, pud, pmd,
819 start, start + PMD_SIZE);
Borislav Petkov52a628f2013-10-31 17:25:06 +0100820
821 start += PMD_SIZE;
822 pmd++;
823 }
824
825 /*
826 * 4K leftovers?
827 */
828 if (start < end)
Dave Hansen8f0baad2017-08-30 16:23:00 -0700829 return __unmap_pmd_range(cpa, pud, pmd, start, end);
Borislav Petkov52a628f2013-10-31 17:25:06 +0100830
831 /*
832 * Try again to free the PMD page if haven't succeeded above.
833 */
834 if (!pud_none(*pud))
Dave Hansen8f0baad2017-08-30 16:23:00 -0700835 if (try_to_free_pmd_page(cpa, (pmd_t *)pud_page_vaddr(*pud)))
Borislav Petkov52a628f2013-10-31 17:25:06 +0100836 pud_clear(pud);
837}
Borislav Petkov0bb8aee2013-10-31 17:25:05 +0100838
Dave Hansen8f0baad2017-08-30 16:23:00 -0700839static void __unmap_pud_range(struct cpa_data *cpa, pgd_t *pgd,
840 unsigned long start,
841 unsigned long end)
Borislav Petkov0bb8aee2013-10-31 17:25:05 +0100842{
843 pud_t *pud = pud_offset(pgd, start);
844
845 /*
846 * Not on a GB page boundary?
847 */
848 if (start & (PUD_SIZE - 1)) {
849 unsigned long next_page = (start + PUD_SIZE) & PUD_MASK;
850 unsigned long pre_end = min_t(unsigned long, end, next_page);
851
Dave Hansen8f0baad2017-08-30 16:23:00 -0700852 unmap_pmd_range(cpa, pud, start, pre_end);
Borislav Petkov0bb8aee2013-10-31 17:25:05 +0100853
854 start = pre_end;
855 pud++;
856 }
857
858 /*
859 * Try to unmap in 1G chunks?
860 */
861 while (end - start >= PUD_SIZE) {
862
863 if (pud_large(*pud))
864 pud_clear(pud);
865 else
Dave Hansen8f0baad2017-08-30 16:23:00 -0700866 unmap_pmd_range(cpa, pud, start, start + PUD_SIZE);
Borislav Petkov0bb8aee2013-10-31 17:25:05 +0100867
868 start += PUD_SIZE;
869 pud++;
870 }
871
872 /*
873 * 2M leftovers?
874 */
875 if (start < end)
Dave Hansen8f0baad2017-08-30 16:23:00 -0700876 unmap_pmd_range(cpa, pud, start, end);
Borislav Petkov0bb8aee2013-10-31 17:25:05 +0100877
878 /*
879 * No need to try to free the PUD page because we'll free it in
880 * populate_pgd's error path
881 */
882}
883
Dave Hansen8f0baad2017-08-30 16:23:00 -0700884static void unmap_pud_range(pgd_t *pgd, unsigned long start, unsigned long end)
885{
886 struct cpa_data cpa = {
887 .flags = CPA_FREE_PAGETABLES,
888 };
889
890 __unmap_pud_range(&cpa, pgd, start, end);
891}
892
893void unmap_pud_range_nofree(pgd_t *pgd, unsigned long start, unsigned long end)
894{
895 struct cpa_data cpa = {
896 .flags = 0,
897 };
898
899 __unmap_pud_range(&cpa, pgd, start, end);
900}
901
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100902static int alloc_pte_page(pmd_t *pmd)
903{
904 pte_t *pte = (pte_t *)get_zeroed_page(GFP_KERNEL | __GFP_NOTRACK);
905 if (!pte)
906 return -1;
907
908 set_pmd(pmd, __pmd(__pa(pte) | _KERNPG_TABLE));
909 return 0;
910}
911
Borislav Petkov4b235382013-10-31 17:25:02 +0100912static int alloc_pmd_page(pud_t *pud)
913{
914 pmd_t *pmd = (pmd_t *)get_zeroed_page(GFP_KERNEL | __GFP_NOTRACK);
915 if (!pmd)
916 return -1;
917
918 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE));
919 return 0;
920}
921
Borislav Petkovc6b6f362013-10-31 17:25:04 +0100922static void populate_pte(struct cpa_data *cpa,
923 unsigned long start, unsigned long end,
924 unsigned num_pages, pmd_t *pmd, pgprot_t pgprot)
925{
926 pte_t *pte;
927
928 pte = pte_offset_kernel(pmd, start);
929
Sai Praneeth3976301502016-02-17 12:35:56 +0000930 /*
931 * Set the GLOBAL flags only if the PRESENT flag is
932 * set otherwise pte_present will return true even on
933 * a non present pte. The canon_pgprot will clear
934 * _PAGE_GLOBAL for the ancient hardware that doesn't
935 * support it.
936 */
937 if (pgprot_val(pgprot) & _PAGE_PRESENT)
938 pgprot_val(pgprot) |= _PAGE_GLOBAL;
939 else
940 pgprot_val(pgprot) &= ~_PAGE_GLOBAL;
941
942 pgprot = canon_pgprot(pgprot);
943
Borislav Petkovc6b6f362013-10-31 17:25:04 +0100944 while (num_pages-- && start < end) {
Matt Flemingedc3b912015-11-27 21:09:31 +0000945 set_pte(pte, pfn_pte(cpa->pfn, pgprot));
Borislav Petkovc6b6f362013-10-31 17:25:04 +0100946
947 start += PAGE_SIZE;
Matt Flemingedc3b912015-11-27 21:09:31 +0000948 cpa->pfn++;
Borislav Petkovc6b6f362013-10-31 17:25:04 +0100949 pte++;
950 }
951}
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100952
Matt Fleminge535ec02016-09-20 14:26:21 +0100953static long populate_pmd(struct cpa_data *cpa,
954 unsigned long start, unsigned long end,
955 unsigned num_pages, pud_t *pud, pgprot_t pgprot)
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100956{
Matt Fleminge535ec02016-09-20 14:26:21 +0100957 long cur_pages = 0;
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100958 pmd_t *pmd;
Juergen Grossf5b28312014-11-03 14:02:02 +0100959 pgprot_t pmd_pgprot;
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100960
961 /*
962 * Not on a 2M boundary?
963 */
964 if (start & (PMD_SIZE - 1)) {
965 unsigned long pre_end = start + (num_pages << PAGE_SHIFT);
966 unsigned long next_page = (start + PMD_SIZE) & PMD_MASK;
967
968 pre_end = min_t(unsigned long, pre_end, next_page);
969 cur_pages = (pre_end - start) >> PAGE_SHIFT;
970 cur_pages = min_t(unsigned int, num_pages, cur_pages);
971
972 /*
973 * Need a PTE page?
974 */
975 pmd = pmd_offset(pud, start);
976 if (pmd_none(*pmd))
977 if (alloc_pte_page(pmd))
978 return -1;
979
980 populate_pte(cpa, start, pre_end, cur_pages, pmd, pgprot);
981
982 start = pre_end;
983 }
984
985 /*
986 * We mapped them all?
987 */
988 if (num_pages == cur_pages)
989 return cur_pages;
990
Juergen Grossf5b28312014-11-03 14:02:02 +0100991 pmd_pgprot = pgprot_4k_2_large(pgprot);
992
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100993 while (end - start >= PMD_SIZE) {
994
995 /*
996 * We cannot use a 1G page so allocate a PMD page if needed.
997 */
998 if (pud_none(*pud))
999 if (alloc_pmd_page(pud))
1000 return -1;
1001
1002 pmd = pmd_offset(pud, start);
1003
Andi Kleen7e464372018-08-07 15:09:39 -07001004 set_pmd(pmd, pmd_mkhuge(pfn_pmd(cpa->pfn,
1005 canon_pgprot(pmd_pgprot))));
Borislav Petkovf900a4b2013-10-31 17:25:03 +01001006
1007 start += PMD_SIZE;
Matt Flemingedc3b912015-11-27 21:09:31 +00001008 cpa->pfn += PMD_SIZE >> PAGE_SHIFT;
Borislav Petkovf900a4b2013-10-31 17:25:03 +01001009 cur_pages += PMD_SIZE >> PAGE_SHIFT;
1010 }
1011
1012 /*
1013 * Map trailing 4K pages.
1014 */
1015 if (start < end) {
1016 pmd = pmd_offset(pud, start);
1017 if (pmd_none(*pmd))
1018 if (alloc_pte_page(pmd))
1019 return -1;
1020
1021 populate_pte(cpa, start, end, num_pages - cur_pages,
1022 pmd, pgprot);
1023 }
1024 return num_pages;
1025}
Borislav Petkov4b235382013-10-31 17:25:02 +01001026
Matt Fleminge535ec02016-09-20 14:26:21 +01001027static long populate_pud(struct cpa_data *cpa, unsigned long start, pgd_t *pgd,
1028 pgprot_t pgprot)
Borislav Petkov4b235382013-10-31 17:25:02 +01001029{
1030 pud_t *pud;
1031 unsigned long end;
Matt Fleminge535ec02016-09-20 14:26:21 +01001032 long cur_pages = 0;
Juergen Grossf5b28312014-11-03 14:02:02 +01001033 pgprot_t pud_pgprot;
Borislav Petkov4b235382013-10-31 17:25:02 +01001034
1035 end = start + (cpa->numpages << PAGE_SHIFT);
1036
1037 /*
1038 * Not on a Gb page boundary? => map everything up to it with
1039 * smaller pages.
1040 */
1041 if (start & (PUD_SIZE - 1)) {
1042 unsigned long pre_end;
1043 unsigned long next_page = (start + PUD_SIZE) & PUD_MASK;
1044
1045 pre_end = min_t(unsigned long, end, next_page);
1046 cur_pages = (pre_end - start) >> PAGE_SHIFT;
1047 cur_pages = min_t(int, (int)cpa->numpages, cur_pages);
1048
1049 pud = pud_offset(pgd, start);
1050
1051 /*
1052 * Need a PMD page?
1053 */
1054 if (pud_none(*pud))
1055 if (alloc_pmd_page(pud))
1056 return -1;
1057
1058 cur_pages = populate_pmd(cpa, start, pre_end, cur_pages,
1059 pud, pgprot);
1060 if (cur_pages < 0)
1061 return cur_pages;
1062
1063 start = pre_end;
1064 }
1065
1066 /* We mapped them all? */
1067 if (cpa->numpages == cur_pages)
1068 return cur_pages;
1069
1070 pud = pud_offset(pgd, start);
Juergen Grossf5b28312014-11-03 14:02:02 +01001071 pud_pgprot = pgprot_4k_2_large(pgprot);
Borislav Petkov4b235382013-10-31 17:25:02 +01001072
1073 /*
1074 * Map everything starting from the Gb boundary, possibly with 1G pages
1075 */
Borislav Petkovb8291adc2016-03-29 17:41:58 +02001076 while (boot_cpu_has(X86_FEATURE_GBPAGES) && end - start >= PUD_SIZE) {
Andi Kleen7e464372018-08-07 15:09:39 -07001077 set_pud(pud, pud_mkhuge(pfn_pud(cpa->pfn,
1078 canon_pgprot(pud_pgprot))));
Borislav Petkov4b235382013-10-31 17:25:02 +01001079
1080 start += PUD_SIZE;
Matt Flemingedc3b912015-11-27 21:09:31 +00001081 cpa->pfn += PUD_SIZE >> PAGE_SHIFT;
Borislav Petkov4b235382013-10-31 17:25:02 +01001082 cur_pages += PUD_SIZE >> PAGE_SHIFT;
1083 pud++;
1084 }
1085
1086 /* Map trailing leftover */
1087 if (start < end) {
Matt Fleminge535ec02016-09-20 14:26:21 +01001088 long tmp;
Borislav Petkov4b235382013-10-31 17:25:02 +01001089
1090 pud = pud_offset(pgd, start);
1091 if (pud_none(*pud))
1092 if (alloc_pmd_page(pud))
1093 return -1;
1094
1095 tmp = populate_pmd(cpa, start, end, cpa->numpages - cur_pages,
1096 pud, pgprot);
1097 if (tmp < 0)
1098 return cur_pages;
1099
1100 cur_pages += tmp;
1101 }
1102 return cur_pages;
1103}
Borislav Petkovf3f72962013-10-31 17:25:01 +01001104
1105/*
1106 * Restrictions for kernel page table do not necessarily apply when mapping in
1107 * an alternate PGD.
1108 */
1109static int populate_pgd(struct cpa_data *cpa, unsigned long addr)
1110{
1111 pgprot_t pgprot = __pgprot(_KERNPG_TABLE);
Borislav Petkovf3f72962013-10-31 17:25:01 +01001112 pud_t *pud = NULL; /* shut up gcc */
Borislav Petkov42a54772014-01-18 12:48:16 +01001113 pgd_t *pgd_entry;
Matt Fleminge535ec02016-09-20 14:26:21 +01001114 long ret;
Borislav Petkovf3f72962013-10-31 17:25:01 +01001115
1116 pgd_entry = cpa->pgd + pgd_index(addr);
1117
1118 /*
1119 * Allocate a PUD page and hand it down for mapping.
1120 */
1121 if (pgd_none(*pgd_entry)) {
1122 pud = (pud_t *)get_zeroed_page(GFP_KERNEL | __GFP_NOTRACK);
1123 if (!pud)
1124 return -1;
Andy Lutomirski530dd8d2016-07-22 21:58:08 -07001125
1126 set_pgd(pgd_entry, __pgd(__pa(pud) | _KERNPG_TABLE));
Borislav Petkovf3f72962013-10-31 17:25:01 +01001127 }
1128
1129 pgprot_val(pgprot) &= ~pgprot_val(cpa->mask_clr);
1130 pgprot_val(pgprot) |= pgprot_val(cpa->mask_set);
1131
1132 ret = populate_pud(cpa, addr, pgd_entry, pgprot);
Borislav Petkov0bb8aee2013-10-31 17:25:05 +01001133 if (ret < 0) {
Andy Lutomirski55920d32016-07-23 09:59:28 -07001134 /*
1135 * Leave the PUD page in place in case some other CPU or thread
1136 * already found it, but remove any useless entries we just
1137 * added to it.
1138 */
Andy Lutomirski360cb4d2016-07-14 13:22:50 -07001139 unmap_pud_range(pgd_entry, addr,
Borislav Petkov0bb8aee2013-10-31 17:25:05 +01001140 addr + (cpa->numpages << PAGE_SHIFT));
Borislav Petkov0bb8aee2013-10-31 17:25:05 +01001141 return ret;
1142 }
Borislav Petkov42a54772014-01-18 12:48:16 +01001143
Borislav Petkovf3f72962013-10-31 17:25:01 +01001144 cpa->numpages = ret;
1145 return 0;
1146}
1147
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001148static int __cpa_process_fault(struct cpa_data *cpa, unsigned long vaddr,
1149 int primary)
1150{
Matt Fleming7fc84422016-04-25 21:06:35 +01001151 if (cpa->pgd) {
1152 /*
1153 * Right now, we only execute this code path when mapping
1154 * the EFI virtual memory map regions, no other users
1155 * provide a ->pgd value. This may change in the future.
1156 */
Borislav Petkov82f07122013-10-31 17:25:07 +01001157 return populate_pgd(cpa, vaddr);
Matt Fleming7fc84422016-04-25 21:06:35 +01001158 }
Borislav Petkov82f07122013-10-31 17:25:07 +01001159
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001160 /*
1161 * Ignore all non primary paths.
1162 */
Jan Beulich405e11332016-02-10 02:03:00 -07001163 if (!primary) {
1164 cpa->numpages = 1;
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001165 return 0;
Jan Beulich405e11332016-02-10 02:03:00 -07001166 }
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001167
1168 /*
1169 * Ignore the NULL PTE for kernel identity mapping, as it is expected
1170 * to have holes.
1171 * Also set numpages to '1' indicating that we processed cpa req for
1172 * one virtual address page and its pfn. TBD: numpages can be set based
1173 * on the initial value and the level returned by lookup_address().
1174 */
1175 if (within(vaddr, PAGE_OFFSET,
1176 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT))) {
1177 cpa->numpages = 1;
1178 cpa->pfn = __pa(vaddr) >> PAGE_SHIFT;
1179 return 0;
1180 } else {
1181 WARN(1, KERN_WARNING "CPA: called for zero pte. "
1182 "vaddr = %lx cpa->vaddr = %lx\n", vaddr,
1183 *cpa->vaddr);
1184
1185 return -EFAULT;
1186 }
1187}
1188
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001189static int __change_page_attr(struct cpa_data *cpa, int primary)
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001190{
Shaohua Lid75586a2008-08-21 10:46:06 +08001191 unsigned long address;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +01001192 int do_split, err;
1193 unsigned int level;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001194 pte_t *kpte, old_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001196 if (cpa->flags & CPA_PAGES_ARRAY) {
1197 struct page *page = cpa->pages[cpa->curpage];
1198 if (unlikely(PageHighMem(page)))
1199 return 0;
1200 address = (unsigned long)page_address(page);
1201 } else if (cpa->flags & CPA_ARRAY)
Shaohua Lid75586a2008-08-21 10:46:06 +08001202 address = cpa->vaddr[cpa->curpage];
1203 else
1204 address = *cpa->vaddr;
Ingo Molnar97f99fe2008-01-30 13:33:55 +01001205repeat:
Borislav Petkov82f07122013-10-31 17:25:07 +01001206 kpte = _lookup_address_cpa(cpa, address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 if (!kpte)
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001208 return __cpa_process_fault(cpa, address, primary);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001209
1210 old_pte = *kpte;
Dave Hansendcb32d92016-07-07 17:19:15 -07001211 if (pte_none(old_pte))
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001212 return __cpa_process_fault(cpa, address, primary);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001213
Thomas Gleixner30551bb2008-01-30 13:34:04 +01001214 if (level == PG_LEVEL_4K) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001215 pte_t new_pte;
Arjan van de Ven626c2c92008-02-04 16:48:05 +01001216 pgprot_t new_prot = pte_pgprot(old_pte);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001217 unsigned long pfn = pte_pfn(old_pte);
Thomas Gleixnera72a08a2008-01-30 13:34:07 +01001218
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001219 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
1220 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Ingo Molnar86f03982008-01-30 13:34:09 +01001221
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001222 new_prot = static_protections(new_prot, address, pfn);
Ingo Molnar86f03982008-01-30 13:34:09 +01001223
Arjan van de Ven626c2c92008-02-04 16:48:05 +01001224 /*
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -08001225 * Set the GLOBAL flags only if the PRESENT flag is
1226 * set otherwise pte_present will return true even on
1227 * a non present pte. The canon_pgprot will clear
1228 * _PAGE_GLOBAL for the ancient hardware that doesn't
1229 * support it.
1230 */
1231 if (pgprot_val(new_prot) & _PAGE_PRESENT)
1232 pgprot_val(new_prot) |= _PAGE_GLOBAL;
1233 else
1234 pgprot_val(new_prot) &= ~_PAGE_GLOBAL;
1235
1236 /*
Arjan van de Ven626c2c92008-02-04 16:48:05 +01001237 * We need to keep the pfn from the existing PTE,
1238 * after all we're only going to change it's attributes
1239 * not the memory it points to
1240 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001241 new_pte = pfn_pte(pfn, canon_pgprot(new_prot));
1242 cpa->pfn = pfn;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +01001243 /*
1244 * Do we really change anything ?
1245 */
1246 if (pte_val(old_pte) != pte_val(new_pte)) {
1247 set_pte_atomic(kpte, new_pte);
Shaohua Lid75586a2008-08-21 10:46:06 +08001248 cpa->flags |= CPA_FLUSHTLB;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +01001249 }
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +01001250 cpa->numpages = 1;
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001251 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 }
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001253
1254 /*
1255 * Check, whether we can keep the large page intact
1256 * and just change the pte:
1257 */
Ingo Molnarbeaff632008-02-04 16:48:09 +01001258 do_split = try_preserve_large_page(kpte, address, cpa);
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001259 /*
1260 * When the range fits into the existing large page,
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +01001261 * return. cp->numpages and cpa->tlbflush have been updated in
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001262 * try_large_page:
1263 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +01001264 if (do_split <= 0)
1265 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001266
1267 /*
1268 * We have to split the large page:
1269 */
Borislav Petkov82f07122013-10-31 17:25:07 +01001270 err = split_large_page(cpa, kpte, address);
Ingo Molnar87f7f8f2008-02-04 16:48:10 +01001271 if (!err) {
Suresh Siddhaad5ca552008-09-23 14:00:42 -07001272 /*
1273 * Do a global flush tlb after splitting the large page
1274 * and before we do the actual change page attribute in the PTE.
1275 *
1276 * With out this, we violate the TLB application note, that says
1277 * "The TLBs may contain both ordinary and large-page
1278 * translations for a 4-KByte range of linear addresses. This
1279 * may occur if software modifies the paging structures so that
1280 * the page size used for the address range changes. If the two
1281 * translations differ with respect to page frame or attributes
1282 * (e.g., permissions), processor behavior is undefined and may
1283 * be implementation-specific."
1284 *
1285 * We do this global tlb flush inside the cpa_lock, so that we
1286 * don't allow any other cpu, with stale tlb entries change the
1287 * page attribute in parallel, that also falls into the
1288 * just split large page entry.
1289 */
1290 flush_tlb_all();
Ingo Molnar87f7f8f2008-02-04 16:48:10 +01001291 goto repeat;
1292 }
Ingo Molnarbeaff632008-02-04 16:48:09 +01001293
Ingo Molnar87f7f8f2008-02-04 16:48:10 +01001294 return err;
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001295}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001297static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias);
1298
1299static int cpa_process_alias(struct cpa_data *cpa)
Ingo Molnar44af6c42008-01-30 13:34:03 +01001300{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001301 struct cpa_data alias_cpa;
Tejun Heo992f4c12009-06-22 11:56:24 +09001302 unsigned long laddr = (unsigned long)__va(cpa->pfn << PAGE_SHIFT);
Tejun Heoe933a732009-08-14 15:00:53 +09001303 unsigned long vaddr;
Tejun Heo992f4c12009-06-22 11:56:24 +09001304 int ret;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001305
Yinghai Lu8eb57792012-11-16 19:38:49 -08001306 if (!pfn_range_is_mapped(cpa->pfn, cpa->pfn + 1))
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001307 return 0;
1308
Thomas Gleixnerf34b4392008-02-15 22:17:57 +01001309 /*
1310 * No need to redo, when the primary call touched the direct
1311 * mapping already:
1312 */
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001313 if (cpa->flags & CPA_PAGES_ARRAY) {
1314 struct page *page = cpa->pages[cpa->curpage];
1315 if (unlikely(PageHighMem(page)))
1316 return 0;
1317 vaddr = (unsigned long)page_address(page);
1318 } else if (cpa->flags & CPA_ARRAY)
Shaohua Lid75586a2008-08-21 10:46:06 +08001319 vaddr = cpa->vaddr[cpa->curpage];
1320 else
1321 vaddr = *cpa->vaddr;
1322
1323 if (!(within(vaddr, PAGE_OFFSET,
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001324 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT)))) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001325
Thomas Gleixnerf34b4392008-02-15 22:17:57 +01001326 alias_cpa = *cpa;
Tejun Heo992f4c12009-06-22 11:56:24 +09001327 alias_cpa.vaddr = &laddr;
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001328 alias_cpa.flags &= ~(CPA_PAGES_ARRAY | CPA_ARRAY);
Shaohua Lid75586a2008-08-21 10:46:06 +08001329
Thomas Gleixnerf34b4392008-02-15 22:17:57 +01001330 ret = __change_page_attr_set_clr(&alias_cpa, 0);
Tejun Heo992f4c12009-06-22 11:56:24 +09001331 if (ret)
1332 return ret;
Thomas Gleixnerf34b4392008-02-15 22:17:57 +01001333 }
Ingo Molnar44af6c42008-01-30 13:34:03 +01001334
Arjan van de Ven488fd992008-01-30 13:34:07 +01001335#ifdef CONFIG_X86_64
Thomas Gleixner08797502008-01-30 13:34:09 +01001336 /*
Tejun Heo992f4c12009-06-22 11:56:24 +09001337 * If the primary call didn't touch the high mapping already
1338 * and the physical address is inside the kernel map, we need
Thomas Gleixner08797502008-01-30 13:34:09 +01001339 * to touch the high mapped kernel as well:
1340 */
Tejun Heo992f4c12009-06-22 11:56:24 +09001341 if (!within(vaddr, (unsigned long)_text, _brk_end) &&
Thomas Garnier4ff53082016-06-15 12:05:45 -07001342 within_inclusive(cpa->pfn, highmap_start_pfn(),
1343 highmap_end_pfn())) {
Tejun Heo992f4c12009-06-22 11:56:24 +09001344 unsigned long temp_cpa_vaddr = (cpa->pfn << PAGE_SHIFT) +
1345 __START_KERNEL_map - phys_base;
1346 alias_cpa = *cpa;
1347 alias_cpa.vaddr = &temp_cpa_vaddr;
1348 alias_cpa.flags &= ~(CPA_PAGES_ARRAY | CPA_ARRAY);
Thomas Gleixner08797502008-01-30 13:34:09 +01001349
Tejun Heo992f4c12009-06-22 11:56:24 +09001350 /*
1351 * The high mapping range is imprecise, so ignore the
1352 * return value.
1353 */
1354 __change_page_attr_set_clr(&alias_cpa, 0);
1355 }
Thomas Gleixner08797502008-01-30 13:34:09 +01001356#endif
Tejun Heo992f4c12009-06-22 11:56:24 +09001357
1358 return 0;
Ingo Molnar44af6c42008-01-30 13:34:03 +01001359}
1360
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001361static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias)
Thomas Gleixnerff314522008-01-30 13:34:08 +01001362{
Matt Fleminge535ec02016-09-20 14:26:21 +01001363 unsigned long numpages = cpa->numpages;
1364 int ret;
Thomas Gleixnerff314522008-01-30 13:34:08 +01001365
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001366 while (numpages) {
1367 /*
1368 * Store the remaining nr of pages for the large page
1369 * preservation check.
1370 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +01001371 cpa->numpages = numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +08001372 /* for array changes, we can't use large page */
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001373 if (cpa->flags & (CPA_ARRAY | CPA_PAGES_ARRAY))
Shaohua Lid75586a2008-08-21 10:46:06 +08001374 cpa->numpages = 1;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001375
Christian Borntraeger288cf3c2016-03-15 14:57:33 -07001376 if (!debug_pagealloc_enabled())
Suresh Siddhaad5ca552008-09-23 14:00:42 -07001377 spin_lock(&cpa_lock);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001378 ret = __change_page_attr(cpa, checkalias);
Christian Borntraeger288cf3c2016-03-15 14:57:33 -07001379 if (!debug_pagealloc_enabled())
Suresh Siddhaad5ca552008-09-23 14:00:42 -07001380 spin_unlock(&cpa_lock);
Thomas Gleixnerff314522008-01-30 13:34:08 +01001381 if (ret)
1382 return ret;
Thomas Gleixnerff314522008-01-30 13:34:08 +01001383
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001384 if (checkalias) {
1385 ret = cpa_process_alias(cpa);
1386 if (ret)
1387 return ret;
1388 }
1389
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001390 /*
1391 * Adjust the number of pages with the result of the
1392 * CPA operation. Either a large page has been
1393 * preserved or a single page update happened.
1394 */
Matt Fleming74256372016-01-29 11:36:10 +00001395 BUG_ON(cpa->numpages > numpages || !cpa->numpages);
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +01001396 numpages -= cpa->numpages;
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001397 if (cpa->flags & (CPA_PAGES_ARRAY | CPA_ARRAY))
Shaohua Lid75586a2008-08-21 10:46:06 +08001398 cpa->curpage++;
1399 else
1400 *cpa->vaddr += cpa->numpages * PAGE_SIZE;
1401
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001402 }
Thomas Gleixnerff314522008-01-30 13:34:08 +01001403 return 0;
1404}
1405
Shaohua Lid75586a2008-08-21 10:46:06 +08001406static int change_page_attr_set_clr(unsigned long *addr, int numpages,
Andi Kleenc9caa022008-03-12 03:53:29 +01001407 pgprot_t mask_set, pgprot_t mask_clr,
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001408 int force_split, int in_flag,
1409 struct page **pages)
Thomas Gleixnerff314522008-01-30 13:34:08 +01001410{
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001411 struct cpa_data cpa;
Ingo Molnarcacf8902008-08-21 13:46:33 +02001412 int ret, cache, checkalias;
Jack Steinerfa526d02009-09-03 12:56:02 -05001413 unsigned long baddr = 0;
Thomas Gleixner331e4062008-02-04 16:48:06 +01001414
Borislav Petkov82f07122013-10-31 17:25:07 +01001415 memset(&cpa, 0, sizeof(cpa));
1416
Thomas Gleixner331e4062008-02-04 16:48:06 +01001417 /*
1418 * Check, if we are requested to change a not supported
1419 * feature:
1420 */
1421 mask_set = canon_pgprot(mask_set);
1422 mask_clr = canon_pgprot(mask_clr);
Andi Kleenc9caa022008-03-12 03:53:29 +01001423 if (!pgprot_val(mask_set) && !pgprot_val(mask_clr) && !force_split)
Thomas Gleixner331e4062008-02-04 16:48:06 +01001424 return 0;
1425
Thomas Gleixner69b14152008-02-13 11:04:50 +01001426 /* Ensure we are PAGE_SIZE aligned */
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001427 if (in_flag & CPA_ARRAY) {
Shaohua Lid75586a2008-08-21 10:46:06 +08001428 int i;
1429 for (i = 0; i < numpages; i++) {
1430 if (addr[i] & ~PAGE_MASK) {
1431 addr[i] &= PAGE_MASK;
1432 WARN_ON_ONCE(1);
1433 }
1434 }
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001435 } else if (!(in_flag & CPA_PAGES_ARRAY)) {
1436 /*
1437 * in_flag of CPA_PAGES_ARRAY implies it is aligned.
1438 * No need to cehck in that case
1439 */
1440 if (*addr & ~PAGE_MASK) {
1441 *addr &= PAGE_MASK;
1442 /*
1443 * People should not be passing in unaligned addresses:
1444 */
1445 WARN_ON_ONCE(1);
1446 }
Jack Steinerfa526d02009-09-03 12:56:02 -05001447 /*
1448 * Save address for cache flush. *addr is modified in the call
1449 * to __change_page_attr_set_clr() below.
1450 */
1451 baddr = *addr;
Thomas Gleixner69b14152008-02-13 11:04:50 +01001452 }
1453
Nick Piggin5843d9a2008-08-01 03:15:21 +02001454 /* Must avoid aliasing mappings in the highmem code */
1455 kmap_flush_unused();
1456
Nick Piggindb64fe02008-10-18 20:27:03 -07001457 vm_unmap_aliases();
1458
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001459 cpa.vaddr = addr;
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001460 cpa.pages = pages;
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001461 cpa.numpages = numpages;
1462 cpa.mask_set = mask_set;
1463 cpa.mask_clr = mask_clr;
Shaohua Lid75586a2008-08-21 10:46:06 +08001464 cpa.flags = 0;
1465 cpa.curpage = 0;
Andi Kleenc9caa022008-03-12 03:53:29 +01001466 cpa.force_split = force_split;
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001467
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001468 if (in_flag & (CPA_ARRAY | CPA_PAGES_ARRAY))
1469 cpa.flags |= in_flag;
Shaohua Lid75586a2008-08-21 10:46:06 +08001470
Thomas Gleixneraf96e442008-02-15 21:49:46 +01001471 /* No alias checking for _NX bit modifications */
1472 checkalias = (pgprot_val(mask_set) | pgprot_val(mask_clr)) != _PAGE_NX;
1473
1474 ret = __change_page_attr_set_clr(&cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +01001475
Thomas Gleixner57a6a462008-01-30 13:34:08 +01001476 /*
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +01001477 * Check whether we really changed something:
1478 */
Shaohua Lid75586a2008-08-21 10:46:06 +08001479 if (!(cpa.flags & CPA_FLUSHTLB))
Shaohua Li1ac2f7d2008-08-04 14:51:24 +08001480 goto out;
Ingo Molnarcacf8902008-08-21 13:46:33 +02001481
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +01001482 /*
Andi Kleen6bb83832008-02-04 16:48:06 +01001483 * No need to flush, when we did not set any of the caching
1484 * attributes:
1485 */
Juergen Grossc06814d2014-11-03 14:01:57 +01001486 cache = !!pgprot2cachemode(mask_set);
Andi Kleen6bb83832008-02-04 16:48:06 +01001487
1488 /*
Borislav Petkovb82ad3d2014-03-12 15:13:04 +01001489 * On success we use CLFLUSH, when the CPU supports it to
1490 * avoid the WBINVD. If the CPU does not support it and in the
H. Peter Anvinf026cfa2012-08-14 09:53:38 -07001491 * error case we fall back to cpa_flush_all (which uses
Borislav Petkovb82ad3d2014-03-12 15:13:04 +01001492 * WBINVD):
Thomas Gleixner57a6a462008-01-30 13:34:08 +01001493 */
Borislav Petkov906bf7f2016-03-29 17:41:59 +02001494 if (!ret && boot_cpu_has(X86_FEATURE_CLFLUSH)) {
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001495 if (cpa.flags & (CPA_PAGES_ARRAY | CPA_ARRAY)) {
1496 cpa_flush_array(addr, numpages, cache,
1497 cpa.flags, pages);
1498 } else
Jack Steinerfa526d02009-09-03 12:56:02 -05001499 cpa_flush_range(baddr, numpages, cache);
Shaohua Lid75586a2008-08-21 10:46:06 +08001500 } else
Andi Kleen6bb83832008-02-04 16:48:06 +01001501 cpa_flush_all(cache);
Ingo Molnarcacf8902008-08-21 13:46:33 +02001502
Thomas Gleixner76ebd052008-02-09 23:24:09 +01001503out:
Thomas Gleixnerff314522008-01-30 13:34:08 +01001504 return ret;
1505}
1506
Shaohua Lid75586a2008-08-21 10:46:06 +08001507static inline int change_page_attr_set(unsigned long *addr, int numpages,
1508 pgprot_t mask, int array)
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001509{
Shaohua Lid75586a2008-08-21 10:46:06 +08001510 return change_page_attr_set_clr(addr, numpages, mask, __pgprot(0), 0,
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001511 (array ? CPA_ARRAY : 0), NULL);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001512}
1513
Shaohua Lid75586a2008-08-21 10:46:06 +08001514static inline int change_page_attr_clear(unsigned long *addr, int numpages,
1515 pgprot_t mask, int array)
Thomas Gleixner72932c72008-01-30 13:34:08 +01001516{
Shaohua Lid75586a2008-08-21 10:46:06 +08001517 return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask, 0,
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001518 (array ? CPA_ARRAY : 0), NULL);
Thomas Gleixner72932c72008-01-30 13:34:08 +01001519}
1520
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001521static inline int cpa_set_pages_array(struct page **pages, int numpages,
1522 pgprot_t mask)
1523{
1524 return change_page_attr_set_clr(NULL, numpages, mask, __pgprot(0), 0,
1525 CPA_PAGES_ARRAY, pages);
1526}
1527
1528static inline int cpa_clear_pages_array(struct page **pages, int numpages,
1529 pgprot_t mask)
1530{
1531 return change_page_attr_set_clr(NULL, numpages, __pgprot(0), mask, 0,
1532 CPA_PAGES_ARRAY, pages);
1533}
1534
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001535int _set_memory_uc(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001536{
Suresh Siddhade33c442008-04-25 17:07:22 -07001537 /*
1538 * for now UC MINUS. see comments in ioremap_nocache()
Luis R. Rodrigueze4b6be332015-05-11 10:15:53 +02001539 * If you really need strong UC use ioremap_uc(), but note
1540 * that you cannot override IO areas with set_memory_*() as
1541 * these helpers cannot work with IO memory.
Suresh Siddhade33c442008-04-25 17:07:22 -07001542 */
Shaohua Lid75586a2008-08-21 10:46:06 +08001543 return change_page_attr_set(&addr, numpages,
Juergen Grossc06814d2014-11-03 14:01:57 +01001544 cachemode2pgprot(_PAGE_CACHE_MODE_UC_MINUS),
1545 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001546}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001547
1548int set_memory_uc(unsigned long addr, int numpages)
1549{
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001550 int ret;
1551
Suresh Siddhade33c442008-04-25 17:07:22 -07001552 /*
1553 * for now UC MINUS. see comments in ioremap_nocache()
1554 */
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001555 ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
Juergen Grosse00c8cc2014-11-03 14:01:59 +01001556 _PAGE_CACHE_MODE_UC_MINUS, NULL);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001557 if (ret)
1558 goto out_err;
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001559
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001560 ret = _set_memory_uc(addr, numpages);
1561 if (ret)
1562 goto out_free;
1563
1564 return 0;
1565
1566out_free:
1567 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
1568out_err:
1569 return ret;
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001570}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001571EXPORT_SYMBOL(set_memory_uc);
1572
H Hartley Sweeten2d070ef2011-11-15 14:49:00 -08001573static int _set_memory_array(unsigned long *addr, int addrinarray,
Juergen Grossc06814d2014-11-03 14:01:57 +01001574 enum page_cache_mode new_type)
Shaohua Lid75586a2008-08-21 10:46:06 +08001575{
Toshi Kani623dffb2015-06-04 18:55:20 +02001576 enum page_cache_mode set_type;
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001577 int i, j;
1578 int ret;
1579
Shaohua Lid75586a2008-08-21 10:46:06 +08001580 for (i = 0; i < addrinarray; i++) {
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001581 ret = reserve_memtype(__pa(addr[i]), __pa(addr[i]) + PAGE_SIZE,
Pauli Nieminen4f646252010-04-01 12:45:01 +00001582 new_type, NULL);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001583 if (ret)
1584 goto out_free;
Shaohua Lid75586a2008-08-21 10:46:06 +08001585 }
1586
Toshi Kani623dffb2015-06-04 18:55:20 +02001587 /* If WC, set to UC- first and then WC */
1588 set_type = (new_type == _PAGE_CACHE_MODE_WC) ?
1589 _PAGE_CACHE_MODE_UC_MINUS : new_type;
1590
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001591 ret = change_page_attr_set(addr, addrinarray,
Toshi Kani623dffb2015-06-04 18:55:20 +02001592 cachemode2pgprot(set_type), 1);
Pauli Nieminen4f646252010-04-01 12:45:01 +00001593
Juergen Grossc06814d2014-11-03 14:01:57 +01001594 if (!ret && new_type == _PAGE_CACHE_MODE_WC)
Pauli Nieminen4f646252010-04-01 12:45:01 +00001595 ret = change_page_attr_set_clr(addr, addrinarray,
Juergen Grossc06814d2014-11-03 14:01:57 +01001596 cachemode2pgprot(
1597 _PAGE_CACHE_MODE_WC),
Pauli Nieminen4f646252010-04-01 12:45:01 +00001598 __pgprot(_PAGE_CACHE_MASK),
1599 0, CPA_ARRAY, NULL);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001600 if (ret)
1601 goto out_free;
Rene Hermanc5e147c2008-08-22 01:02:20 +02001602
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001603 return 0;
1604
1605out_free:
1606 for (j = 0; j < i; j++)
1607 free_memtype(__pa(addr[j]), __pa(addr[j]) + PAGE_SIZE);
1608
1609 return ret;
Shaohua Lid75586a2008-08-21 10:46:06 +08001610}
Pauli Nieminen4f646252010-04-01 12:45:01 +00001611
1612int set_memory_array_uc(unsigned long *addr, int addrinarray)
1613{
Juergen Grossc06814d2014-11-03 14:01:57 +01001614 return _set_memory_array(addr, addrinarray, _PAGE_CACHE_MODE_UC_MINUS);
Pauli Nieminen4f646252010-04-01 12:45:01 +00001615}
Shaohua Lid75586a2008-08-21 10:46:06 +08001616EXPORT_SYMBOL(set_memory_array_uc);
1617
Pauli Nieminen4f646252010-04-01 12:45:01 +00001618int set_memory_array_wc(unsigned long *addr, int addrinarray)
1619{
Juergen Grossc06814d2014-11-03 14:01:57 +01001620 return _set_memory_array(addr, addrinarray, _PAGE_CACHE_MODE_WC);
Pauli Nieminen4f646252010-04-01 12:45:01 +00001621}
1622EXPORT_SYMBOL(set_memory_array_wc);
1623
Toshi Kani623dffb2015-06-04 18:55:20 +02001624int set_memory_array_wt(unsigned long *addr, int addrinarray)
1625{
1626 return _set_memory_array(addr, addrinarray, _PAGE_CACHE_MODE_WT);
1627}
1628EXPORT_SYMBOL_GPL(set_memory_array_wt);
1629
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -07001630int _set_memory_wc(unsigned long addr, int numpages)
1631{
venkatesh.pallipadi@intel.com3869c4a2009-04-09 14:26:50 -07001632 int ret;
Pallipadi, Venkateshbdc63402009-07-30 14:43:19 -07001633 unsigned long addr_copy = addr;
1634
venkatesh.pallipadi@intel.com3869c4a2009-04-09 14:26:50 -07001635 ret = change_page_attr_set(&addr, numpages,
Juergen Grossc06814d2014-11-03 14:01:57 +01001636 cachemode2pgprot(_PAGE_CACHE_MODE_UC_MINUS),
1637 0);
venkatesh.pallipadi@intel.com3869c4a2009-04-09 14:26:50 -07001638 if (!ret) {
Pallipadi, Venkateshbdc63402009-07-30 14:43:19 -07001639 ret = change_page_attr_set_clr(&addr_copy, numpages,
Juergen Grossc06814d2014-11-03 14:01:57 +01001640 cachemode2pgprot(
1641 _PAGE_CACHE_MODE_WC),
Pallipadi, Venkateshbdc63402009-07-30 14:43:19 -07001642 __pgprot(_PAGE_CACHE_MASK),
1643 0, 0, NULL);
venkatesh.pallipadi@intel.com3869c4a2009-04-09 14:26:50 -07001644 }
1645 return ret;
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -07001646}
1647
1648int set_memory_wc(unsigned long addr, int numpages)
1649{
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001650 int ret;
1651
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001652 ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
Juergen Grosse00c8cc2014-11-03 14:01:59 +01001653 _PAGE_CACHE_MODE_WC, NULL);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001654 if (ret)
Toshi Kani623dffb2015-06-04 18:55:20 +02001655 return ret;
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -07001656
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001657 ret = _set_memory_wc(addr, numpages);
1658 if (ret)
Toshi Kani623dffb2015-06-04 18:55:20 +02001659 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001660
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001661 return ret;
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -07001662}
1663EXPORT_SYMBOL(set_memory_wc);
1664
Toshi Kani623dffb2015-06-04 18:55:20 +02001665int _set_memory_wt(unsigned long addr, int numpages)
1666{
1667 return change_page_attr_set(&addr, numpages,
1668 cachemode2pgprot(_PAGE_CACHE_MODE_WT), 0);
1669}
1670
1671int set_memory_wt(unsigned long addr, int numpages)
1672{
1673 int ret;
1674
1675 ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
1676 _PAGE_CACHE_MODE_WT, NULL);
1677 if (ret)
1678 return ret;
1679
1680 ret = _set_memory_wt(addr, numpages);
1681 if (ret)
1682 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
1683
1684 return ret;
1685}
1686EXPORT_SYMBOL_GPL(set_memory_wt);
1687
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001688int _set_memory_wb(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001689{
Juergen Grossc06814d2014-11-03 14:01:57 +01001690 /* WB cache mode is hard wired to all cache attribute bits being 0 */
Shaohua Lid75586a2008-08-21 10:46:06 +08001691 return change_page_attr_clear(&addr, numpages,
1692 __pgprot(_PAGE_CACHE_MASK), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001693}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001694
1695int set_memory_wb(unsigned long addr, int numpages)
1696{
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001697 int ret;
1698
1699 ret = _set_memory_wb(addr, numpages);
1700 if (ret)
1701 return ret;
1702
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -07001703 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001704 return 0;
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001705}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001706EXPORT_SYMBOL(set_memory_wb);
1707
Shaohua Lid75586a2008-08-21 10:46:06 +08001708int set_memory_array_wb(unsigned long *addr, int addrinarray)
1709{
1710 int i;
venkatesh.pallipadi@intel.coma5593e02009-04-09 14:26:48 -07001711 int ret;
1712
Juergen Grossc06814d2014-11-03 14:01:57 +01001713 /* WB cache mode is hard wired to all cache attribute bits being 0 */
venkatesh.pallipadi@intel.coma5593e02009-04-09 14:26:48 -07001714 ret = change_page_attr_clear(addr, addrinarray,
1715 __pgprot(_PAGE_CACHE_MASK), 1);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001716 if (ret)
1717 return ret;
Shaohua Lid75586a2008-08-21 10:46:06 +08001718
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001719 for (i = 0; i < addrinarray; i++)
1720 free_memtype(__pa(addr[i]), __pa(addr[i]) + PAGE_SIZE);
Rene Hermanc5e147c2008-08-22 01:02:20 +02001721
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001722 return 0;
Shaohua Lid75586a2008-08-21 10:46:06 +08001723}
1724EXPORT_SYMBOL(set_memory_array_wb);
1725
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001726int set_memory_x(unsigned long addr, int numpages)
1727{
H. Peter Anvin583140a2009-11-13 15:28:15 -08001728 if (!(__supported_pte_mask & _PAGE_NX))
1729 return 0;
1730
Shaohua Lid75586a2008-08-21 10:46:06 +08001731 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_NX), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001732}
1733EXPORT_SYMBOL(set_memory_x);
1734
1735int set_memory_nx(unsigned long addr, int numpages)
1736{
H. Peter Anvin583140a2009-11-13 15:28:15 -08001737 if (!(__supported_pte_mask & _PAGE_NX))
1738 return 0;
1739
Shaohua Lid75586a2008-08-21 10:46:06 +08001740 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_NX), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001741}
1742EXPORT_SYMBOL(set_memory_nx);
1743
1744int set_memory_ro(unsigned long addr, int numpages)
1745{
Shaohua Lid75586a2008-08-21 10:46:06 +08001746 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_RW), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001747}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001748
1749int set_memory_rw(unsigned long addr, int numpages)
1750{
Shaohua Lid75586a2008-08-21 10:46:06 +08001751 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_RW), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001752}
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001753
1754int set_memory_np(unsigned long addr, int numpages)
1755{
Shaohua Lid75586a2008-08-21 10:46:06 +08001756 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_PRESENT), 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001757}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001758
Andi Kleenc9caa022008-03-12 03:53:29 +01001759int set_memory_4k(unsigned long addr, int numpages)
1760{
Shaohua Lid75586a2008-08-21 10:46:06 +08001761 return change_page_attr_set_clr(&addr, numpages, __pgprot(0),
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001762 __pgprot(0), 1, 0, NULL);
Andi Kleenc9caa022008-03-12 03:53:29 +01001763}
1764
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001765int set_pages_uc(struct page *page, int numpages)
1766{
1767 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001768
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001769 return set_memory_uc(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001770}
1771EXPORT_SYMBOL(set_pages_uc);
1772
Pauli Nieminen4f646252010-04-01 12:45:01 +00001773static int _set_pages_array(struct page **pages, int addrinarray,
Juergen Grossc06814d2014-11-03 14:01:57 +01001774 enum page_cache_mode new_type)
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001775{
1776 unsigned long start;
1777 unsigned long end;
Toshi Kani623dffb2015-06-04 18:55:20 +02001778 enum page_cache_mode set_type;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001779 int i;
1780 int free_idx;
Pauli Nieminen4f646252010-04-01 12:45:01 +00001781 int ret;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001782
1783 for (i = 0; i < addrinarray; i++) {
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001784 if (PageHighMem(pages[i]))
1785 continue;
1786 start = page_to_pfn(pages[i]) << PAGE_SHIFT;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001787 end = start + PAGE_SIZE;
Pauli Nieminen4f646252010-04-01 12:45:01 +00001788 if (reserve_memtype(start, end, new_type, NULL))
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001789 goto err_out;
1790 }
1791
Toshi Kani623dffb2015-06-04 18:55:20 +02001792 /* If WC, set to UC- first and then WC */
1793 set_type = (new_type == _PAGE_CACHE_MODE_WC) ?
1794 _PAGE_CACHE_MODE_UC_MINUS : new_type;
1795
Pauli Nieminen4f646252010-04-01 12:45:01 +00001796 ret = cpa_set_pages_array(pages, addrinarray,
Toshi Kani623dffb2015-06-04 18:55:20 +02001797 cachemode2pgprot(set_type));
Juergen Grossc06814d2014-11-03 14:01:57 +01001798 if (!ret && new_type == _PAGE_CACHE_MODE_WC)
Pauli Nieminen4f646252010-04-01 12:45:01 +00001799 ret = change_page_attr_set_clr(NULL, addrinarray,
Juergen Grossc06814d2014-11-03 14:01:57 +01001800 cachemode2pgprot(
1801 _PAGE_CACHE_MODE_WC),
Pauli Nieminen4f646252010-04-01 12:45:01 +00001802 __pgprot(_PAGE_CACHE_MASK),
1803 0, CPA_PAGES_ARRAY, pages);
1804 if (ret)
1805 goto err_out;
1806 return 0; /* Success */
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001807err_out:
1808 free_idx = i;
1809 for (i = 0; i < free_idx; i++) {
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001810 if (PageHighMem(pages[i]))
1811 continue;
1812 start = page_to_pfn(pages[i]) << PAGE_SHIFT;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001813 end = start + PAGE_SIZE;
1814 free_memtype(start, end);
1815 }
1816 return -EINVAL;
1817}
Pauli Nieminen4f646252010-04-01 12:45:01 +00001818
1819int set_pages_array_uc(struct page **pages, int addrinarray)
1820{
Juergen Grossc06814d2014-11-03 14:01:57 +01001821 return _set_pages_array(pages, addrinarray, _PAGE_CACHE_MODE_UC_MINUS);
Pauli Nieminen4f646252010-04-01 12:45:01 +00001822}
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001823EXPORT_SYMBOL(set_pages_array_uc);
1824
Pauli Nieminen4f646252010-04-01 12:45:01 +00001825int set_pages_array_wc(struct page **pages, int addrinarray)
1826{
Juergen Grossc06814d2014-11-03 14:01:57 +01001827 return _set_pages_array(pages, addrinarray, _PAGE_CACHE_MODE_WC);
Pauli Nieminen4f646252010-04-01 12:45:01 +00001828}
1829EXPORT_SYMBOL(set_pages_array_wc);
1830
Toshi Kani623dffb2015-06-04 18:55:20 +02001831int set_pages_array_wt(struct page **pages, int addrinarray)
1832{
1833 return _set_pages_array(pages, addrinarray, _PAGE_CACHE_MODE_WT);
1834}
1835EXPORT_SYMBOL_GPL(set_pages_array_wt);
1836
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001837int set_pages_wb(struct page *page, int numpages)
1838{
1839 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001840
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001841 return set_memory_wb(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001842}
1843EXPORT_SYMBOL(set_pages_wb);
1844
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001845int set_pages_array_wb(struct page **pages, int addrinarray)
1846{
1847 int retval;
1848 unsigned long start;
1849 unsigned long end;
1850 int i;
1851
Juergen Grossc06814d2014-11-03 14:01:57 +01001852 /* WB cache mode is hard wired to all cache attribute bits being 0 */
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001853 retval = cpa_clear_pages_array(pages, addrinarray,
1854 __pgprot(_PAGE_CACHE_MASK));
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001855 if (retval)
1856 return retval;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001857
1858 for (i = 0; i < addrinarray; i++) {
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001859 if (PageHighMem(pages[i]))
1860 continue;
1861 start = page_to_pfn(pages[i]) << PAGE_SHIFT;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001862 end = start + PAGE_SIZE;
1863 free_memtype(start, end);
1864 }
1865
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001866 return 0;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001867}
1868EXPORT_SYMBOL(set_pages_array_wb);
1869
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001870int set_pages_x(struct page *page, int numpages)
1871{
1872 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001873
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001874 return set_memory_x(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001875}
1876EXPORT_SYMBOL(set_pages_x);
1877
1878int set_pages_nx(struct page *page, int numpages)
1879{
1880 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001881
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001882 return set_memory_nx(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001883}
1884EXPORT_SYMBOL(set_pages_nx);
1885
1886int set_pages_ro(struct page *page, int numpages)
1887{
1888 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001889
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001890 return set_memory_ro(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001891}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001892
1893int set_pages_rw(struct page *page, int numpages)
1894{
1895 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001896
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001897 return set_memory_rw(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001898}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001899
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900#ifdef CONFIG_DEBUG_PAGEALLOC
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001901
1902static int __set_pages_p(struct page *page, int numpages)
1903{
Shaohua Lid75586a2008-08-21 10:46:06 +08001904 unsigned long tempaddr = (unsigned long) page_address(page);
1905 struct cpa_data cpa = { .vaddr = &tempaddr,
Borislav Petkov82f07122013-10-31 17:25:07 +01001906 .pgd = NULL,
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001907 .numpages = numpages,
1908 .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW),
Shaohua Lid75586a2008-08-21 10:46:06 +08001909 .mask_clr = __pgprot(0),
1910 .flags = 0};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001911
Suresh Siddha55121b42008-09-23 14:00:40 -07001912 /*
1913 * No alias checking needed for setting present flag. otherwise,
1914 * we may need to break large pages for 64-bit kernel text
1915 * mappings (this adds to complexity if we want to do this from
1916 * atomic context especially). Let's keep it simple!
1917 */
1918 return __change_page_attr_set_clr(&cpa, 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001919}
1920
1921static int __set_pages_np(struct page *page, int numpages)
1922{
Shaohua Lid75586a2008-08-21 10:46:06 +08001923 unsigned long tempaddr = (unsigned long) page_address(page);
1924 struct cpa_data cpa = { .vaddr = &tempaddr,
Borislav Petkov82f07122013-10-31 17:25:07 +01001925 .pgd = NULL,
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001926 .numpages = numpages,
1927 .mask_set = __pgprot(0),
Shaohua Lid75586a2008-08-21 10:46:06 +08001928 .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW),
1929 .flags = 0};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001930
Suresh Siddha55121b42008-09-23 14:00:40 -07001931 /*
1932 * No alias checking needed for setting not present flag. otherwise,
1933 * we may need to break large pages for 64-bit kernel text
1934 * mappings (this adds to complexity if we want to do this from
1935 * atomic context especially). Let's keep it simple!
1936 */
1937 return __change_page_attr_set_clr(&cpa, 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001938}
1939
Joonsoo Kim031bc572014-12-12 16:55:52 -08001940void __kernel_map_pages(struct page *page, int numpages, int enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941{
1942 if (PageHighMem(page))
1943 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001944 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -07001945 debug_check_no_locks_freed(page_address(page),
1946 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001947 }
Ingo Molnarde5097c2006-01-09 15:59:21 -08001948
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001949 /*
Ingo Molnarf8d84062008-02-13 14:09:53 +01001950 * The return value is ignored as the calls cannot fail.
Suresh Siddha55121b42008-09-23 14:00:40 -07001951 * Large pages for identity mappings are not used at boot time
1952 * and hence no memory allocations during large page split.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 */
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001954 if (enable)
1955 __set_pages_p(page, numpages);
1956 else
1957 __set_pages_np(page, numpages);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001958
1959 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +01001960 * We should perform an IPI and flush all tlbs,
1961 * but that can deadlock->flush only current cpu:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 */
1963 __flush_tlb_all();
Boris Ostrovsky26564602013-04-11 13:59:52 -04001964
1965 arch_flush_lazy_mmu_mode();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966}
Rafael J. Wysocki8a235ef2008-02-20 01:47:44 +01001967
1968#ifdef CONFIG_HIBERNATION
1969
1970bool kernel_page_present(struct page *page)
1971{
1972 unsigned int level;
1973 pte_t *pte;
1974
1975 if (PageHighMem(page))
1976 return false;
1977
1978 pte = lookup_address((unsigned long)page_address(page), &level);
1979 return (pte_val(*pte) & _PAGE_PRESENT);
1980}
1981
1982#endif /* CONFIG_HIBERNATION */
1983
1984#endif /* CONFIG_DEBUG_PAGEALLOC */
Arjan van de Vend1028a12008-01-30 13:34:07 +01001985
Borislav Petkov82f07122013-10-31 17:25:07 +01001986int kernel_map_pages_in_pgd(pgd_t *pgd, u64 pfn, unsigned long address,
1987 unsigned numpages, unsigned long page_flags)
1988{
1989 int retval = -EINVAL;
1990
1991 struct cpa_data cpa = {
1992 .vaddr = &address,
1993 .pfn = pfn,
1994 .pgd = pgd,
1995 .numpages = numpages,
1996 .mask_set = __pgprot(0),
1997 .mask_clr = __pgprot(0),
1998 .flags = 0,
1999 };
2000
2001 if (!(__supported_pte_mask & _PAGE_NX))
2002 goto out;
2003
2004 if (!(page_flags & _PAGE_NX))
2005 cpa.mask_clr = __pgprot(_PAGE_NX);
2006
Sai Praneeth15f003d2016-02-17 12:36:04 +00002007 if (!(page_flags & _PAGE_RW))
2008 cpa.mask_clr = __pgprot(_PAGE_RW);
2009
Borislav Petkov82f07122013-10-31 17:25:07 +01002010 cpa.mask_set = __pgprot(_PAGE_PRESENT | page_flags);
2011
2012 retval = __change_page_attr_set_clr(&cpa, 0);
2013 __flush_tlb_all();
2014
2015out:
2016 return retval;
2017}
2018
Arjan van de Vend1028a12008-01-30 13:34:07 +01002019/*
2020 * The testcases use internal knowledge of the implementation that shouldn't
2021 * be exposed to the rest of the kernel. Include these directly here.
2022 */
2023#ifdef CONFIG_CPA_DEBUG
2024#include "pageattr-test.c"
2025#endif