blob: 1dcd2be4cce44aabd5659b531962f918da1b8dd3 [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
Ingo Molnar66441bd2017-01-27 10:27:10 +010018#include <asm/e820/api.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>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080023#include <linux/uaccess.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010024#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>
Laura Abbottd1163652017-05-08 15:58:11 -070027#include <asm/set_memory.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Ingo Molnar9df84992008-02-04 16:48:09 +010029/*
30 * The current flushing context - we pass it instead of 5 arguments:
31 */
Thomas Gleixner72e458d2008-02-04 16:48:07 +010032struct cpa_data {
Shaohua Lid75586a2008-08-21 10:46:06 +080033 unsigned long *vaddr;
Borislav Petkov0fd64c22013-10-31 17:25:00 +010034 pgd_t *pgd;
Thomas Gleixner72e458d2008-02-04 16:48:07 +010035 pgprot_t mask_set;
36 pgprot_t mask_clr;
Matt Fleming74256372016-01-29 11:36:10 +000037 unsigned long numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +080038 int flags;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010039 unsigned long pfn;
Andi Kleenc9caa022008-03-12 03:53:29 +010040 unsigned force_split : 1;
Shaohua Lid75586a2008-08-21 10:46:06 +080041 int curpage;
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -070042 struct page **pages;
Thomas Gleixner72e458d2008-02-04 16:48:07 +010043};
44
Suresh Siddhaad5ca552008-09-23 14:00:42 -070045/*
46 * Serialize cpa() (for !DEBUG_PAGEALLOC which uses large identity mappings)
47 * using cpa_lock. So that we don't allow any other cpu, with stale large tlb
48 * entries change the page attribute in parallel to some other cpu
49 * splitting a large page entry along with changing the attribute.
50 */
51static DEFINE_SPINLOCK(cpa_lock);
52
Shaohua Lid75586a2008-08-21 10:46:06 +080053#define CPA_FLUSHTLB 1
54#define CPA_ARRAY 2
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -070055#define CPA_PAGES_ARRAY 4
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;
John Ogness459fbe02017-01-30 09:41:21 +0100218#ifdef CONFIG_PREEMPT
219 /*
220 * Avoid wbinvd() because it causes latencies on all CPUs,
221 * regardless of any CPU isolation that may be in effect.
222 *
223 * This should be extended for CAT enabled systems independent of
224 * PREEMPT because wbinvd() does not respect the CAT partitions and
225 * this is exposed to unpriviledged users through the graphics
226 * subsystem.
227 */
228 unsigned long do_wbinvd = 0;
229#else
Pallipadi, Venkatesh21717872009-05-26 10:33:35 -0700230 unsigned long do_wbinvd = cache && numpages >= 1024; /* 4M threshold */
John Ogness459fbe02017-01-30 09:41:21 +0100231#endif
Shaohua Lid75586a2008-08-21 10:46:06 +0800232
233 BUG_ON(irqs_disabled());
234
Pallipadi, Venkatesh21717872009-05-26 10:33:35 -0700235 on_each_cpu(__cpa_flush_all, (void *) do_wbinvd, 1);
Shaohua Lid75586a2008-08-21 10:46:06 +0800236
Pallipadi, Venkatesh21717872009-05-26 10:33:35 -0700237 if (!cache || do_wbinvd)
Shaohua Lid75586a2008-08-21 10:46:06 +0800238 return;
239
Shaohua Lid75586a2008-08-21 10:46:06 +0800240 /*
241 * We only need to flush on one CPU,
242 * clflush is a MESI-coherent instruction that
243 * will cause all other CPUs to flush the same
244 * cachelines:
245 */
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700246 for (i = 0; i < numpages; i++) {
247 unsigned long addr;
248 pte_t *pte;
249
250 if (in_flags & CPA_PAGES_ARRAY)
251 addr = (unsigned long)page_address(pages[i]);
252 else
253 addr = start[i];
254
255 pte = lookup_address(addr, &level);
Shaohua Lid75586a2008-08-21 10:46:06 +0800256
257 /*
258 * Only flush present addresses:
259 */
260 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700261 clflush_cache_range((void *)addr, PAGE_SIZE);
Shaohua Lid75586a2008-08-21 10:46:06 +0800262 }
263}
264
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100265/*
Arjan van de Vened724be2008-01-30 13:34:04 +0100266 * Certain areas of memory on x86 require very specific protection flags,
267 * for example the BIOS area or kernel text. Callers don't always get this
268 * right (again, ioremap() on BIOS memory is not uncommon) so this function
269 * checks and fixes these known static required protection bits.
270 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100271static inline pgprot_t static_protections(pgprot_t prot, unsigned long address,
272 unsigned long pfn)
Arjan van de Vened724be2008-01-30 13:34:04 +0100273{
274 pgprot_t forbidden = __pgprot(0);
275
Ingo Molnar687c4822008-01-30 13:34:04 +0100276 /*
Arjan van de Vened724be2008-01-30 13:34:04 +0100277 * The BIOS area between 640k and 1Mb needs to be executable for
278 * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support.
Ingo Molnar687c4822008-01-30 13:34:04 +0100279 */
Matthieu Castet5bd5a452010-11-16 22:31:26 +0100280#ifdef CONFIG_PCI_BIOS
281 if (pcibios_enabled && within(pfn, BIOS_BEGIN >> PAGE_SHIFT, BIOS_END >> PAGE_SHIFT))
Arjan van de Vened724be2008-01-30 13:34:04 +0100282 pgprot_val(forbidden) |= _PAGE_NX;
Matthieu Castet5bd5a452010-11-16 22:31:26 +0100283#endif
Arjan van de Vened724be2008-01-30 13:34:04 +0100284
285 /*
286 * The kernel text needs to be executable for obvious reasons
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100287 * Does not cover __inittext since that is gone later on. On
288 * 64bit we do not enforce !NX on the low mapping
Arjan van de Vened724be2008-01-30 13:34:04 +0100289 */
290 if (within(address, (unsigned long)_text, (unsigned long)_etext))
291 pgprot_val(forbidden) |= _PAGE_NX;
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100292
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100293 /*
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100294 * The .rodata section needs to be read-only. Using the pfn
295 * catches all aliases.
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100296 */
Alexander Duyckfc8d7822012-11-16 13:57:13 -0800297 if (within(pfn, __pa_symbol(__start_rodata) >> PAGE_SHIFT,
298 __pa_symbol(__end_rodata) >> PAGE_SHIFT))
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100299 pgprot_val(forbidden) |= _PAGE_RW;
Arjan van de Vened724be2008-01-30 13:34:04 +0100300
Kees Cook9ccaf772016-02-17 14:41:14 -0800301#if defined(CONFIG_X86_64)
Suresh Siddha74e08172009-10-14 14:46:56 -0700302 /*
Suresh Siddha502f6602009-10-28 18:46:56 -0800303 * Once the kernel maps the text as RO (kernel_set_to_readonly is set),
304 * kernel text mappings for the large page aligned text, rodata sections
305 * will be always read-only. For the kernel identity mappings covering
306 * the holes caused by this alignment can be anything that user asks.
Suresh Siddha74e08172009-10-14 14:46:56 -0700307 *
308 * This will preserve the large page mappings for kernel text/data
309 * at no extra cost.
310 */
Suresh Siddha502f6602009-10-28 18:46:56 -0800311 if (kernel_set_to_readonly &&
312 within(address, (unsigned long)_text,
Suresh Siddha281ff332010-02-18 11:51:40 -0800313 (unsigned long)__end_rodata_hpage_align)) {
314 unsigned int level;
315
316 /*
317 * Don't enforce the !RW mapping for the kernel text mapping,
318 * if the current mapping is already using small page mapping.
319 * No need to work hard to preserve large page mappings in this
320 * case.
321 *
322 * This also fixes the Linux Xen paravirt guest boot failure
323 * (because of unexpected read-only mappings for kernel identity
324 * mappings). In this paravirt guest case, the kernel text
325 * mapping and the kernel identity mapping share the same
326 * page-table pages. Thus we can't really use different
327 * protections for the kernel text and identity mappings. Also,
328 * these shared mappings are made of small page mappings.
329 * Thus this don't enforce !RW mapping for small page kernel
330 * text mapping logic will help Linux Xen parvirt guest boot
Lucas De Marchi0d2eb442011-03-17 16:24:16 -0300331 * as well.
Suresh Siddha281ff332010-02-18 11:51:40 -0800332 */
333 if (lookup_address(address, &level) && (level != PG_LEVEL_4K))
334 pgprot_val(forbidden) |= _PAGE_RW;
335 }
Suresh Siddha74e08172009-10-14 14:46:56 -0700336#endif
337
Arjan van de Vened724be2008-01-30 13:34:04 +0100338 prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden));
Ingo Molnar687c4822008-01-30 13:34:04 +0100339
340 return prot;
341}
342
Matt Fleming426e34c2013-12-06 21:13:04 +0000343/*
344 * Lookup the page table entry for a virtual address in a specific pgd.
345 * Return a pointer to the entry and the level of the mapping.
346 */
347pte_t *lookup_address_in_pgd(pgd_t *pgd, unsigned long address,
348 unsigned int *level)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100349{
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300350 p4d_t *p4d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 pud_t *pud;
352 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100353
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100354 *level = PG_LEVEL_NONE;
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 if (pgd_none(*pgd))
357 return NULL;
Ingo Molnar9df84992008-02-04 16:48:09 +0100358
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300359 p4d = p4d_offset(pgd, address);
360 if (p4d_none(*p4d))
361 return NULL;
362
363 *level = PG_LEVEL_512G;
364 if (p4d_large(*p4d) || !p4d_present(*p4d))
365 return (pte_t *)p4d;
366
367 pud = pud_offset(p4d, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 if (pud_none(*pud))
369 return NULL;
Andi Kleenc2f71ee2008-02-04 16:48:09 +0100370
371 *level = PG_LEVEL_1G;
372 if (pud_large(*pud) || !pud_present(*pud))
373 return (pte_t *)pud;
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 pmd = pmd_offset(pud, address);
376 if (pmd_none(*pmd))
377 return NULL;
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100378
379 *level = PG_LEVEL_2M;
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100380 if (pmd_large(*pmd) || !pmd_present(*pmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return (pte_t *)pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100383 *level = PG_LEVEL_4K;
Ingo Molnar9df84992008-02-04 16:48:09 +0100384
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100385 return pte_offset_kernel(pmd, address);
386}
Borislav Petkov0fd64c22013-10-31 17:25:00 +0100387
388/*
389 * Lookup the page table entry for a virtual address. Return a pointer
390 * to the entry and the level of the mapping.
391 *
392 * Note: We return pud and pmd either when the entry is marked large
393 * or when the present bit is not set. Otherwise we would return a
394 * pointer to a nonexisting mapping.
395 */
396pte_t *lookup_address(unsigned long address, unsigned int *level)
397{
Matt Fleming426e34c2013-12-06 21:13:04 +0000398 return lookup_address_in_pgd(pgd_offset_k(address), address, level);
Borislav Petkov0fd64c22013-10-31 17:25:00 +0100399}
Pekka Paalanen75bb8832008-05-12 21:20:56 +0200400EXPORT_SYMBOL_GPL(lookup_address);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100401
Borislav Petkov0fd64c22013-10-31 17:25:00 +0100402static pte_t *_lookup_address_cpa(struct cpa_data *cpa, unsigned long address,
403 unsigned int *level)
404{
405 if (cpa->pgd)
Matt Fleming426e34c2013-12-06 21:13:04 +0000406 return lookup_address_in_pgd(cpa->pgd + pgd_index(address),
Borislav Petkov0fd64c22013-10-31 17:25:00 +0100407 address, level);
408
409 return lookup_address(address, level);
410}
411
Ingo Molnar9df84992008-02-04 16:48:09 +0100412/*
Juergen Gross792230c2014-11-28 11:53:56 +0100413 * Lookup the PMD entry for a virtual address. Return a pointer to the entry
414 * or NULL if not present.
415 */
416pmd_t *lookup_pmd_address(unsigned long address)
417{
418 pgd_t *pgd;
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300419 p4d_t *p4d;
Juergen Gross792230c2014-11-28 11:53:56 +0100420 pud_t *pud;
421
422 pgd = pgd_offset_k(address);
423 if (pgd_none(*pgd))
424 return NULL;
425
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300426 p4d = p4d_offset(pgd, address);
427 if (p4d_none(*p4d) || p4d_large(*p4d) || !p4d_present(*p4d))
428 return NULL;
429
430 pud = pud_offset(p4d, address);
Juergen Gross792230c2014-11-28 11:53:56 +0100431 if (pud_none(*pud) || pud_large(*pud) || !pud_present(*pud))
432 return NULL;
433
434 return pmd_offset(pud, address);
435}
436
437/*
Dave Hansend7656532013-01-22 13:24:33 -0800438 * This is necessary because __pa() does not work on some
439 * kinds of memory, like vmalloc() or the alloc_remap()
440 * areas on 32-bit NUMA systems. The percpu areas can
441 * end up in this kind of memory, for instance.
442 *
443 * This could be optimized, but it is only intended to be
444 * used at inititalization time, and keeping it
445 * unoptimized should increase the testing coverage for
446 * the more obscure platforms.
447 */
448phys_addr_t slow_virt_to_phys(void *__virt_addr)
449{
450 unsigned long virt_addr = (unsigned long)__virt_addr;
Dexuan Cuibf70e552016-02-25 01:58:12 -0800451 phys_addr_t phys_addr;
452 unsigned long offset;
Dave Hansend7656532013-01-22 13:24:33 -0800453 enum pg_level level;
Dave Hansend7656532013-01-22 13:24:33 -0800454 pte_t *pte;
455
456 pte = lookup_address(virt_addr, &level);
457 BUG_ON(!pte);
Toshi Kani34437e62015-09-17 12:24:20 -0600458
Dexuan Cuibf70e552016-02-25 01:58:12 -0800459 /*
460 * pXX_pfn() returns unsigned long, which must be cast to phys_addr_t
461 * before being left-shifted PAGE_SHIFT bits -- this trick is to
462 * make 32-PAE kernel work correctly.
463 */
Toshi Kani34437e62015-09-17 12:24:20 -0600464 switch (level) {
465 case PG_LEVEL_1G:
Dexuan Cuibf70e552016-02-25 01:58:12 -0800466 phys_addr = (phys_addr_t)pud_pfn(*(pud_t *)pte) << PAGE_SHIFT;
Toshi Kani34437e62015-09-17 12:24:20 -0600467 offset = virt_addr & ~PUD_PAGE_MASK;
468 break;
469 case PG_LEVEL_2M:
Dexuan Cuibf70e552016-02-25 01:58:12 -0800470 phys_addr = (phys_addr_t)pmd_pfn(*(pmd_t *)pte) << PAGE_SHIFT;
Toshi Kani34437e62015-09-17 12:24:20 -0600471 offset = virt_addr & ~PMD_PAGE_MASK;
472 break;
473 default:
Dexuan Cuibf70e552016-02-25 01:58:12 -0800474 phys_addr = (phys_addr_t)pte_pfn(*pte) << PAGE_SHIFT;
Toshi Kani34437e62015-09-17 12:24:20 -0600475 offset = virt_addr & ~PAGE_MASK;
476 }
477
478 return (phys_addr_t)(phys_addr | offset);
Dave Hansend7656532013-01-22 13:24:33 -0800479}
480EXPORT_SYMBOL_GPL(slow_virt_to_phys);
481
482/*
Ingo Molnar9df84992008-02-04 16:48:09 +0100483 * Set the new pmd in all the pgds we know about:
484 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100485static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100486{
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100487 /* change init_mm */
488 set_pte_atomic(kpte, pte);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100489#ifdef CONFIG_X86_32
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100490 if (!SHARED_KERNEL_PMD) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100491 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Jeremy Fitzhardingee3ed9102008-01-30 13:34:11 +0100493 list_for_each_entry(page, &pgd_list, lru) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100494 pgd_t *pgd;
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300495 p4d_t *p4d;
Ingo Molnar44af6c42008-01-30 13:34:03 +0100496 pud_t *pud;
497 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100498
Ingo Molnar44af6c42008-01-30 13:34:03 +0100499 pgd = (pgd_t *)page_address(page) + pgd_index(address);
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300500 p4d = p4d_offset(pgd, address);
501 pud = pud_offset(p4d, address);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100502 pmd = pmd_offset(pud, address);
503 set_pte_atomic((pte_t *)pmd, pte);
504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100506#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
Ingo Molnar9df84992008-02-04 16:48:09 +0100509static int
510try_preserve_large_page(pte_t *kpte, unsigned long address,
511 struct cpa_data *cpa)
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100512{
Toshi Kani3a191092015-09-17 12:24:22 -0600513 unsigned long nextpage_addr, numpages, pmask, psize, addr, pfn, old_pfn;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100514 pte_t new_pte, old_pte, *tmp;
matthieu castet64edc8e2010-11-16 22:30:27 +0100515 pgprot_t old_prot, new_prot, req_prot;
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100516 int i, do_split = 1;
Dave Hansenf3c4fbb2013-01-22 13:24:32 -0800517 enum pg_level level;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100518
Andi Kleenc9caa022008-03-12 03:53:29 +0100519 if (cpa->force_split)
520 return 1;
521
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800522 spin_lock(&pgd_lock);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100523 /*
524 * Check for races, another CPU might have split this page
525 * up already:
526 */
Borislav Petkov82f07122013-10-31 17:25:07 +0100527 tmp = _lookup_address_cpa(cpa, address, &level);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100528 if (tmp != kpte)
529 goto out_unlock;
530
531 switch (level) {
532 case PG_LEVEL_2M:
Toshi Kani3a191092015-09-17 12:24:22 -0600533 old_prot = pmd_pgprot(*(pmd_t *)kpte);
534 old_pfn = pmd_pfn(*(pmd_t *)kpte);
535 break;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100536 case PG_LEVEL_1G:
Toshi Kani3a191092015-09-17 12:24:22 -0600537 old_prot = pud_pgprot(*(pud_t *)kpte);
538 old_pfn = pud_pfn(*(pud_t *)kpte);
Dave Hansenf3c4fbb2013-01-22 13:24:32 -0800539 break;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100540 default:
Ingo Molnarbeaff632008-02-04 16:48:09 +0100541 do_split = -EINVAL;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100542 goto out_unlock;
543 }
544
Toshi Kani3a191092015-09-17 12:24:22 -0600545 psize = page_level_size(level);
546 pmask = page_level_mask(level);
547
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100548 /*
549 * Calculate the number of pages, which fit into this large
550 * page starting at address:
551 */
552 nextpage_addr = (address + psize) & pmask;
553 numpages = (nextpage_addr - address) >> PAGE_SHIFT;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100554 if (numpages < cpa->numpages)
555 cpa->numpages = numpages;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100556
557 /*
558 * We are safe now. Check whether the new pgprot is the same:
Juergen Grossf5b28312014-11-03 14:02:02 +0100559 * Convert protection attributes to 4k-format, as cpa->mask* are set
560 * up accordingly.
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100561 */
562 old_pte = *kpte;
Toshi Kani55696b12015-09-17 12:24:24 -0600563 req_prot = pgprot_large_2_4k(old_prot);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100564
matthieu castet64edc8e2010-11-16 22:30:27 +0100565 pgprot_val(req_prot) &= ~pgprot_val(cpa->mask_clr);
566 pgprot_val(req_prot) |= pgprot_val(cpa->mask_set);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100567
568 /*
Juergen Grossf5b28312014-11-03 14:02:02 +0100569 * req_prot is in format of 4k pages. It must be converted to large
570 * page format: the caching mode includes the PAT bit located at
571 * different bit positions in the two formats.
572 */
573 req_prot = pgprot_4k_2_large(req_prot);
574
575 /*
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800576 * Set the PSE and GLOBAL flags only if the PRESENT flag is
577 * set otherwise pmd_present/pmd_huge will return true even on
578 * a non present pmd. The canon_pgprot will clear _PAGE_GLOBAL
579 * for the ancient hardware that doesn't support it.
580 */
Andrea Arcangelif76cfa32013-04-10 15:28:25 +0200581 if (pgprot_val(req_prot) & _PAGE_PRESENT)
582 pgprot_val(req_prot) |= _PAGE_PSE | _PAGE_GLOBAL;
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800583 else
Andrea Arcangelif76cfa32013-04-10 15:28:25 +0200584 pgprot_val(req_prot) &= ~(_PAGE_PSE | _PAGE_GLOBAL);
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800585
Andrea Arcangelif76cfa32013-04-10 15:28:25 +0200586 req_prot = canon_pgprot(req_prot);
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800587
588 /*
Toshi Kani3a191092015-09-17 12:24:22 -0600589 * old_pfn points to the large page base pfn. So we need
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100590 * to add the offset of the virtual address:
591 */
Toshi Kani3a191092015-09-17 12:24:22 -0600592 pfn = old_pfn + ((address & (psize - 1)) >> PAGE_SHIFT);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100593 cpa->pfn = pfn;
594
matthieu castet64edc8e2010-11-16 22:30:27 +0100595 new_prot = static_protections(req_prot, address, pfn);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100596
597 /*
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100598 * We need to check the full range, whether
599 * static_protection() requires a different pgprot for one of
600 * the pages in the range we try to preserve:
601 */
matthieu castet64edc8e2010-11-16 22:30:27 +0100602 addr = address & pmask;
Toshi Kani3a191092015-09-17 12:24:22 -0600603 pfn = old_pfn;
matthieu castet64edc8e2010-11-16 22:30:27 +0100604 for (i = 0; i < (psize >> PAGE_SHIFT); i++, addr += PAGE_SIZE, pfn++) {
605 pgprot_t chk_prot = static_protections(req_prot, addr, pfn);
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100606
607 if (pgprot_val(chk_prot) != pgprot_val(new_prot))
608 goto out_unlock;
609 }
610
611 /*
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100612 * If there are no changes, return. maxpages has been updated
613 * above:
614 */
615 if (pgprot_val(new_prot) == pgprot_val(old_prot)) {
Ingo Molnarbeaff632008-02-04 16:48:09 +0100616 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100617 goto out_unlock;
618 }
619
620 /*
621 * We need to change the attributes. Check, whether we can
622 * change the large page in one go. We request a split, when
623 * the address is not aligned and the number of pages is
624 * smaller than the number of pages in the large page. Note
625 * that we limited the number of possible pages already to
626 * the number of pages in the large page.
627 */
matthieu castet64edc8e2010-11-16 22:30:27 +0100628 if (address == (address & pmask) && cpa->numpages == (psize >> PAGE_SHIFT)) {
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100629 /*
630 * The address is aligned and the number of pages
631 * covers the full page.
632 */
Toshi Kani3a191092015-09-17 12:24:22 -0600633 new_pte = pfn_pte(old_pfn, new_prot);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100634 __set_pmd_pte(kpte, address, new_pte);
Shaohua Lid75586a2008-08-21 10:46:06 +0800635 cpa->flags |= CPA_FLUSHTLB;
Ingo Molnarbeaff632008-02-04 16:48:09 +0100636 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100637 }
638
639out_unlock:
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800640 spin_unlock(&pgd_lock);
Ingo Molnar9df84992008-02-04 16:48:09 +0100641
Ingo Molnarbeaff632008-02-04 16:48:09 +0100642 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100643}
644
Borislav Petkov59528862013-03-21 18:16:57 +0100645static int
Borislav Petkov82f07122013-10-31 17:25:07 +0100646__split_large_page(struct cpa_data *cpa, pte_t *kpte, unsigned long address,
647 struct page *base)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100648{
Borislav Petkov59528862013-03-21 18:16:57 +0100649 pte_t *pbase = (pte_t *)page_address(base);
Toshi Kanid551aaa2015-09-17 12:24:23 -0600650 unsigned long ref_pfn, pfn, pfninc = 1;
Ingo Molnar86f03982008-01-30 13:34:09 +0100651 unsigned int i, level;
Wen Congyangae9aae92013-02-22 16:33:04 -0800652 pte_t *tmp;
Ingo Molnar9df84992008-02-04 16:48:09 +0100653 pgprot_t ref_prot;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100654
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800655 spin_lock(&pgd_lock);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100656 /*
657 * Check for races, another CPU might have split this page
658 * up for us already:
659 */
Borislav Petkov82f07122013-10-31 17:25:07 +0100660 tmp = _lookup_address_cpa(cpa, address, &level);
Wen Congyangae9aae92013-02-22 16:33:04 -0800661 if (tmp != kpte) {
662 spin_unlock(&pgd_lock);
663 return 1;
664 }
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100665
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700666 paravirt_alloc_pte(&init_mm, page_to_pfn(base));
Juergen Grossf5b28312014-11-03 14:02:02 +0100667
Toshi Kanid551aaa2015-09-17 12:24:23 -0600668 switch (level) {
669 case PG_LEVEL_2M:
670 ref_prot = pmd_pgprot(*(pmd_t *)kpte);
671 /* clear PSE and promote PAT bit to correct position */
Juergen Grossf5b28312014-11-03 14:02:02 +0100672 ref_prot = pgprot_large_2_4k(ref_prot);
Toshi Kanid551aaa2015-09-17 12:24:23 -0600673 ref_pfn = pmd_pfn(*(pmd_t *)kpte);
674 break;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100675
Toshi Kanid551aaa2015-09-17 12:24:23 -0600676 case PG_LEVEL_1G:
677 ref_prot = pud_pgprot(*(pud_t *)kpte);
678 ref_pfn = pud_pfn(*(pud_t *)kpte);
Andi Kleenf07333f2008-02-04 16:48:09 +0100679 pfninc = PMD_PAGE_SIZE >> PAGE_SHIFT;
Toshi Kanid551aaa2015-09-17 12:24:23 -0600680
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800681 /*
Toshi Kanid551aaa2015-09-17 12:24:23 -0600682 * Clear the PSE flags if the PRESENT flag is not set
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800683 * otherwise pmd_present/pmd_huge will return true
684 * even on a non present pmd.
685 */
Toshi Kanid551aaa2015-09-17 12:24:23 -0600686 if (!(pgprot_val(ref_prot) & _PAGE_PRESENT))
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800687 pgprot_val(ref_prot) &= ~_PAGE_PSE;
Toshi Kanid551aaa2015-09-17 12:24:23 -0600688 break;
689
690 default:
691 spin_unlock(&pgd_lock);
692 return 1;
Andi Kleenf07333f2008-02-04 16:48:09 +0100693 }
Andi Kleenf07333f2008-02-04 16:48:09 +0100694
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100695 /*
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800696 * Set the GLOBAL flags only if the PRESENT flag is set
697 * otherwise pmd/pte_present will return true even on a non
698 * present pmd/pte. The canon_pgprot will clear _PAGE_GLOBAL
699 * for the ancient hardware that doesn't support it.
700 */
701 if (pgprot_val(ref_prot) & _PAGE_PRESENT)
702 pgprot_val(ref_prot) |= _PAGE_GLOBAL;
703 else
704 pgprot_val(ref_prot) &= ~_PAGE_GLOBAL;
705
706 /*
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100707 * Get the target pfn from the original entry:
708 */
Toshi Kanid551aaa2015-09-17 12:24:23 -0600709 pfn = ref_pfn;
Andi Kleenf07333f2008-02-04 16:48:09 +0100710 for (i = 0; i < PTRS_PER_PTE; i++, pfn += pfninc)
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800711 set_pte(&pbase[i], pfn_pte(pfn, canon_pgprot(ref_prot)));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100712
Sai Praneeth2c66e24d2015-10-16 16:20:27 -0700713 if (virt_addr_valid(address)) {
714 unsigned long pfn = PFN_DOWN(__pa(address));
715
716 if (pfn_range_is_mapped(pfn, pfn + 1))
717 split_page_count(level);
718 }
Yinghai Luf361a452008-07-10 20:38:26 -0700719
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100720 /*
Ingo Molnar07a66d72009-02-20 08:04:13 +0100721 * Install the new, split up pagetable.
Huang, Ying4c881ca2008-01-30 13:34:04 +0100722 *
Ingo Molnar07a66d72009-02-20 08:04:13 +0100723 * We use the standard kernel pagetable protections for the new
724 * pagetable protections, the actual ptes set above control the
725 * primary protection behavior:
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100726 */
Ingo Molnar07a66d72009-02-20 08:04:13 +0100727 __set_pmd_pte(kpte, address, mk_pte(base, __pgprot(_KERNPG_TABLE)));
Ingo Molnar211b3d02009-03-10 22:31:03 +0100728
729 /*
730 * Intel Atom errata AAH41 workaround.
731 *
732 * The real fix should be in hw or in a microcode update, but
733 * we also probabilistically try to reduce the window of having
734 * a large TLB mixed with 4K TLBs while instruction fetches are
735 * going on.
736 */
737 __flush_tlb_all();
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800738 spin_unlock(&pgd_lock);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100739
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100740 return 0;
741}
742
Borislav Petkov82f07122013-10-31 17:25:07 +0100743static int split_large_page(struct cpa_data *cpa, pte_t *kpte,
744 unsigned long address)
Wen Congyangae9aae92013-02-22 16:33:04 -0800745{
Wen Congyangae9aae92013-02-22 16:33:04 -0800746 struct page *base;
747
Christian Borntraeger288cf3c2016-03-15 14:57:33 -0700748 if (!debug_pagealloc_enabled())
Wen Congyangae9aae92013-02-22 16:33:04 -0800749 spin_unlock(&cpa_lock);
750 base = alloc_pages(GFP_KERNEL | __GFP_NOTRACK, 0);
Christian Borntraeger288cf3c2016-03-15 14:57:33 -0700751 if (!debug_pagealloc_enabled())
Wen Congyangae9aae92013-02-22 16:33:04 -0800752 spin_lock(&cpa_lock);
753 if (!base)
754 return -ENOMEM;
755
Borislav Petkov82f07122013-10-31 17:25:07 +0100756 if (__split_large_page(cpa, kpte, address, base))
Wen Congyangae9aae92013-02-22 16:33:04 -0800757 __free_page(base);
758
759 return 0;
760}
761
Borislav Petkov52a628f2013-10-31 17:25:06 +0100762static bool try_to_free_pte_page(pte_t *pte)
763{
764 int i;
765
766 for (i = 0; i < PTRS_PER_PTE; i++)
767 if (!pte_none(pte[i]))
768 return false;
769
770 free_page((unsigned long)pte);
771 return true;
772}
773
774static bool try_to_free_pmd_page(pmd_t *pmd)
775{
776 int i;
777
778 for (i = 0; i < PTRS_PER_PMD; i++)
779 if (!pmd_none(pmd[i]))
780 return false;
781
782 free_page((unsigned long)pmd);
783 return true;
784}
785
786static bool unmap_pte_range(pmd_t *pmd, unsigned long start, unsigned long end)
787{
788 pte_t *pte = pte_offset_kernel(pmd, start);
789
790 while (start < end) {
791 set_pte(pte, __pte(0));
792
793 start += PAGE_SIZE;
794 pte++;
795 }
796
797 if (try_to_free_pte_page((pte_t *)pmd_page_vaddr(*pmd))) {
798 pmd_clear(pmd);
799 return true;
800 }
801 return false;
802}
803
804static void __unmap_pmd_range(pud_t *pud, pmd_t *pmd,
805 unsigned long start, unsigned long end)
806{
807 if (unmap_pte_range(pmd, start, end))
808 if (try_to_free_pmd_page((pmd_t *)pud_page_vaddr(*pud)))
809 pud_clear(pud);
810}
811
812static void unmap_pmd_range(pud_t *pud, unsigned long start, unsigned long end)
813{
814 pmd_t *pmd = pmd_offset(pud, start);
815
816 /*
817 * Not on a 2MB page boundary?
818 */
819 if (start & (PMD_SIZE - 1)) {
820 unsigned long next_page = (start + PMD_SIZE) & PMD_MASK;
821 unsigned long pre_end = min_t(unsigned long, end, next_page);
822
823 __unmap_pmd_range(pud, pmd, start, pre_end);
824
825 start = pre_end;
826 pmd++;
827 }
828
829 /*
830 * Try to unmap in 2M chunks.
831 */
832 while (end - start >= PMD_SIZE) {
833 if (pmd_large(*pmd))
834 pmd_clear(pmd);
835 else
836 __unmap_pmd_range(pud, pmd, start, start + PMD_SIZE);
837
838 start += PMD_SIZE;
839 pmd++;
840 }
841
842 /*
843 * 4K leftovers?
844 */
845 if (start < end)
846 return __unmap_pmd_range(pud, pmd, start, end);
847
848 /*
849 * Try again to free the PMD page if haven't succeeded above.
850 */
851 if (!pud_none(*pud))
852 if (try_to_free_pmd_page((pmd_t *)pud_page_vaddr(*pud)))
853 pud_clear(pud);
854}
Borislav Petkov0bb8aee2013-10-31 17:25:05 +0100855
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300856static void unmap_pud_range(p4d_t *p4d, unsigned long start, unsigned long end)
Borislav Petkov0bb8aee2013-10-31 17:25:05 +0100857{
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300858 pud_t *pud = pud_offset(p4d, start);
Borislav Petkov0bb8aee2013-10-31 17:25:05 +0100859
860 /*
861 * Not on a GB page boundary?
862 */
863 if (start & (PUD_SIZE - 1)) {
864 unsigned long next_page = (start + PUD_SIZE) & PUD_MASK;
865 unsigned long pre_end = min_t(unsigned long, end, next_page);
866
867 unmap_pmd_range(pud, start, pre_end);
868
869 start = pre_end;
870 pud++;
871 }
872
873 /*
874 * Try to unmap in 1G chunks?
875 */
876 while (end - start >= PUD_SIZE) {
877
878 if (pud_large(*pud))
879 pud_clear(pud);
880 else
881 unmap_pmd_range(pud, start, start + PUD_SIZE);
882
883 start += PUD_SIZE;
884 pud++;
885 }
886
887 /*
888 * 2M leftovers?
889 */
890 if (start < end)
891 unmap_pmd_range(pud, start, end);
892
893 /*
894 * No need to try to free the PUD page because we'll free it in
895 * populate_pgd's error path
896 */
897}
898
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100899static int alloc_pte_page(pmd_t *pmd)
900{
901 pte_t *pte = (pte_t *)get_zeroed_page(GFP_KERNEL | __GFP_NOTRACK);
902 if (!pte)
903 return -1;
904
905 set_pmd(pmd, __pmd(__pa(pte) | _KERNPG_TABLE));
906 return 0;
907}
908
Borislav Petkov4b235382013-10-31 17:25:02 +0100909static int alloc_pmd_page(pud_t *pud)
910{
911 pmd_t *pmd = (pmd_t *)get_zeroed_page(GFP_KERNEL | __GFP_NOTRACK);
912 if (!pmd)
913 return -1;
914
915 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE));
916 return 0;
917}
918
Borislav Petkovc6b6f362013-10-31 17:25:04 +0100919static void populate_pte(struct cpa_data *cpa,
920 unsigned long start, unsigned long end,
921 unsigned num_pages, pmd_t *pmd, pgprot_t pgprot)
922{
923 pte_t *pte;
924
925 pte = pte_offset_kernel(pmd, start);
926
Sai Praneeth3976301502016-02-17 12:35:56 +0000927 /*
928 * Set the GLOBAL flags only if the PRESENT flag is
929 * set otherwise pte_present will return true even on
930 * a non present pte. The canon_pgprot will clear
931 * _PAGE_GLOBAL for the ancient hardware that doesn't
932 * support it.
933 */
934 if (pgprot_val(pgprot) & _PAGE_PRESENT)
935 pgprot_val(pgprot) |= _PAGE_GLOBAL;
936 else
937 pgprot_val(pgprot) &= ~_PAGE_GLOBAL;
938
939 pgprot = canon_pgprot(pgprot);
940
Borislav Petkovc6b6f362013-10-31 17:25:04 +0100941 while (num_pages-- && start < end) {
Matt Flemingedc3b912015-11-27 21:09:31 +0000942 set_pte(pte, pfn_pte(cpa->pfn, pgprot));
Borislav Petkovc6b6f362013-10-31 17:25:04 +0100943
944 start += PAGE_SIZE;
Matt Flemingedc3b912015-11-27 21:09:31 +0000945 cpa->pfn++;
Borislav Petkovc6b6f362013-10-31 17:25:04 +0100946 pte++;
947 }
948}
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100949
Matt Fleminge535ec02016-09-20 14:26:21 +0100950static long populate_pmd(struct cpa_data *cpa,
951 unsigned long start, unsigned long end,
952 unsigned num_pages, pud_t *pud, pgprot_t pgprot)
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100953{
Matt Fleminge535ec02016-09-20 14:26:21 +0100954 long cur_pages = 0;
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100955 pmd_t *pmd;
Juergen Grossf5b28312014-11-03 14:02:02 +0100956 pgprot_t pmd_pgprot;
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100957
958 /*
959 * Not on a 2M boundary?
960 */
961 if (start & (PMD_SIZE - 1)) {
962 unsigned long pre_end = start + (num_pages << PAGE_SHIFT);
963 unsigned long next_page = (start + PMD_SIZE) & PMD_MASK;
964
965 pre_end = min_t(unsigned long, pre_end, next_page);
966 cur_pages = (pre_end - start) >> PAGE_SHIFT;
967 cur_pages = min_t(unsigned int, num_pages, cur_pages);
968
969 /*
970 * Need a PTE page?
971 */
972 pmd = pmd_offset(pud, start);
973 if (pmd_none(*pmd))
974 if (alloc_pte_page(pmd))
975 return -1;
976
977 populate_pte(cpa, start, pre_end, cur_pages, pmd, pgprot);
978
979 start = pre_end;
980 }
981
982 /*
983 * We mapped them all?
984 */
985 if (num_pages == cur_pages)
986 return cur_pages;
987
Juergen Grossf5b28312014-11-03 14:02:02 +0100988 pmd_pgprot = pgprot_4k_2_large(pgprot);
989
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100990 while (end - start >= PMD_SIZE) {
991
992 /*
993 * We cannot use a 1G page so allocate a PMD page if needed.
994 */
995 if (pud_none(*pud))
996 if (alloc_pmd_page(pud))
997 return -1;
998
999 pmd = pmd_offset(pud, start);
1000
Matt Flemingedc3b912015-11-27 21:09:31 +00001001 set_pmd(pmd, __pmd(cpa->pfn << PAGE_SHIFT | _PAGE_PSE |
Juergen Grossf5b28312014-11-03 14:02:02 +01001002 massage_pgprot(pmd_pgprot)));
Borislav Petkovf900a4b2013-10-31 17:25:03 +01001003
1004 start += PMD_SIZE;
Matt Flemingedc3b912015-11-27 21:09:31 +00001005 cpa->pfn += PMD_SIZE >> PAGE_SHIFT;
Borislav Petkovf900a4b2013-10-31 17:25:03 +01001006 cur_pages += PMD_SIZE >> PAGE_SHIFT;
1007 }
1008
1009 /*
1010 * Map trailing 4K pages.
1011 */
1012 if (start < end) {
1013 pmd = pmd_offset(pud, start);
1014 if (pmd_none(*pmd))
1015 if (alloc_pte_page(pmd))
1016 return -1;
1017
1018 populate_pte(cpa, start, end, num_pages - cur_pages,
1019 pmd, pgprot);
1020 }
1021 return num_pages;
1022}
Borislav Petkov4b235382013-10-31 17:25:02 +01001023
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001024static int populate_pud(struct cpa_data *cpa, unsigned long start, p4d_t *p4d,
1025 pgprot_t pgprot)
Borislav Petkov4b235382013-10-31 17:25:02 +01001026{
1027 pud_t *pud;
1028 unsigned long end;
Matt Fleminge535ec02016-09-20 14:26:21 +01001029 long cur_pages = 0;
Juergen Grossf5b28312014-11-03 14:02:02 +01001030 pgprot_t pud_pgprot;
Borislav Petkov4b235382013-10-31 17:25:02 +01001031
1032 end = start + (cpa->numpages << PAGE_SHIFT);
1033
1034 /*
1035 * Not on a Gb page boundary? => map everything up to it with
1036 * smaller pages.
1037 */
1038 if (start & (PUD_SIZE - 1)) {
1039 unsigned long pre_end;
1040 unsigned long next_page = (start + PUD_SIZE) & PUD_MASK;
1041
1042 pre_end = min_t(unsigned long, end, next_page);
1043 cur_pages = (pre_end - start) >> PAGE_SHIFT;
1044 cur_pages = min_t(int, (int)cpa->numpages, cur_pages);
1045
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001046 pud = pud_offset(p4d, start);
Borislav Petkov4b235382013-10-31 17:25:02 +01001047
1048 /*
1049 * Need a PMD page?
1050 */
1051 if (pud_none(*pud))
1052 if (alloc_pmd_page(pud))
1053 return -1;
1054
1055 cur_pages = populate_pmd(cpa, start, pre_end, cur_pages,
1056 pud, pgprot);
1057 if (cur_pages < 0)
1058 return cur_pages;
1059
1060 start = pre_end;
1061 }
1062
1063 /* We mapped them all? */
1064 if (cpa->numpages == cur_pages)
1065 return cur_pages;
1066
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001067 pud = pud_offset(p4d, start);
Juergen Grossf5b28312014-11-03 14:02:02 +01001068 pud_pgprot = pgprot_4k_2_large(pgprot);
Borislav Petkov4b235382013-10-31 17:25:02 +01001069
1070 /*
1071 * Map everything starting from the Gb boundary, possibly with 1G pages
1072 */
Borislav Petkovb8291adc2016-03-29 17:41:58 +02001073 while (boot_cpu_has(X86_FEATURE_GBPAGES) && end - start >= PUD_SIZE) {
Matt Flemingedc3b912015-11-27 21:09:31 +00001074 set_pud(pud, __pud(cpa->pfn << PAGE_SHIFT | _PAGE_PSE |
Juergen Grossf5b28312014-11-03 14:02:02 +01001075 massage_pgprot(pud_pgprot)));
Borislav Petkov4b235382013-10-31 17:25:02 +01001076
1077 start += PUD_SIZE;
Matt Flemingedc3b912015-11-27 21:09:31 +00001078 cpa->pfn += PUD_SIZE >> PAGE_SHIFT;
Borislav Petkov4b235382013-10-31 17:25:02 +01001079 cur_pages += PUD_SIZE >> PAGE_SHIFT;
1080 pud++;
1081 }
1082
1083 /* Map trailing leftover */
1084 if (start < end) {
Matt Fleminge535ec02016-09-20 14:26:21 +01001085 long tmp;
Borislav Petkov4b235382013-10-31 17:25:02 +01001086
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001087 pud = pud_offset(p4d, start);
Borislav Petkov4b235382013-10-31 17:25:02 +01001088 if (pud_none(*pud))
1089 if (alloc_pmd_page(pud))
1090 return -1;
1091
1092 tmp = populate_pmd(cpa, start, end, cpa->numpages - cur_pages,
1093 pud, pgprot);
1094 if (tmp < 0)
1095 return cur_pages;
1096
1097 cur_pages += tmp;
1098 }
1099 return cur_pages;
1100}
Borislav Petkovf3f72962013-10-31 17:25:01 +01001101
1102/*
1103 * Restrictions for kernel page table do not necessarily apply when mapping in
1104 * an alternate PGD.
1105 */
1106static int populate_pgd(struct cpa_data *cpa, unsigned long addr)
1107{
1108 pgprot_t pgprot = __pgprot(_KERNPG_TABLE);
Borislav Petkovf3f72962013-10-31 17:25:01 +01001109 pud_t *pud = NULL; /* shut up gcc */
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001110 p4d_t *p4d;
Borislav Petkov42a54772014-01-18 12:48:16 +01001111 pgd_t *pgd_entry;
Matt Fleminge535ec02016-09-20 14:26:21 +01001112 long ret;
Borislav Petkovf3f72962013-10-31 17:25:01 +01001113
1114 pgd_entry = cpa->pgd + pgd_index(addr);
1115
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001116 if (pgd_none(*pgd_entry)) {
1117 p4d = (p4d_t *)get_zeroed_page(GFP_KERNEL | __GFP_NOTRACK);
1118 if (!p4d)
1119 return -1;
1120
1121 set_pgd(pgd_entry, __pgd(__pa(p4d) | _KERNPG_TABLE));
1122 }
1123
Borislav Petkovf3f72962013-10-31 17:25:01 +01001124 /*
1125 * Allocate a PUD page and hand it down for mapping.
1126 */
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001127 p4d = p4d_offset(pgd_entry, addr);
1128 if (p4d_none(*p4d)) {
Borislav Petkovf3f72962013-10-31 17:25:01 +01001129 pud = (pud_t *)get_zeroed_page(GFP_KERNEL | __GFP_NOTRACK);
1130 if (!pud)
1131 return -1;
Andy Lutomirski530dd8d2016-07-22 21:58:08 -07001132
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001133 set_p4d(p4d, __p4d(__pa(pud) | _KERNPG_TABLE));
Borislav Petkovf3f72962013-10-31 17:25:01 +01001134 }
1135
1136 pgprot_val(pgprot) &= ~pgprot_val(cpa->mask_clr);
1137 pgprot_val(pgprot) |= pgprot_val(cpa->mask_set);
1138
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001139 ret = populate_pud(cpa, addr, p4d, pgprot);
Borislav Petkov0bb8aee2013-10-31 17:25:05 +01001140 if (ret < 0) {
Andy Lutomirski55920d32016-07-23 09:59:28 -07001141 /*
1142 * Leave the PUD page in place in case some other CPU or thread
1143 * already found it, but remove any useless entries we just
1144 * added to it.
1145 */
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001146 unmap_pud_range(p4d, addr,
Borislav Petkov0bb8aee2013-10-31 17:25:05 +01001147 addr + (cpa->numpages << PAGE_SHIFT));
Borislav Petkov0bb8aee2013-10-31 17:25:05 +01001148 return ret;
1149 }
Borislav Petkov42a54772014-01-18 12:48:16 +01001150
Borislav Petkovf3f72962013-10-31 17:25:01 +01001151 cpa->numpages = ret;
1152 return 0;
1153}
1154
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001155static int __cpa_process_fault(struct cpa_data *cpa, unsigned long vaddr,
1156 int primary)
1157{
Matt Fleming7fc84422016-04-25 21:06:35 +01001158 if (cpa->pgd) {
1159 /*
1160 * Right now, we only execute this code path when mapping
1161 * the EFI virtual memory map regions, no other users
1162 * provide a ->pgd value. This may change in the future.
1163 */
Borislav Petkov82f07122013-10-31 17:25:07 +01001164 return populate_pgd(cpa, vaddr);
Matt Fleming7fc84422016-04-25 21:06:35 +01001165 }
Borislav Petkov82f07122013-10-31 17:25:07 +01001166
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001167 /*
1168 * Ignore all non primary paths.
1169 */
Jan Beulich405e11332016-02-10 02:03:00 -07001170 if (!primary) {
1171 cpa->numpages = 1;
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001172 return 0;
Jan Beulich405e11332016-02-10 02:03:00 -07001173 }
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001174
1175 /*
1176 * Ignore the NULL PTE for kernel identity mapping, as it is expected
1177 * to have holes.
1178 * Also set numpages to '1' indicating that we processed cpa req for
1179 * one virtual address page and its pfn. TBD: numpages can be set based
1180 * on the initial value and the level returned by lookup_address().
1181 */
1182 if (within(vaddr, PAGE_OFFSET,
1183 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT))) {
1184 cpa->numpages = 1;
1185 cpa->pfn = __pa(vaddr) >> PAGE_SHIFT;
1186 return 0;
1187 } else {
1188 WARN(1, KERN_WARNING "CPA: called for zero pte. "
1189 "vaddr = %lx cpa->vaddr = %lx\n", vaddr,
1190 *cpa->vaddr);
1191
1192 return -EFAULT;
1193 }
1194}
1195
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001196static int __change_page_attr(struct cpa_data *cpa, int primary)
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001197{
Shaohua Lid75586a2008-08-21 10:46:06 +08001198 unsigned long address;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +01001199 int do_split, err;
1200 unsigned int level;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001201 pte_t *kpte, old_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001203 if (cpa->flags & CPA_PAGES_ARRAY) {
1204 struct page *page = cpa->pages[cpa->curpage];
1205 if (unlikely(PageHighMem(page)))
1206 return 0;
1207 address = (unsigned long)page_address(page);
1208 } else if (cpa->flags & CPA_ARRAY)
Shaohua Lid75586a2008-08-21 10:46:06 +08001209 address = cpa->vaddr[cpa->curpage];
1210 else
1211 address = *cpa->vaddr;
Ingo Molnar97f99fe2008-01-30 13:33:55 +01001212repeat:
Borislav Petkov82f07122013-10-31 17:25:07 +01001213 kpte = _lookup_address_cpa(cpa, address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 if (!kpte)
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001215 return __cpa_process_fault(cpa, address, primary);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001216
1217 old_pte = *kpte;
Dave Hansendcb32d92016-07-07 17:19:15 -07001218 if (pte_none(old_pte))
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001219 return __cpa_process_fault(cpa, address, primary);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001220
Thomas Gleixner30551bb2008-01-30 13:34:04 +01001221 if (level == PG_LEVEL_4K) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001222 pte_t new_pte;
Arjan van de Ven626c2c92008-02-04 16:48:05 +01001223 pgprot_t new_prot = pte_pgprot(old_pte);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001224 unsigned long pfn = pte_pfn(old_pte);
Thomas Gleixnera72a08a2008-01-30 13:34:07 +01001225
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001226 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
1227 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Ingo Molnar86f03982008-01-30 13:34:09 +01001228
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001229 new_prot = static_protections(new_prot, address, pfn);
Ingo Molnar86f03982008-01-30 13:34:09 +01001230
Arjan van de Ven626c2c92008-02-04 16:48:05 +01001231 /*
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -08001232 * Set the GLOBAL flags only if the PRESENT flag is
1233 * set otherwise pte_present will return true even on
1234 * a non present pte. The canon_pgprot will clear
1235 * _PAGE_GLOBAL for the ancient hardware that doesn't
1236 * support it.
1237 */
1238 if (pgprot_val(new_prot) & _PAGE_PRESENT)
1239 pgprot_val(new_prot) |= _PAGE_GLOBAL;
1240 else
1241 pgprot_val(new_prot) &= ~_PAGE_GLOBAL;
1242
1243 /*
Arjan van de Ven626c2c92008-02-04 16:48:05 +01001244 * We need to keep the pfn from the existing PTE,
1245 * after all we're only going to change it's attributes
1246 * not the memory it points to
1247 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001248 new_pte = pfn_pte(pfn, canon_pgprot(new_prot));
1249 cpa->pfn = pfn;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +01001250 /*
1251 * Do we really change anything ?
1252 */
1253 if (pte_val(old_pte) != pte_val(new_pte)) {
1254 set_pte_atomic(kpte, new_pte);
Shaohua Lid75586a2008-08-21 10:46:06 +08001255 cpa->flags |= CPA_FLUSHTLB;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +01001256 }
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +01001257 cpa->numpages = 1;
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001258 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 }
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001260
1261 /*
1262 * Check, whether we can keep the large page intact
1263 * and just change the pte:
1264 */
Ingo Molnarbeaff632008-02-04 16:48:09 +01001265 do_split = try_preserve_large_page(kpte, address, cpa);
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001266 /*
1267 * When the range fits into the existing large page,
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +01001268 * return. cp->numpages and cpa->tlbflush have been updated in
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001269 * try_large_page:
1270 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +01001271 if (do_split <= 0)
1272 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001273
1274 /*
1275 * We have to split the large page:
1276 */
Borislav Petkov82f07122013-10-31 17:25:07 +01001277 err = split_large_page(cpa, kpte, address);
Ingo Molnar87f7f8f2008-02-04 16:48:10 +01001278 if (!err) {
Suresh Siddhaad5ca552008-09-23 14:00:42 -07001279 /*
1280 * Do a global flush tlb after splitting the large page
1281 * and before we do the actual change page attribute in the PTE.
1282 *
1283 * With out this, we violate the TLB application note, that says
1284 * "The TLBs may contain both ordinary and large-page
1285 * translations for a 4-KByte range of linear addresses. This
1286 * may occur if software modifies the paging structures so that
1287 * the page size used for the address range changes. If the two
1288 * translations differ with respect to page frame or attributes
1289 * (e.g., permissions), processor behavior is undefined and may
1290 * be implementation-specific."
1291 *
1292 * We do this global tlb flush inside the cpa_lock, so that we
1293 * don't allow any other cpu, with stale tlb entries change the
1294 * page attribute in parallel, that also falls into the
1295 * just split large page entry.
1296 */
1297 flush_tlb_all();
Ingo Molnar87f7f8f2008-02-04 16:48:10 +01001298 goto repeat;
1299 }
Ingo Molnarbeaff632008-02-04 16:48:09 +01001300
Ingo Molnar87f7f8f2008-02-04 16:48:10 +01001301 return err;
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001302}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001304static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias);
1305
1306static int cpa_process_alias(struct cpa_data *cpa)
Ingo Molnar44af6c42008-01-30 13:34:03 +01001307{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001308 struct cpa_data alias_cpa;
Tejun Heo992f4c12009-06-22 11:56:24 +09001309 unsigned long laddr = (unsigned long)__va(cpa->pfn << PAGE_SHIFT);
Tejun Heoe933a732009-08-14 15:00:53 +09001310 unsigned long vaddr;
Tejun Heo992f4c12009-06-22 11:56:24 +09001311 int ret;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001312
Yinghai Lu8eb57792012-11-16 19:38:49 -08001313 if (!pfn_range_is_mapped(cpa->pfn, cpa->pfn + 1))
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001314 return 0;
1315
Thomas Gleixnerf34b4392008-02-15 22:17:57 +01001316 /*
1317 * No need to redo, when the primary call touched the direct
1318 * mapping already:
1319 */
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001320 if (cpa->flags & CPA_PAGES_ARRAY) {
1321 struct page *page = cpa->pages[cpa->curpage];
1322 if (unlikely(PageHighMem(page)))
1323 return 0;
1324 vaddr = (unsigned long)page_address(page);
1325 } else if (cpa->flags & CPA_ARRAY)
Shaohua Lid75586a2008-08-21 10:46:06 +08001326 vaddr = cpa->vaddr[cpa->curpage];
1327 else
1328 vaddr = *cpa->vaddr;
1329
1330 if (!(within(vaddr, PAGE_OFFSET,
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001331 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT)))) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001332
Thomas Gleixnerf34b4392008-02-15 22:17:57 +01001333 alias_cpa = *cpa;
Tejun Heo992f4c12009-06-22 11:56:24 +09001334 alias_cpa.vaddr = &laddr;
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001335 alias_cpa.flags &= ~(CPA_PAGES_ARRAY | CPA_ARRAY);
Shaohua Lid75586a2008-08-21 10:46:06 +08001336
Thomas Gleixnerf34b4392008-02-15 22:17:57 +01001337 ret = __change_page_attr_set_clr(&alias_cpa, 0);
Tejun Heo992f4c12009-06-22 11:56:24 +09001338 if (ret)
1339 return ret;
Thomas Gleixnerf34b4392008-02-15 22:17:57 +01001340 }
Ingo Molnar44af6c42008-01-30 13:34:03 +01001341
Arjan van de Ven488fd992008-01-30 13:34:07 +01001342#ifdef CONFIG_X86_64
Thomas Gleixner08797502008-01-30 13:34:09 +01001343 /*
Tejun Heo992f4c12009-06-22 11:56:24 +09001344 * If the primary call didn't touch the high mapping already
1345 * and the physical address is inside the kernel map, we need
Thomas Gleixner08797502008-01-30 13:34:09 +01001346 * to touch the high mapped kernel as well:
1347 */
Tejun Heo992f4c12009-06-22 11:56:24 +09001348 if (!within(vaddr, (unsigned long)_text, _brk_end) &&
Thomas Garnier4ff53082016-06-15 12:05:45 -07001349 within_inclusive(cpa->pfn, highmap_start_pfn(),
1350 highmap_end_pfn())) {
Tejun Heo992f4c12009-06-22 11:56:24 +09001351 unsigned long temp_cpa_vaddr = (cpa->pfn << PAGE_SHIFT) +
1352 __START_KERNEL_map - phys_base;
1353 alias_cpa = *cpa;
1354 alias_cpa.vaddr = &temp_cpa_vaddr;
1355 alias_cpa.flags &= ~(CPA_PAGES_ARRAY | CPA_ARRAY);
Thomas Gleixner08797502008-01-30 13:34:09 +01001356
Tejun Heo992f4c12009-06-22 11:56:24 +09001357 /*
1358 * The high mapping range is imprecise, so ignore the
1359 * return value.
1360 */
1361 __change_page_attr_set_clr(&alias_cpa, 0);
1362 }
Thomas Gleixner08797502008-01-30 13:34:09 +01001363#endif
Tejun Heo992f4c12009-06-22 11:56:24 +09001364
1365 return 0;
Ingo Molnar44af6c42008-01-30 13:34:03 +01001366}
1367
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001368static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias)
Thomas Gleixnerff314522008-01-30 13:34:08 +01001369{
Matt Fleminge535ec02016-09-20 14:26:21 +01001370 unsigned long numpages = cpa->numpages;
1371 int ret;
Thomas Gleixnerff314522008-01-30 13:34:08 +01001372
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001373 while (numpages) {
1374 /*
1375 * Store the remaining nr of pages for the large page
1376 * preservation check.
1377 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +01001378 cpa->numpages = numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +08001379 /* for array changes, we can't use large page */
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001380 if (cpa->flags & (CPA_ARRAY | CPA_PAGES_ARRAY))
Shaohua Lid75586a2008-08-21 10:46:06 +08001381 cpa->numpages = 1;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001382
Christian Borntraeger288cf3c2016-03-15 14:57:33 -07001383 if (!debug_pagealloc_enabled())
Suresh Siddhaad5ca552008-09-23 14:00:42 -07001384 spin_lock(&cpa_lock);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001385 ret = __change_page_attr(cpa, checkalias);
Christian Borntraeger288cf3c2016-03-15 14:57:33 -07001386 if (!debug_pagealloc_enabled())
Suresh Siddhaad5ca552008-09-23 14:00:42 -07001387 spin_unlock(&cpa_lock);
Thomas Gleixnerff314522008-01-30 13:34:08 +01001388 if (ret)
1389 return ret;
Thomas Gleixnerff314522008-01-30 13:34:08 +01001390
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001391 if (checkalias) {
1392 ret = cpa_process_alias(cpa);
1393 if (ret)
1394 return ret;
1395 }
1396
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001397 /*
1398 * Adjust the number of pages with the result of the
1399 * CPA operation. Either a large page has been
1400 * preserved or a single page update happened.
1401 */
Matt Fleming74256372016-01-29 11:36:10 +00001402 BUG_ON(cpa->numpages > numpages || !cpa->numpages);
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +01001403 numpages -= cpa->numpages;
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001404 if (cpa->flags & (CPA_PAGES_ARRAY | CPA_ARRAY))
Shaohua Lid75586a2008-08-21 10:46:06 +08001405 cpa->curpage++;
1406 else
1407 *cpa->vaddr += cpa->numpages * PAGE_SIZE;
1408
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001409 }
Thomas Gleixnerff314522008-01-30 13:34:08 +01001410 return 0;
1411}
1412
Shaohua Lid75586a2008-08-21 10:46:06 +08001413static int change_page_attr_set_clr(unsigned long *addr, int numpages,
Andi Kleenc9caa022008-03-12 03:53:29 +01001414 pgprot_t mask_set, pgprot_t mask_clr,
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001415 int force_split, int in_flag,
1416 struct page **pages)
Thomas Gleixnerff314522008-01-30 13:34:08 +01001417{
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001418 struct cpa_data cpa;
Ingo Molnarcacf8902008-08-21 13:46:33 +02001419 int ret, cache, checkalias;
Jack Steinerfa526d02009-09-03 12:56:02 -05001420 unsigned long baddr = 0;
Thomas Gleixner331e4062008-02-04 16:48:06 +01001421
Borislav Petkov82f07122013-10-31 17:25:07 +01001422 memset(&cpa, 0, sizeof(cpa));
1423
Thomas Gleixner331e4062008-02-04 16:48:06 +01001424 /*
1425 * Check, if we are requested to change a not supported
1426 * feature:
1427 */
1428 mask_set = canon_pgprot(mask_set);
1429 mask_clr = canon_pgprot(mask_clr);
Andi Kleenc9caa022008-03-12 03:53:29 +01001430 if (!pgprot_val(mask_set) && !pgprot_val(mask_clr) && !force_split)
Thomas Gleixner331e4062008-02-04 16:48:06 +01001431 return 0;
1432
Thomas Gleixner69b14152008-02-13 11:04:50 +01001433 /* Ensure we are PAGE_SIZE aligned */
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001434 if (in_flag & CPA_ARRAY) {
Shaohua Lid75586a2008-08-21 10:46:06 +08001435 int i;
1436 for (i = 0; i < numpages; i++) {
1437 if (addr[i] & ~PAGE_MASK) {
1438 addr[i] &= PAGE_MASK;
1439 WARN_ON_ONCE(1);
1440 }
1441 }
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001442 } else if (!(in_flag & CPA_PAGES_ARRAY)) {
1443 /*
1444 * in_flag of CPA_PAGES_ARRAY implies it is aligned.
1445 * No need to cehck in that case
1446 */
1447 if (*addr & ~PAGE_MASK) {
1448 *addr &= PAGE_MASK;
1449 /*
1450 * People should not be passing in unaligned addresses:
1451 */
1452 WARN_ON_ONCE(1);
1453 }
Jack Steinerfa526d02009-09-03 12:56:02 -05001454 /*
1455 * Save address for cache flush. *addr is modified in the call
1456 * to __change_page_attr_set_clr() below.
1457 */
1458 baddr = *addr;
Thomas Gleixner69b14152008-02-13 11:04:50 +01001459 }
1460
Nick Piggin5843d9a2008-08-01 03:15:21 +02001461 /* Must avoid aliasing mappings in the highmem code */
1462 kmap_flush_unused();
1463
Nick Piggindb64fe02008-10-18 20:27:03 -07001464 vm_unmap_aliases();
1465
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001466 cpa.vaddr = addr;
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001467 cpa.pages = pages;
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001468 cpa.numpages = numpages;
1469 cpa.mask_set = mask_set;
1470 cpa.mask_clr = mask_clr;
Shaohua Lid75586a2008-08-21 10:46:06 +08001471 cpa.flags = 0;
1472 cpa.curpage = 0;
Andi Kleenc9caa022008-03-12 03:53:29 +01001473 cpa.force_split = force_split;
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001474
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001475 if (in_flag & (CPA_ARRAY | CPA_PAGES_ARRAY))
1476 cpa.flags |= in_flag;
Shaohua Lid75586a2008-08-21 10:46:06 +08001477
Thomas Gleixneraf96e442008-02-15 21:49:46 +01001478 /* No alias checking for _NX bit modifications */
1479 checkalias = (pgprot_val(mask_set) | pgprot_val(mask_clr)) != _PAGE_NX;
1480
1481 ret = __change_page_attr_set_clr(&cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +01001482
Thomas Gleixner57a6a462008-01-30 13:34:08 +01001483 /*
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +01001484 * Check whether we really changed something:
1485 */
Shaohua Lid75586a2008-08-21 10:46:06 +08001486 if (!(cpa.flags & CPA_FLUSHTLB))
Shaohua Li1ac2f7d2008-08-04 14:51:24 +08001487 goto out;
Ingo Molnarcacf8902008-08-21 13:46:33 +02001488
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +01001489 /*
Andi Kleen6bb83832008-02-04 16:48:06 +01001490 * No need to flush, when we did not set any of the caching
1491 * attributes:
1492 */
Juergen Grossc06814d2014-11-03 14:01:57 +01001493 cache = !!pgprot2cachemode(mask_set);
Andi Kleen6bb83832008-02-04 16:48:06 +01001494
1495 /*
Borislav Petkovb82ad3d2014-03-12 15:13:04 +01001496 * On success we use CLFLUSH, when the CPU supports it to
1497 * avoid the WBINVD. If the CPU does not support it and in the
H. Peter Anvinf026cfa2012-08-14 09:53:38 -07001498 * error case we fall back to cpa_flush_all (which uses
Borislav Petkovb82ad3d2014-03-12 15:13:04 +01001499 * WBINVD):
Thomas Gleixner57a6a462008-01-30 13:34:08 +01001500 */
Borislav Petkov906bf7f2016-03-29 17:41:59 +02001501 if (!ret && boot_cpu_has(X86_FEATURE_CLFLUSH)) {
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001502 if (cpa.flags & (CPA_PAGES_ARRAY | CPA_ARRAY)) {
1503 cpa_flush_array(addr, numpages, cache,
1504 cpa.flags, pages);
1505 } else
Jack Steinerfa526d02009-09-03 12:56:02 -05001506 cpa_flush_range(baddr, numpages, cache);
Shaohua Lid75586a2008-08-21 10:46:06 +08001507 } else
Andi Kleen6bb83832008-02-04 16:48:06 +01001508 cpa_flush_all(cache);
Ingo Molnarcacf8902008-08-21 13:46:33 +02001509
Thomas Gleixner76ebd052008-02-09 23:24:09 +01001510out:
Thomas Gleixnerff314522008-01-30 13:34:08 +01001511 return ret;
1512}
1513
Shaohua Lid75586a2008-08-21 10:46:06 +08001514static inline int change_page_attr_set(unsigned long *addr, int numpages,
1515 pgprot_t mask, int array)
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001516{
Shaohua Lid75586a2008-08-21 10:46:06 +08001517 return change_page_attr_set_clr(addr, numpages, mask, __pgprot(0), 0,
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001518 (array ? CPA_ARRAY : 0), NULL);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001519}
1520
Shaohua Lid75586a2008-08-21 10:46:06 +08001521static inline int change_page_attr_clear(unsigned long *addr, int numpages,
1522 pgprot_t mask, int array)
Thomas Gleixner72932c72008-01-30 13:34:08 +01001523{
Shaohua Lid75586a2008-08-21 10:46:06 +08001524 return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask, 0,
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001525 (array ? CPA_ARRAY : 0), NULL);
Thomas Gleixner72932c72008-01-30 13:34:08 +01001526}
1527
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001528static inline int cpa_set_pages_array(struct page **pages, int numpages,
1529 pgprot_t mask)
1530{
1531 return change_page_attr_set_clr(NULL, numpages, mask, __pgprot(0), 0,
1532 CPA_PAGES_ARRAY, pages);
1533}
1534
1535static inline int cpa_clear_pages_array(struct page **pages, int numpages,
1536 pgprot_t mask)
1537{
1538 return change_page_attr_set_clr(NULL, numpages, __pgprot(0), mask, 0,
1539 CPA_PAGES_ARRAY, pages);
1540}
1541
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001542int _set_memory_uc(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001543{
Suresh Siddhade33c442008-04-25 17:07:22 -07001544 /*
1545 * for now UC MINUS. see comments in ioremap_nocache()
Luis R. Rodrigueze4b6be332015-05-11 10:15:53 +02001546 * If you really need strong UC use ioremap_uc(), but note
1547 * that you cannot override IO areas with set_memory_*() as
1548 * these helpers cannot work with IO memory.
Suresh Siddhade33c442008-04-25 17:07:22 -07001549 */
Shaohua Lid75586a2008-08-21 10:46:06 +08001550 return change_page_attr_set(&addr, numpages,
Juergen Grossc06814d2014-11-03 14:01:57 +01001551 cachemode2pgprot(_PAGE_CACHE_MODE_UC_MINUS),
1552 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001553}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001554
1555int set_memory_uc(unsigned long addr, int numpages)
1556{
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001557 int ret;
1558
Suresh Siddhade33c442008-04-25 17:07:22 -07001559 /*
1560 * for now UC MINUS. see comments in ioremap_nocache()
1561 */
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001562 ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
Juergen Grosse00c8cc2014-11-03 14:01:59 +01001563 _PAGE_CACHE_MODE_UC_MINUS, NULL);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001564 if (ret)
1565 goto out_err;
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001566
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001567 ret = _set_memory_uc(addr, numpages);
1568 if (ret)
1569 goto out_free;
1570
1571 return 0;
1572
1573out_free:
1574 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
1575out_err:
1576 return ret;
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001577}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001578EXPORT_SYMBOL(set_memory_uc);
1579
H Hartley Sweeten2d070ef2011-11-15 14:49:00 -08001580static int _set_memory_array(unsigned long *addr, int addrinarray,
Juergen Grossc06814d2014-11-03 14:01:57 +01001581 enum page_cache_mode new_type)
Shaohua Lid75586a2008-08-21 10:46:06 +08001582{
Toshi Kani623dffb2015-06-04 18:55:20 +02001583 enum page_cache_mode set_type;
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001584 int i, j;
1585 int ret;
1586
Shaohua Lid75586a2008-08-21 10:46:06 +08001587 for (i = 0; i < addrinarray; i++) {
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001588 ret = reserve_memtype(__pa(addr[i]), __pa(addr[i]) + PAGE_SIZE,
Pauli Nieminen4f646252010-04-01 12:45:01 +00001589 new_type, NULL);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001590 if (ret)
1591 goto out_free;
Shaohua Lid75586a2008-08-21 10:46:06 +08001592 }
1593
Toshi Kani623dffb2015-06-04 18:55:20 +02001594 /* If WC, set to UC- first and then WC */
1595 set_type = (new_type == _PAGE_CACHE_MODE_WC) ?
1596 _PAGE_CACHE_MODE_UC_MINUS : new_type;
1597
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001598 ret = change_page_attr_set(addr, addrinarray,
Toshi Kani623dffb2015-06-04 18:55:20 +02001599 cachemode2pgprot(set_type), 1);
Pauli Nieminen4f646252010-04-01 12:45:01 +00001600
Juergen Grossc06814d2014-11-03 14:01:57 +01001601 if (!ret && new_type == _PAGE_CACHE_MODE_WC)
Pauli Nieminen4f646252010-04-01 12:45:01 +00001602 ret = change_page_attr_set_clr(addr, addrinarray,
Juergen Grossc06814d2014-11-03 14:01:57 +01001603 cachemode2pgprot(
1604 _PAGE_CACHE_MODE_WC),
Pauli Nieminen4f646252010-04-01 12:45:01 +00001605 __pgprot(_PAGE_CACHE_MASK),
1606 0, CPA_ARRAY, NULL);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001607 if (ret)
1608 goto out_free;
Rene Hermanc5e147c2008-08-22 01:02:20 +02001609
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001610 return 0;
1611
1612out_free:
1613 for (j = 0; j < i; j++)
1614 free_memtype(__pa(addr[j]), __pa(addr[j]) + PAGE_SIZE);
1615
1616 return ret;
Shaohua Lid75586a2008-08-21 10:46:06 +08001617}
Pauli Nieminen4f646252010-04-01 12:45:01 +00001618
1619int set_memory_array_uc(unsigned long *addr, int addrinarray)
1620{
Juergen Grossc06814d2014-11-03 14:01:57 +01001621 return _set_memory_array(addr, addrinarray, _PAGE_CACHE_MODE_UC_MINUS);
Pauli Nieminen4f646252010-04-01 12:45:01 +00001622}
Shaohua Lid75586a2008-08-21 10:46:06 +08001623EXPORT_SYMBOL(set_memory_array_uc);
1624
Pauli Nieminen4f646252010-04-01 12:45:01 +00001625int set_memory_array_wc(unsigned long *addr, int addrinarray)
1626{
Juergen Grossc06814d2014-11-03 14:01:57 +01001627 return _set_memory_array(addr, addrinarray, _PAGE_CACHE_MODE_WC);
Pauli Nieminen4f646252010-04-01 12:45:01 +00001628}
1629EXPORT_SYMBOL(set_memory_array_wc);
1630
Toshi Kani623dffb2015-06-04 18:55:20 +02001631int set_memory_array_wt(unsigned long *addr, int addrinarray)
1632{
1633 return _set_memory_array(addr, addrinarray, _PAGE_CACHE_MODE_WT);
1634}
1635EXPORT_SYMBOL_GPL(set_memory_array_wt);
1636
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -07001637int _set_memory_wc(unsigned long addr, int numpages)
1638{
venkatesh.pallipadi@intel.com3869c4a2009-04-09 14:26:50 -07001639 int ret;
Pallipadi, Venkateshbdc63402009-07-30 14:43:19 -07001640 unsigned long addr_copy = addr;
1641
venkatesh.pallipadi@intel.com3869c4a2009-04-09 14:26:50 -07001642 ret = change_page_attr_set(&addr, numpages,
Juergen Grossc06814d2014-11-03 14:01:57 +01001643 cachemode2pgprot(_PAGE_CACHE_MODE_UC_MINUS),
1644 0);
venkatesh.pallipadi@intel.com3869c4a2009-04-09 14:26:50 -07001645 if (!ret) {
Pallipadi, Venkateshbdc63402009-07-30 14:43:19 -07001646 ret = change_page_attr_set_clr(&addr_copy, numpages,
Juergen Grossc06814d2014-11-03 14:01:57 +01001647 cachemode2pgprot(
1648 _PAGE_CACHE_MODE_WC),
Pallipadi, Venkateshbdc63402009-07-30 14:43:19 -07001649 __pgprot(_PAGE_CACHE_MASK),
1650 0, 0, NULL);
venkatesh.pallipadi@intel.com3869c4a2009-04-09 14:26:50 -07001651 }
1652 return ret;
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -07001653}
1654
1655int set_memory_wc(unsigned long addr, int numpages)
1656{
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001657 int ret;
1658
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001659 ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
Juergen Grosse00c8cc2014-11-03 14:01:59 +01001660 _PAGE_CACHE_MODE_WC, NULL);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001661 if (ret)
Toshi Kani623dffb2015-06-04 18:55:20 +02001662 return ret;
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -07001663
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001664 ret = _set_memory_wc(addr, numpages);
1665 if (ret)
Toshi Kani623dffb2015-06-04 18:55:20 +02001666 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001667
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001668 return ret;
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -07001669}
1670EXPORT_SYMBOL(set_memory_wc);
1671
Toshi Kani623dffb2015-06-04 18:55:20 +02001672int _set_memory_wt(unsigned long addr, int numpages)
1673{
1674 return change_page_attr_set(&addr, numpages,
1675 cachemode2pgprot(_PAGE_CACHE_MODE_WT), 0);
1676}
1677
1678int set_memory_wt(unsigned long addr, int numpages)
1679{
1680 int ret;
1681
1682 ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
1683 _PAGE_CACHE_MODE_WT, NULL);
1684 if (ret)
1685 return ret;
1686
1687 ret = _set_memory_wt(addr, numpages);
1688 if (ret)
1689 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
1690
1691 return ret;
1692}
1693EXPORT_SYMBOL_GPL(set_memory_wt);
1694
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001695int _set_memory_wb(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001696{
Juergen Grossc06814d2014-11-03 14:01:57 +01001697 /* WB cache mode is hard wired to all cache attribute bits being 0 */
Shaohua Lid75586a2008-08-21 10:46:06 +08001698 return change_page_attr_clear(&addr, numpages,
1699 __pgprot(_PAGE_CACHE_MASK), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001700}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001701
1702int set_memory_wb(unsigned long addr, int numpages)
1703{
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001704 int ret;
1705
1706 ret = _set_memory_wb(addr, numpages);
1707 if (ret)
1708 return ret;
1709
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -07001710 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001711 return 0;
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001712}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001713EXPORT_SYMBOL(set_memory_wb);
1714
Shaohua Lid75586a2008-08-21 10:46:06 +08001715int set_memory_array_wb(unsigned long *addr, int addrinarray)
1716{
1717 int i;
venkatesh.pallipadi@intel.coma5593e02009-04-09 14:26:48 -07001718 int ret;
1719
Juergen Grossc06814d2014-11-03 14:01:57 +01001720 /* WB cache mode is hard wired to all cache attribute bits being 0 */
venkatesh.pallipadi@intel.coma5593e02009-04-09 14:26:48 -07001721 ret = change_page_attr_clear(addr, addrinarray,
1722 __pgprot(_PAGE_CACHE_MASK), 1);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001723 if (ret)
1724 return ret;
Shaohua Lid75586a2008-08-21 10:46:06 +08001725
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001726 for (i = 0; i < addrinarray; i++)
1727 free_memtype(__pa(addr[i]), __pa(addr[i]) + PAGE_SIZE);
Rene Hermanc5e147c2008-08-22 01:02:20 +02001728
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001729 return 0;
Shaohua Lid75586a2008-08-21 10:46:06 +08001730}
1731EXPORT_SYMBOL(set_memory_array_wb);
1732
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001733int set_memory_x(unsigned long addr, int numpages)
1734{
H. Peter Anvin583140a2009-11-13 15:28:15 -08001735 if (!(__supported_pte_mask & _PAGE_NX))
1736 return 0;
1737
Shaohua Lid75586a2008-08-21 10:46:06 +08001738 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_NX), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001739}
1740EXPORT_SYMBOL(set_memory_x);
1741
1742int set_memory_nx(unsigned long addr, int numpages)
1743{
H. Peter Anvin583140a2009-11-13 15:28:15 -08001744 if (!(__supported_pte_mask & _PAGE_NX))
1745 return 0;
1746
Shaohua Lid75586a2008-08-21 10:46:06 +08001747 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_NX), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001748}
1749EXPORT_SYMBOL(set_memory_nx);
1750
1751int set_memory_ro(unsigned long addr, int numpages)
1752{
Shaohua Lid75586a2008-08-21 10:46:06 +08001753 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_RW), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001754}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001755
1756int set_memory_rw(unsigned long addr, int numpages)
1757{
Shaohua Lid75586a2008-08-21 10:46:06 +08001758 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_RW), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001759}
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001760
1761int set_memory_np(unsigned long addr, int numpages)
1762{
Shaohua Lid75586a2008-08-21 10:46:06 +08001763 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_PRESENT), 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001764}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001765
Andi Kleenc9caa022008-03-12 03:53:29 +01001766int set_memory_4k(unsigned long addr, int numpages)
1767{
Shaohua Lid75586a2008-08-21 10:46:06 +08001768 return change_page_attr_set_clr(&addr, numpages, __pgprot(0),
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001769 __pgprot(0), 1, 0, NULL);
Andi Kleenc9caa022008-03-12 03:53:29 +01001770}
1771
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001772int set_pages_uc(struct page *page, int numpages)
1773{
1774 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001775
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001776 return set_memory_uc(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001777}
1778EXPORT_SYMBOL(set_pages_uc);
1779
Pauli Nieminen4f646252010-04-01 12:45:01 +00001780static int _set_pages_array(struct page **pages, int addrinarray,
Juergen Grossc06814d2014-11-03 14:01:57 +01001781 enum page_cache_mode new_type)
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001782{
1783 unsigned long start;
1784 unsigned long end;
Toshi Kani623dffb2015-06-04 18:55:20 +02001785 enum page_cache_mode set_type;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001786 int i;
1787 int free_idx;
Pauli Nieminen4f646252010-04-01 12:45:01 +00001788 int ret;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001789
1790 for (i = 0; i < addrinarray; i++) {
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001791 if (PageHighMem(pages[i]))
1792 continue;
1793 start = page_to_pfn(pages[i]) << PAGE_SHIFT;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001794 end = start + PAGE_SIZE;
Pauli Nieminen4f646252010-04-01 12:45:01 +00001795 if (reserve_memtype(start, end, new_type, NULL))
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001796 goto err_out;
1797 }
1798
Toshi Kani623dffb2015-06-04 18:55:20 +02001799 /* If WC, set to UC- first and then WC */
1800 set_type = (new_type == _PAGE_CACHE_MODE_WC) ?
1801 _PAGE_CACHE_MODE_UC_MINUS : new_type;
1802
Pauli Nieminen4f646252010-04-01 12:45:01 +00001803 ret = cpa_set_pages_array(pages, addrinarray,
Toshi Kani623dffb2015-06-04 18:55:20 +02001804 cachemode2pgprot(set_type));
Juergen Grossc06814d2014-11-03 14:01:57 +01001805 if (!ret && new_type == _PAGE_CACHE_MODE_WC)
Pauli Nieminen4f646252010-04-01 12:45:01 +00001806 ret = change_page_attr_set_clr(NULL, addrinarray,
Juergen Grossc06814d2014-11-03 14:01:57 +01001807 cachemode2pgprot(
1808 _PAGE_CACHE_MODE_WC),
Pauli Nieminen4f646252010-04-01 12:45:01 +00001809 __pgprot(_PAGE_CACHE_MASK),
1810 0, CPA_PAGES_ARRAY, pages);
1811 if (ret)
1812 goto err_out;
1813 return 0; /* Success */
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001814err_out:
1815 free_idx = i;
1816 for (i = 0; i < free_idx; i++) {
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001817 if (PageHighMem(pages[i]))
1818 continue;
1819 start = page_to_pfn(pages[i]) << PAGE_SHIFT;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001820 end = start + PAGE_SIZE;
1821 free_memtype(start, end);
1822 }
1823 return -EINVAL;
1824}
Pauli Nieminen4f646252010-04-01 12:45:01 +00001825
1826int set_pages_array_uc(struct page **pages, int addrinarray)
1827{
Juergen Grossc06814d2014-11-03 14:01:57 +01001828 return _set_pages_array(pages, addrinarray, _PAGE_CACHE_MODE_UC_MINUS);
Pauli Nieminen4f646252010-04-01 12:45:01 +00001829}
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001830EXPORT_SYMBOL(set_pages_array_uc);
1831
Pauli Nieminen4f646252010-04-01 12:45:01 +00001832int set_pages_array_wc(struct page **pages, int addrinarray)
1833{
Juergen Grossc06814d2014-11-03 14:01:57 +01001834 return _set_pages_array(pages, addrinarray, _PAGE_CACHE_MODE_WC);
Pauli Nieminen4f646252010-04-01 12:45:01 +00001835}
1836EXPORT_SYMBOL(set_pages_array_wc);
1837
Toshi Kani623dffb2015-06-04 18:55:20 +02001838int set_pages_array_wt(struct page **pages, int addrinarray)
1839{
1840 return _set_pages_array(pages, addrinarray, _PAGE_CACHE_MODE_WT);
1841}
1842EXPORT_SYMBOL_GPL(set_pages_array_wt);
1843
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001844int set_pages_wb(struct page *page, int numpages)
1845{
1846 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001847
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001848 return set_memory_wb(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001849}
1850EXPORT_SYMBOL(set_pages_wb);
1851
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001852int set_pages_array_wb(struct page **pages, int addrinarray)
1853{
1854 int retval;
1855 unsigned long start;
1856 unsigned long end;
1857 int i;
1858
Juergen Grossc06814d2014-11-03 14:01:57 +01001859 /* WB cache mode is hard wired to all cache attribute bits being 0 */
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001860 retval = cpa_clear_pages_array(pages, addrinarray,
1861 __pgprot(_PAGE_CACHE_MASK));
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001862 if (retval)
1863 return retval;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001864
1865 for (i = 0; i < addrinarray; i++) {
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001866 if (PageHighMem(pages[i]))
1867 continue;
1868 start = page_to_pfn(pages[i]) << PAGE_SHIFT;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001869 end = start + PAGE_SIZE;
1870 free_memtype(start, end);
1871 }
1872
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001873 return 0;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001874}
1875EXPORT_SYMBOL(set_pages_array_wb);
1876
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001877int set_pages_x(struct page *page, int numpages)
1878{
1879 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001880
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001881 return set_memory_x(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001882}
1883EXPORT_SYMBOL(set_pages_x);
1884
1885int set_pages_nx(struct page *page, int numpages)
1886{
1887 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001888
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001889 return set_memory_nx(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001890}
1891EXPORT_SYMBOL(set_pages_nx);
1892
1893int set_pages_ro(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_ro(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001898}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001899
1900int set_pages_rw(struct page *page, int numpages)
1901{
1902 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001903
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001904 return set_memory_rw(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001905}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001906
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907#ifdef CONFIG_DEBUG_PAGEALLOC
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001908
1909static int __set_pages_p(struct page *page, int numpages)
1910{
Shaohua Lid75586a2008-08-21 10:46:06 +08001911 unsigned long tempaddr = (unsigned long) page_address(page);
1912 struct cpa_data cpa = { .vaddr = &tempaddr,
Borislav Petkov82f07122013-10-31 17:25:07 +01001913 .pgd = NULL,
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001914 .numpages = numpages,
1915 .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW),
Shaohua Lid75586a2008-08-21 10:46:06 +08001916 .mask_clr = __pgprot(0),
1917 .flags = 0};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001918
Suresh Siddha55121b42008-09-23 14:00:40 -07001919 /*
1920 * No alias checking needed for setting present flag. otherwise,
1921 * we may need to break large pages for 64-bit kernel text
1922 * mappings (this adds to complexity if we want to do this from
1923 * atomic context especially). Let's keep it simple!
1924 */
1925 return __change_page_attr_set_clr(&cpa, 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001926}
1927
1928static int __set_pages_np(struct page *page, int numpages)
1929{
Shaohua Lid75586a2008-08-21 10:46:06 +08001930 unsigned long tempaddr = (unsigned long) page_address(page);
1931 struct cpa_data cpa = { .vaddr = &tempaddr,
Borislav Petkov82f07122013-10-31 17:25:07 +01001932 .pgd = NULL,
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001933 .numpages = numpages,
1934 .mask_set = __pgprot(0),
Shaohua Lid75586a2008-08-21 10:46:06 +08001935 .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW),
1936 .flags = 0};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001937
Suresh Siddha55121b42008-09-23 14:00:40 -07001938 /*
1939 * No alias checking needed for setting not present flag. otherwise,
1940 * we may need to break large pages for 64-bit kernel text
1941 * mappings (this adds to complexity if we want to do this from
1942 * atomic context especially). Let's keep it simple!
1943 */
1944 return __change_page_attr_set_clr(&cpa, 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001945}
1946
Joonsoo Kim031bc572014-12-12 16:55:52 -08001947void __kernel_map_pages(struct page *page, int numpages, int enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948{
1949 if (PageHighMem(page))
1950 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001951 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -07001952 debug_check_no_locks_freed(page_address(page),
1953 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001954 }
Ingo Molnarde5097c2006-01-09 15:59:21 -08001955
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001956 /*
Ingo Molnarf8d84062008-02-13 14:09:53 +01001957 * The return value is ignored as the calls cannot fail.
Suresh Siddha55121b42008-09-23 14:00:40 -07001958 * Large pages for identity mappings are not used at boot time
1959 * and hence no memory allocations during large page split.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 */
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001961 if (enable)
1962 __set_pages_p(page, numpages);
1963 else
1964 __set_pages_np(page, numpages);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001965
1966 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +01001967 * We should perform an IPI and flush all tlbs,
1968 * but that can deadlock->flush only current cpu:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 */
1970 __flush_tlb_all();
Boris Ostrovsky26564602013-04-11 13:59:52 -04001971
1972 arch_flush_lazy_mmu_mode();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973}
Rafael J. Wysocki8a235ef2008-02-20 01:47:44 +01001974
1975#ifdef CONFIG_HIBERNATION
1976
1977bool kernel_page_present(struct page *page)
1978{
1979 unsigned int level;
1980 pte_t *pte;
1981
1982 if (PageHighMem(page))
1983 return false;
1984
1985 pte = lookup_address((unsigned long)page_address(page), &level);
1986 return (pte_val(*pte) & _PAGE_PRESENT);
1987}
1988
1989#endif /* CONFIG_HIBERNATION */
1990
1991#endif /* CONFIG_DEBUG_PAGEALLOC */
Arjan van de Vend1028a12008-01-30 13:34:07 +01001992
Borislav Petkov82f07122013-10-31 17:25:07 +01001993int kernel_map_pages_in_pgd(pgd_t *pgd, u64 pfn, unsigned long address,
1994 unsigned numpages, unsigned long page_flags)
1995{
1996 int retval = -EINVAL;
1997
1998 struct cpa_data cpa = {
1999 .vaddr = &address,
2000 .pfn = pfn,
2001 .pgd = pgd,
2002 .numpages = numpages,
2003 .mask_set = __pgprot(0),
2004 .mask_clr = __pgprot(0),
2005 .flags = 0,
2006 };
2007
2008 if (!(__supported_pte_mask & _PAGE_NX))
2009 goto out;
2010
2011 if (!(page_flags & _PAGE_NX))
2012 cpa.mask_clr = __pgprot(_PAGE_NX);
2013
Sai Praneeth15f003d2016-02-17 12:36:04 +00002014 if (!(page_flags & _PAGE_RW))
2015 cpa.mask_clr = __pgprot(_PAGE_RW);
2016
Borislav Petkov82f07122013-10-31 17:25:07 +01002017 cpa.mask_set = __pgprot(_PAGE_PRESENT | page_flags);
2018
2019 retval = __change_page_attr_set_clr(&cpa, 0);
2020 __flush_tlb_all();
2021
2022out:
2023 return retval;
2024}
2025
Arjan van de Vend1028a12008-01-30 13:34:07 +01002026/*
2027 * The testcases use internal knowledge of the implementation that shouldn't
2028 * be exposed to the rest of the kernel. Include these directly here.
2029 */
2030#ifdef CONFIG_CPA_DEBUG
2031#include "pageattr-test.c"
2032#endif