blob: b5949017deadcb75c8236f4303c4d06aef610c0c [file] [log] [blame]
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001/*
2 * Copyright 2002 Andi Kleen, SuSE Labs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Thanks to Ben LaHaise for precious feedback.
Ingo Molnar9f4c8152008-01-30 13:33:41 +01004 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/highmem.h>
Ingo Molnar81922062008-01-30 13:34:04 +01006#include <linux/bootmem.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +01007#include <linux/sched.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +01008#include <linux/mm.h>
Thomas Gleixner76ebd052008-02-09 23:24:09 +01009#include <linux/interrupt.h>
Thomas Gleixneree7ae7a2008-04-17 17:40:45 +020010#include <linux/seq_file.h>
11#include <linux/debugfs.h>
Tejun Heoe59a1bb2009-06-22 11:56:24 +090012#include <linux/pfn.h>
Tejun Heo8c4bfc62009-07-04 08:10:59 +090013#include <linux/percpu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/gfp.h>
Matthieu Castet5bd5a452010-11-16 22:31:26 +010015#include <linux/pci.h>
Stephen Rothwelld6472302015-06-02 19:01:38 +100016#include <linux/vmalloc.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010017
Thomas Gleixner950f9d92008-01-30 13:34:06 +010018#include <asm/e820.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/processor.h>
20#include <asm/tlbflush.h>
Dave Jonesf8af0952006-01-06 00:12:10 -080021#include <asm/sections.h>
Jeremy Fitzhardinge93dbda72009-02-26 17:35:44 -080022#include <asm/setup.h>
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Ingo Molnar9df84992008-02-04 16:48:09 +010028/*
29 * The current flushing context - we pass it instead of 5 arguments:
30 */
Thomas Gleixner72e458d2008-02-04 16:48:07 +010031struct cpa_data {
Shaohua Lid75586a2008-08-21 10:46:06 +080032 unsigned long *vaddr;
Borislav Petkov0fd64c22013-10-31 17:25:00 +010033 pgd_t *pgd;
Thomas Gleixner72e458d2008-02-04 16:48:07 +010034 pgprot_t mask_set;
35 pgprot_t mask_clr;
Matt Fleming74256372016-01-29 11:36:10 +000036 unsigned long numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +080037 int flags;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010038 unsigned long pfn;
Andi Kleenc9caa022008-03-12 03:53:29 +010039 unsigned force_split : 1;
Shaohua Lid75586a2008-08-21 10:46:06 +080040 int curpage;
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -070041 struct page **pages;
Thomas Gleixner72e458d2008-02-04 16:48:07 +010042};
43
Suresh Siddhaad5ca552008-09-23 14:00:42 -070044/*
45 * Serialize cpa() (for !DEBUG_PAGEALLOC which uses large identity mappings)
46 * using cpa_lock. So that we don't allow any other cpu, with stale large tlb
47 * entries change the page attribute in parallel to some other cpu
48 * splitting a large page entry along with changing the attribute.
49 */
50static DEFINE_SPINLOCK(cpa_lock);
51
Shaohua Lid75586a2008-08-21 10:46:06 +080052#define CPA_FLUSHTLB 1
53#define CPA_ARRAY 2
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -070054#define CPA_PAGES_ARRAY 4
Shaohua Lid75586a2008-08-21 10:46:06 +080055
Thomas Gleixner65280e62008-05-05 16:35:21 +020056#ifdef CONFIG_PROC_FS
Andi Kleence0c0e52008-05-02 11:46:49 +020057static unsigned long direct_pages_count[PG_LEVEL_NUM];
58
Thomas Gleixner65280e62008-05-05 16:35:21 +020059void update_page_count(int level, unsigned long pages)
Andi Kleence0c0e52008-05-02 11:46:49 +020060{
Andi Kleence0c0e52008-05-02 11:46:49 +020061 /* Protect against CPA */
Andrea Arcangelia79e53d2011-02-16 15:45:22 -080062 spin_lock(&pgd_lock);
Andi Kleence0c0e52008-05-02 11:46:49 +020063 direct_pages_count[level] += pages;
Andrea Arcangelia79e53d2011-02-16 15:45:22 -080064 spin_unlock(&pgd_lock);
Andi Kleence0c0e52008-05-02 11:46:49 +020065}
66
Thomas Gleixner65280e62008-05-05 16:35:21 +020067static void split_page_count(int level)
68{
Dave Jonesc9e0d392016-01-11 12:04:28 -050069 if (direct_pages_count[level] == 0)
70 return;
71
Thomas Gleixner65280e62008-05-05 16:35:21 +020072 direct_pages_count[level]--;
73 direct_pages_count[level - 1] += PTRS_PER_PTE;
74}
75
Alexey Dobriyane1759c22008-10-15 23:50:22 +040076void arch_report_meminfo(struct seq_file *m)
Thomas Gleixner65280e62008-05-05 16:35:21 +020077{
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000078 seq_printf(m, "DirectMap4k: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010079 direct_pages_count[PG_LEVEL_4K] << 2);
80#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000081 seq_printf(m, "DirectMap2M: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010082 direct_pages_count[PG_LEVEL_2M] << 11);
83#else
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000084 seq_printf(m, "DirectMap4M: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010085 direct_pages_count[PG_LEVEL_2M] << 12);
86#endif
Hugh Dickinsa06de632008-08-15 13:58:32 +010087 if (direct_gbpages)
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000088 seq_printf(m, "DirectMap1G: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010089 direct_pages_count[PG_LEVEL_1G] << 20);
Thomas Gleixner65280e62008-05-05 16:35:21 +020090}
91#else
92static inline void split_page_count(int level) { }
93#endif
94
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010095#ifdef CONFIG_X86_64
96
97static inline unsigned long highmap_start_pfn(void)
98{
Alexander Duyckfc8d7822012-11-16 13:57:13 -080099 return __pa_symbol(_text) >> PAGE_SHIFT;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100100}
101
102static inline unsigned long highmap_end_pfn(void)
103{
Thomas Garnier4ff53082016-06-15 12:05:45 -0700104 /* Do not reference physical address outside the kernel. */
105 return __pa_symbol(roundup(_brk_end, PMD_SIZE) - 1) >> PAGE_SHIFT;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100106}
107
108#endif
109
Arjan van de Vened724be2008-01-30 13:34:04 +0100110static inline int
111within(unsigned long addr, unsigned long start, unsigned long end)
Ingo Molnar687c4822008-01-30 13:34:04 +0100112{
Arjan van de Vened724be2008-01-30 13:34:04 +0100113 return addr >= start && addr < end;
114}
115
Thomas Garnier4ff53082016-06-15 12:05:45 -0700116static inline int
117within_inclusive(unsigned long addr, unsigned long start, unsigned long end)
118{
119 return addr >= start && addr <= end;
120}
121
Arjan van de Vened724be2008-01-30 13:34:04 +0100122/*
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100123 * Flushing functions
124 */
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100125
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100126/**
127 * clflush_cache_range - flush a cache range with clflush
Wanpeng Li9efc31b2012-06-10 10:50:52 +0800128 * @vaddr: virtual start address
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100129 * @size: number of bytes to flush
130 *
Ross Zwisler8b80fd82014-02-26 12:06:50 -0700131 * clflushopt is an unordered instruction which needs fencing with mfence or
132 * sfence to avoid ordering issues.
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100133 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100134void clflush_cache_range(void *vaddr, unsigned int size)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100135{
Chris Wilson1f1a89a2016-01-08 09:55:33 +0000136 const unsigned long clflush_size = boot_cpu_data.x86_clflush_size;
137 void *p = (void *)((unsigned long)vaddr & ~(clflush_size - 1));
Ross Zwisler6c434d62015-05-11 10:15:49 +0200138 void *vend = vaddr + size;
Chris Wilson1f1a89a2016-01-08 09:55:33 +0000139
140 if (p >= vend)
141 return;
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100142
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100143 mb();
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100144
Chris Wilson1f1a89a2016-01-08 09:55:33 +0000145 for (; p < vend; p += clflush_size)
Ross Zwisler6c434d62015-05-11 10:15:49 +0200146 clflushopt(p);
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100147
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100148 mb();
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100149}
Eric Anholte517a5e2009-09-10 17:48:48 -0700150EXPORT_SYMBOL_GPL(clflush_cache_range);
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100151
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100152static void __cpa_flush_all(void *arg)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100153{
Andi Kleen6bb83832008-02-04 16:48:06 +0100154 unsigned long cache = (unsigned long)arg;
155
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100156 /*
157 * Flush all to work around Errata in early athlons regarding
158 * large page flushing.
159 */
160 __flush_tlb_all();
161
venkatesh.pallipadi@intel.com0b827532009-05-22 13:23:37 -0700162 if (cache && boot_cpu_data.x86 >= 4)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100163 wbinvd();
164}
165
Andi Kleen6bb83832008-02-04 16:48:06 +0100166static void cpa_flush_all(unsigned long cache)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100167{
168 BUG_ON(irqs_disabled());
169
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200170 on_each_cpu(__cpa_flush_all, (void *) cache, 1);
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100171}
172
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100173static void __cpa_flush_range(void *arg)
174{
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100175 /*
176 * We could optimize that further and do individual per page
177 * tlb invalidates for a low number of pages. Caveat: we must
178 * flush the high aliases on 64bit as well.
179 */
180 __flush_tlb_all();
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100181}
182
Andi Kleen6bb83832008-02-04 16:48:06 +0100183static void cpa_flush_range(unsigned long start, int numpages, int cache)
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100184{
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100185 unsigned int i, level;
186 unsigned long addr;
187
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100188 BUG_ON(irqs_disabled());
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100189 WARN_ON(PAGE_ALIGN(start) != start);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100190
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200191 on_each_cpu(__cpa_flush_range, NULL, 1);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100192
Andi Kleen6bb83832008-02-04 16:48:06 +0100193 if (!cache)
194 return;
195
Thomas Gleixner3b233e52008-01-30 13:34:08 +0100196 /*
197 * We only need to flush on one CPU,
198 * clflush is a MESI-coherent instruction that
199 * will cause all other CPUs to flush the same
200 * cachelines:
201 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100202 for (i = 0, addr = start; i < numpages; i++, addr += PAGE_SIZE) {
203 pte_t *pte = lookup_address(addr, &level);
204
205 /*
206 * Only flush present addresses:
207 */
Thomas Gleixner7bfb72e2008-02-04 16:48:08 +0100208 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100209 clflush_cache_range((void *) addr, PAGE_SIZE);
210 }
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100211}
212
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700213static void cpa_flush_array(unsigned long *start, int numpages, int cache,
214 int in_flags, struct page **pages)
Shaohua Lid75586a2008-08-21 10:46:06 +0800215{
216 unsigned int i, level;
John Ogness459fbe02017-01-30 09:41:21 +0100217#ifdef CONFIG_PREEMPT
218 /*
219 * Avoid wbinvd() because it causes latencies on all CPUs,
220 * regardless of any CPU isolation that may be in effect.
221 *
222 * This should be extended for CAT enabled systems independent of
223 * PREEMPT because wbinvd() does not respect the CAT partitions and
224 * this is exposed to unpriviledged users through the graphics
225 * subsystem.
226 */
227 unsigned long do_wbinvd = 0;
228#else
Pallipadi, Venkatesh21717872009-05-26 10:33:35 -0700229 unsigned long do_wbinvd = cache && numpages >= 1024; /* 4M threshold */
John Ogness459fbe02017-01-30 09:41:21 +0100230#endif
Shaohua Lid75586a2008-08-21 10:46:06 +0800231
232 BUG_ON(irqs_disabled());
233
Pallipadi, Venkatesh21717872009-05-26 10:33:35 -0700234 on_each_cpu(__cpa_flush_all, (void *) do_wbinvd, 1);
Shaohua Lid75586a2008-08-21 10:46:06 +0800235
Pallipadi, Venkatesh21717872009-05-26 10:33:35 -0700236 if (!cache || do_wbinvd)
Shaohua Lid75586a2008-08-21 10:46:06 +0800237 return;
238
Shaohua Lid75586a2008-08-21 10:46:06 +0800239 /*
240 * We only need to flush on one CPU,
241 * clflush is a MESI-coherent instruction that
242 * will cause all other CPUs to flush the same
243 * cachelines:
244 */
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700245 for (i = 0; i < numpages; i++) {
246 unsigned long addr;
247 pte_t *pte;
248
249 if (in_flags & CPA_PAGES_ARRAY)
250 addr = (unsigned long)page_address(pages[i]);
251 else
252 addr = start[i];
253
254 pte = lookup_address(addr, &level);
Shaohua Lid75586a2008-08-21 10:46:06 +0800255
256 /*
257 * Only flush present addresses:
258 */
259 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700260 clflush_cache_range((void *)addr, PAGE_SIZE);
Shaohua Lid75586a2008-08-21 10:46:06 +0800261 }
262}
263
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100264/*
Arjan van de Vened724be2008-01-30 13:34:04 +0100265 * Certain areas of memory on x86 require very specific protection flags,
266 * for example the BIOS area or kernel text. Callers don't always get this
267 * right (again, ioremap() on BIOS memory is not uncommon) so this function
268 * checks and fixes these known static required protection bits.
269 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100270static inline pgprot_t static_protections(pgprot_t prot, unsigned long address,
271 unsigned long pfn)
Arjan van de Vened724be2008-01-30 13:34:04 +0100272{
273 pgprot_t forbidden = __pgprot(0);
274
Ingo Molnar687c4822008-01-30 13:34:04 +0100275 /*
Arjan van de Vened724be2008-01-30 13:34:04 +0100276 * The BIOS area between 640k and 1Mb needs to be executable for
277 * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support.
Ingo Molnar687c4822008-01-30 13:34:04 +0100278 */
Matthieu Castet5bd5a452010-11-16 22:31:26 +0100279#ifdef CONFIG_PCI_BIOS
280 if (pcibios_enabled && within(pfn, BIOS_BEGIN >> PAGE_SHIFT, BIOS_END >> PAGE_SHIFT))
Arjan van de Vened724be2008-01-30 13:34:04 +0100281 pgprot_val(forbidden) |= _PAGE_NX;
Matthieu Castet5bd5a452010-11-16 22:31:26 +0100282#endif
Arjan van de Vened724be2008-01-30 13:34:04 +0100283
284 /*
285 * The kernel text needs to be executable for obvious reasons
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100286 * Does not cover __inittext since that is gone later on. On
287 * 64bit we do not enforce !NX on the low mapping
Arjan van de Vened724be2008-01-30 13:34:04 +0100288 */
289 if (within(address, (unsigned long)_text, (unsigned long)_etext))
290 pgprot_val(forbidden) |= _PAGE_NX;
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100291
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100292 /*
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100293 * The .rodata section needs to be read-only. Using the pfn
294 * catches all aliases.
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100295 */
Alexander Duyckfc8d7822012-11-16 13:57:13 -0800296 if (within(pfn, __pa_symbol(__start_rodata) >> PAGE_SHIFT,
297 __pa_symbol(__end_rodata) >> PAGE_SHIFT))
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100298 pgprot_val(forbidden) |= _PAGE_RW;
Arjan van de Vened724be2008-01-30 13:34:04 +0100299
Kees Cook9ccaf772016-02-17 14:41:14 -0800300#if defined(CONFIG_X86_64)
Suresh Siddha74e08172009-10-14 14:46:56 -0700301 /*
Suresh Siddha502f6602009-10-28 18:46:56 -0800302 * Once the kernel maps the text as RO (kernel_set_to_readonly is set),
303 * kernel text mappings for the large page aligned text, rodata sections
304 * will be always read-only. For the kernel identity mappings covering
305 * the holes caused by this alignment can be anything that user asks.
Suresh Siddha74e08172009-10-14 14:46:56 -0700306 *
307 * This will preserve the large page mappings for kernel text/data
308 * at no extra cost.
309 */
Suresh Siddha502f6602009-10-28 18:46:56 -0800310 if (kernel_set_to_readonly &&
311 within(address, (unsigned long)_text,
Suresh Siddha281ff332010-02-18 11:51:40 -0800312 (unsigned long)__end_rodata_hpage_align)) {
313 unsigned int level;
314
315 /*
316 * Don't enforce the !RW mapping for the kernel text mapping,
317 * if the current mapping is already using small page mapping.
318 * No need to work hard to preserve large page mappings in this
319 * case.
320 *
321 * This also fixes the Linux Xen paravirt guest boot failure
322 * (because of unexpected read-only mappings for kernel identity
323 * mappings). In this paravirt guest case, the kernel text
324 * mapping and the kernel identity mapping share the same
325 * page-table pages. Thus we can't really use different
326 * protections for the kernel text and identity mappings. Also,
327 * these shared mappings are made of small page mappings.
328 * Thus this don't enforce !RW mapping for small page kernel
329 * text mapping logic will help Linux Xen parvirt guest boot
Lucas De Marchi0d2eb442011-03-17 16:24:16 -0300330 * as well.
Suresh Siddha281ff332010-02-18 11:51:40 -0800331 */
332 if (lookup_address(address, &level) && (level != PG_LEVEL_4K))
333 pgprot_val(forbidden) |= _PAGE_RW;
334 }
Suresh Siddha74e08172009-10-14 14:46:56 -0700335#endif
336
Arjan van de Vened724be2008-01-30 13:34:04 +0100337 prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden));
Ingo Molnar687c4822008-01-30 13:34:04 +0100338
339 return prot;
340}
341
Matt Fleming426e34c2013-12-06 21:13:04 +0000342/*
343 * Lookup the page table entry for a virtual address in a specific pgd.
344 * Return a pointer to the entry and the level of the mapping.
345 */
346pte_t *lookup_address_in_pgd(pgd_t *pgd, unsigned long address,
347 unsigned int *level)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100348{
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300349 p4d_t *p4d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 pud_t *pud;
351 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100352
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100353 *level = PG_LEVEL_NONE;
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (pgd_none(*pgd))
356 return NULL;
Ingo Molnar9df84992008-02-04 16:48:09 +0100357
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300358 p4d = p4d_offset(pgd, address);
359 if (p4d_none(*p4d))
360 return NULL;
361
362 *level = PG_LEVEL_512G;
363 if (p4d_large(*p4d) || !p4d_present(*p4d))
364 return (pte_t *)p4d;
365
366 pud = pud_offset(p4d, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (pud_none(*pud))
368 return NULL;
Andi Kleenc2f71ee2008-02-04 16:48:09 +0100369
370 *level = PG_LEVEL_1G;
371 if (pud_large(*pud) || !pud_present(*pud))
372 return (pte_t *)pud;
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 pmd = pmd_offset(pud, address);
375 if (pmd_none(*pmd))
376 return NULL;
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100377
378 *level = PG_LEVEL_2M;
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100379 if (pmd_large(*pmd) || !pmd_present(*pmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return (pte_t *)pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100382 *level = PG_LEVEL_4K;
Ingo Molnar9df84992008-02-04 16:48:09 +0100383
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100384 return pte_offset_kernel(pmd, address);
385}
Borislav Petkov0fd64c22013-10-31 17:25:00 +0100386
387/*
388 * Lookup the page table entry for a virtual address. Return a pointer
389 * to the entry and the level of the mapping.
390 *
391 * Note: We return pud and pmd either when the entry is marked large
392 * or when the present bit is not set. Otherwise we would return a
393 * pointer to a nonexisting mapping.
394 */
395pte_t *lookup_address(unsigned long address, unsigned int *level)
396{
Matt Fleming426e34c2013-12-06 21:13:04 +0000397 return lookup_address_in_pgd(pgd_offset_k(address), address, level);
Borislav Petkov0fd64c22013-10-31 17:25:00 +0100398}
Pekka Paalanen75bb8832008-05-12 21:20:56 +0200399EXPORT_SYMBOL_GPL(lookup_address);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100400
Borislav Petkov0fd64c22013-10-31 17:25:00 +0100401static pte_t *_lookup_address_cpa(struct cpa_data *cpa, unsigned long address,
402 unsigned int *level)
403{
404 if (cpa->pgd)
Matt Fleming426e34c2013-12-06 21:13:04 +0000405 return lookup_address_in_pgd(cpa->pgd + pgd_index(address),
Borislav Petkov0fd64c22013-10-31 17:25:00 +0100406 address, level);
407
408 return lookup_address(address, level);
409}
410
Ingo Molnar9df84992008-02-04 16:48:09 +0100411/*
Juergen Gross792230c2014-11-28 11:53:56 +0100412 * Lookup the PMD entry for a virtual address. Return a pointer to the entry
413 * or NULL if not present.
414 */
415pmd_t *lookup_pmd_address(unsigned long address)
416{
417 pgd_t *pgd;
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300418 p4d_t *p4d;
Juergen Gross792230c2014-11-28 11:53:56 +0100419 pud_t *pud;
420
421 pgd = pgd_offset_k(address);
422 if (pgd_none(*pgd))
423 return NULL;
424
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300425 p4d = p4d_offset(pgd, address);
426 if (p4d_none(*p4d) || p4d_large(*p4d) || !p4d_present(*p4d))
427 return NULL;
428
429 pud = pud_offset(p4d, address);
Juergen Gross792230c2014-11-28 11:53:56 +0100430 if (pud_none(*pud) || pud_large(*pud) || !pud_present(*pud))
431 return NULL;
432
433 return pmd_offset(pud, address);
434}
435
436/*
Dave Hansend7656532013-01-22 13:24:33 -0800437 * This is necessary because __pa() does not work on some
438 * kinds of memory, like vmalloc() or the alloc_remap()
439 * areas on 32-bit NUMA systems. The percpu areas can
440 * end up in this kind of memory, for instance.
441 *
442 * This could be optimized, but it is only intended to be
443 * used at inititalization time, and keeping it
444 * unoptimized should increase the testing coverage for
445 * the more obscure platforms.
446 */
447phys_addr_t slow_virt_to_phys(void *__virt_addr)
448{
449 unsigned long virt_addr = (unsigned long)__virt_addr;
Dexuan Cuibf70e552016-02-25 01:58:12 -0800450 phys_addr_t phys_addr;
451 unsigned long offset;
Dave Hansend7656532013-01-22 13:24:33 -0800452 enum pg_level level;
Dave Hansend7656532013-01-22 13:24:33 -0800453 pte_t *pte;
454
455 pte = lookup_address(virt_addr, &level);
456 BUG_ON(!pte);
Toshi Kani34437e62015-09-17 12:24:20 -0600457
Dexuan Cuibf70e552016-02-25 01:58:12 -0800458 /*
459 * pXX_pfn() returns unsigned long, which must be cast to phys_addr_t
460 * before being left-shifted PAGE_SHIFT bits -- this trick is to
461 * make 32-PAE kernel work correctly.
462 */
Toshi Kani34437e62015-09-17 12:24:20 -0600463 switch (level) {
464 case PG_LEVEL_1G:
Dexuan Cuibf70e552016-02-25 01:58:12 -0800465 phys_addr = (phys_addr_t)pud_pfn(*(pud_t *)pte) << PAGE_SHIFT;
Toshi Kani34437e62015-09-17 12:24:20 -0600466 offset = virt_addr & ~PUD_PAGE_MASK;
467 break;
468 case PG_LEVEL_2M:
Dexuan Cuibf70e552016-02-25 01:58:12 -0800469 phys_addr = (phys_addr_t)pmd_pfn(*(pmd_t *)pte) << PAGE_SHIFT;
Toshi Kani34437e62015-09-17 12:24:20 -0600470 offset = virt_addr & ~PMD_PAGE_MASK;
471 break;
472 default:
Dexuan Cuibf70e552016-02-25 01:58:12 -0800473 phys_addr = (phys_addr_t)pte_pfn(*pte) << PAGE_SHIFT;
Toshi Kani34437e62015-09-17 12:24:20 -0600474 offset = virt_addr & ~PAGE_MASK;
475 }
476
477 return (phys_addr_t)(phys_addr | offset);
Dave Hansend7656532013-01-22 13:24:33 -0800478}
479EXPORT_SYMBOL_GPL(slow_virt_to_phys);
480
481/*
Ingo Molnar9df84992008-02-04 16:48:09 +0100482 * Set the new pmd in all the pgds we know about:
483 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100484static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100485{
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100486 /* change init_mm */
487 set_pte_atomic(kpte, pte);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100488#ifdef CONFIG_X86_32
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100489 if (!SHARED_KERNEL_PMD) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100490 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Jeremy Fitzhardingee3ed9102008-01-30 13:34:11 +0100492 list_for_each_entry(page, &pgd_list, lru) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100493 pgd_t *pgd;
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300494 p4d_t *p4d;
Ingo Molnar44af6c42008-01-30 13:34:03 +0100495 pud_t *pud;
496 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100497
Ingo Molnar44af6c42008-01-30 13:34:03 +0100498 pgd = (pgd_t *)page_address(page) + pgd_index(address);
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300499 p4d = p4d_offset(pgd, address);
500 pud = pud_offset(p4d, address);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100501 pmd = pmd_offset(pud, address);
502 set_pte_atomic((pte_t *)pmd, pte);
503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100505#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
Ingo Molnar9df84992008-02-04 16:48:09 +0100508static int
509try_preserve_large_page(pte_t *kpte, unsigned long address,
510 struct cpa_data *cpa)
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100511{
Toshi Kani3a191092015-09-17 12:24:22 -0600512 unsigned long nextpage_addr, numpages, pmask, psize, addr, pfn, old_pfn;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100513 pte_t new_pte, old_pte, *tmp;
matthieu castet64edc8e2010-11-16 22:30:27 +0100514 pgprot_t old_prot, new_prot, req_prot;
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100515 int i, do_split = 1;
Dave Hansenf3c4fbb2013-01-22 13:24:32 -0800516 enum pg_level level;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100517
Andi Kleenc9caa022008-03-12 03:53:29 +0100518 if (cpa->force_split)
519 return 1;
520
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800521 spin_lock(&pgd_lock);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100522 /*
523 * Check for races, another CPU might have split this page
524 * up already:
525 */
Borislav Petkov82f07122013-10-31 17:25:07 +0100526 tmp = _lookup_address_cpa(cpa, address, &level);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100527 if (tmp != kpte)
528 goto out_unlock;
529
530 switch (level) {
531 case PG_LEVEL_2M:
Toshi Kani3a191092015-09-17 12:24:22 -0600532 old_prot = pmd_pgprot(*(pmd_t *)kpte);
533 old_pfn = pmd_pfn(*(pmd_t *)kpte);
534 break;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100535 case PG_LEVEL_1G:
Toshi Kani3a191092015-09-17 12:24:22 -0600536 old_prot = pud_pgprot(*(pud_t *)kpte);
537 old_pfn = pud_pfn(*(pud_t *)kpte);
Dave Hansenf3c4fbb2013-01-22 13:24:32 -0800538 break;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100539 default:
Ingo Molnarbeaff632008-02-04 16:48:09 +0100540 do_split = -EINVAL;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100541 goto out_unlock;
542 }
543
Toshi Kani3a191092015-09-17 12:24:22 -0600544 psize = page_level_size(level);
545 pmask = page_level_mask(level);
546
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100547 /*
548 * Calculate the number of pages, which fit into this large
549 * page starting at address:
550 */
551 nextpage_addr = (address + psize) & pmask;
552 numpages = (nextpage_addr - address) >> PAGE_SHIFT;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100553 if (numpages < cpa->numpages)
554 cpa->numpages = numpages;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100555
556 /*
557 * We are safe now. Check whether the new pgprot is the same:
Juergen Grossf5b28312014-11-03 14:02:02 +0100558 * Convert protection attributes to 4k-format, as cpa->mask* are set
559 * up accordingly.
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100560 */
561 old_pte = *kpte;
Toshi Kani55696b12015-09-17 12:24:24 -0600562 req_prot = pgprot_large_2_4k(old_prot);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100563
matthieu castet64edc8e2010-11-16 22:30:27 +0100564 pgprot_val(req_prot) &= ~pgprot_val(cpa->mask_clr);
565 pgprot_val(req_prot) |= pgprot_val(cpa->mask_set);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100566
567 /*
Juergen Grossf5b28312014-11-03 14:02:02 +0100568 * req_prot is in format of 4k pages. It must be converted to large
569 * page format: the caching mode includes the PAT bit located at
570 * different bit positions in the two formats.
571 */
572 req_prot = pgprot_4k_2_large(req_prot);
573
574 /*
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800575 * Set the PSE and GLOBAL flags only if the PRESENT flag is
576 * set otherwise pmd_present/pmd_huge will return true even on
577 * a non present pmd. The canon_pgprot will clear _PAGE_GLOBAL
578 * for the ancient hardware that doesn't support it.
579 */
Andrea Arcangelif76cfa32013-04-10 15:28:25 +0200580 if (pgprot_val(req_prot) & _PAGE_PRESENT)
581 pgprot_val(req_prot) |= _PAGE_PSE | _PAGE_GLOBAL;
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800582 else
Andrea Arcangelif76cfa32013-04-10 15:28:25 +0200583 pgprot_val(req_prot) &= ~(_PAGE_PSE | _PAGE_GLOBAL);
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800584
Andrea Arcangelif76cfa32013-04-10 15:28:25 +0200585 req_prot = canon_pgprot(req_prot);
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800586
587 /*
Toshi Kani3a191092015-09-17 12:24:22 -0600588 * old_pfn points to the large page base pfn. So we need
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100589 * to add the offset of the virtual address:
590 */
Toshi Kani3a191092015-09-17 12:24:22 -0600591 pfn = old_pfn + ((address & (psize - 1)) >> PAGE_SHIFT);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100592 cpa->pfn = pfn;
593
matthieu castet64edc8e2010-11-16 22:30:27 +0100594 new_prot = static_protections(req_prot, address, pfn);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100595
596 /*
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100597 * We need to check the full range, whether
598 * static_protection() requires a different pgprot for one of
599 * the pages in the range we try to preserve:
600 */
matthieu castet64edc8e2010-11-16 22:30:27 +0100601 addr = address & pmask;
Toshi Kani3a191092015-09-17 12:24:22 -0600602 pfn = old_pfn;
matthieu castet64edc8e2010-11-16 22:30:27 +0100603 for (i = 0; i < (psize >> PAGE_SHIFT); i++, addr += PAGE_SIZE, pfn++) {
604 pgprot_t chk_prot = static_protections(req_prot, addr, pfn);
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100605
606 if (pgprot_val(chk_prot) != pgprot_val(new_prot))
607 goto out_unlock;
608 }
609
610 /*
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100611 * If there are no changes, return. maxpages has been updated
612 * above:
613 */
614 if (pgprot_val(new_prot) == pgprot_val(old_prot)) {
Ingo Molnarbeaff632008-02-04 16:48:09 +0100615 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100616 goto out_unlock;
617 }
618
619 /*
620 * We need to change the attributes. Check, whether we can
621 * change the large page in one go. We request a split, when
622 * the address is not aligned and the number of pages is
623 * smaller than the number of pages in the large page. Note
624 * that we limited the number of possible pages already to
625 * the number of pages in the large page.
626 */
matthieu castet64edc8e2010-11-16 22:30:27 +0100627 if (address == (address & pmask) && cpa->numpages == (psize >> PAGE_SHIFT)) {
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100628 /*
629 * The address is aligned and the number of pages
630 * covers the full page.
631 */
Toshi Kani3a191092015-09-17 12:24:22 -0600632 new_pte = pfn_pte(old_pfn, new_prot);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100633 __set_pmd_pte(kpte, address, new_pte);
Shaohua Lid75586a2008-08-21 10:46:06 +0800634 cpa->flags |= CPA_FLUSHTLB;
Ingo Molnarbeaff632008-02-04 16:48:09 +0100635 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100636 }
637
638out_unlock:
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800639 spin_unlock(&pgd_lock);
Ingo Molnar9df84992008-02-04 16:48:09 +0100640
Ingo Molnarbeaff632008-02-04 16:48:09 +0100641 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100642}
643
Borislav Petkov59528862013-03-21 18:16:57 +0100644static int
Borislav Petkov82f07122013-10-31 17:25:07 +0100645__split_large_page(struct cpa_data *cpa, pte_t *kpte, unsigned long address,
646 struct page *base)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100647{
Borislav Petkov59528862013-03-21 18:16:57 +0100648 pte_t *pbase = (pte_t *)page_address(base);
Toshi Kanid551aaa2015-09-17 12:24:23 -0600649 unsigned long ref_pfn, pfn, pfninc = 1;
Ingo Molnar86f03989d2008-01-30 13:34:09 +0100650 unsigned int i, level;
Wen Congyangae9aae92013-02-22 16:33:04 -0800651 pte_t *tmp;
Ingo Molnar9df84992008-02-04 16:48:09 +0100652 pgprot_t ref_prot;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100653
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800654 spin_lock(&pgd_lock);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100655 /*
656 * Check for races, another CPU might have split this page
657 * up for us already:
658 */
Borislav Petkov82f07122013-10-31 17:25:07 +0100659 tmp = _lookup_address_cpa(cpa, address, &level);
Wen Congyangae9aae92013-02-22 16:33:04 -0800660 if (tmp != kpte) {
661 spin_unlock(&pgd_lock);
662 return 1;
663 }
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100664
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700665 paravirt_alloc_pte(&init_mm, page_to_pfn(base));
Juergen Grossf5b28312014-11-03 14:02:02 +0100666
Toshi Kanid551aaa2015-09-17 12:24:23 -0600667 switch (level) {
668 case PG_LEVEL_2M:
669 ref_prot = pmd_pgprot(*(pmd_t *)kpte);
670 /* clear PSE and promote PAT bit to correct position */
Juergen Grossf5b28312014-11-03 14:02:02 +0100671 ref_prot = pgprot_large_2_4k(ref_prot);
Toshi Kanid551aaa2015-09-17 12:24:23 -0600672 ref_pfn = pmd_pfn(*(pmd_t *)kpte);
673 break;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100674
Toshi Kanid551aaa2015-09-17 12:24:23 -0600675 case PG_LEVEL_1G:
676 ref_prot = pud_pgprot(*(pud_t *)kpte);
677 ref_pfn = pud_pfn(*(pud_t *)kpte);
Andi Kleenf07333f2008-02-04 16:48:09 +0100678 pfninc = PMD_PAGE_SIZE >> PAGE_SHIFT;
Toshi Kanid551aaa2015-09-17 12:24:23 -0600679
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800680 /*
Toshi Kanid551aaa2015-09-17 12:24:23 -0600681 * Clear the PSE flags if the PRESENT flag is not set
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800682 * otherwise pmd_present/pmd_huge will return true
683 * even on a non present pmd.
684 */
Toshi Kanid551aaa2015-09-17 12:24:23 -0600685 if (!(pgprot_val(ref_prot) & _PAGE_PRESENT))
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800686 pgprot_val(ref_prot) &= ~_PAGE_PSE;
Toshi Kanid551aaa2015-09-17 12:24:23 -0600687 break;
688
689 default:
690 spin_unlock(&pgd_lock);
691 return 1;
Andi Kleenf07333f2008-02-04 16:48:09 +0100692 }
Andi Kleenf07333f2008-02-04 16:48:09 +0100693
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100694 /*
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800695 * Set the GLOBAL flags only if the PRESENT flag is set
696 * otherwise pmd/pte_present will return true even on a non
697 * present pmd/pte. The canon_pgprot will clear _PAGE_GLOBAL
698 * for the ancient hardware that doesn't support it.
699 */
700 if (pgprot_val(ref_prot) & _PAGE_PRESENT)
701 pgprot_val(ref_prot) |= _PAGE_GLOBAL;
702 else
703 pgprot_val(ref_prot) &= ~_PAGE_GLOBAL;
704
705 /*
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100706 * Get the target pfn from the original entry:
707 */
Toshi Kanid551aaa2015-09-17 12:24:23 -0600708 pfn = ref_pfn;
Andi Kleenf07333f2008-02-04 16:48:09 +0100709 for (i = 0; i < PTRS_PER_PTE; i++, pfn += pfninc)
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800710 set_pte(&pbase[i], pfn_pte(pfn, canon_pgprot(ref_prot)));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100711
Sai Praneeth2c66e24d2015-10-16 16:20:27 -0700712 if (virt_addr_valid(address)) {
713 unsigned long pfn = PFN_DOWN(__pa(address));
714
715 if (pfn_range_is_mapped(pfn, pfn + 1))
716 split_page_count(level);
717 }
Yinghai Luf361a452008-07-10 20:38:26 -0700718
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100719 /*
Ingo Molnar07a66d72009-02-20 08:04:13 +0100720 * Install the new, split up pagetable.
Huang, Ying4c881ca2008-01-30 13:34:04 +0100721 *
Ingo Molnar07a66d72009-02-20 08:04:13 +0100722 * We use the standard kernel pagetable protections for the new
723 * pagetable protections, the actual ptes set above control the
724 * primary protection behavior:
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100725 */
Ingo Molnar07a66d72009-02-20 08:04:13 +0100726 __set_pmd_pte(kpte, address, mk_pte(base, __pgprot(_KERNPG_TABLE)));
Ingo Molnar211b3d02009-03-10 22:31:03 +0100727
728 /*
729 * Intel Atom errata AAH41 workaround.
730 *
731 * The real fix should be in hw or in a microcode update, but
732 * we also probabilistically try to reduce the window of having
733 * a large TLB mixed with 4K TLBs while instruction fetches are
734 * going on.
735 */
736 __flush_tlb_all();
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800737 spin_unlock(&pgd_lock);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100738
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100739 return 0;
740}
741
Borislav Petkov82f07122013-10-31 17:25:07 +0100742static int split_large_page(struct cpa_data *cpa, pte_t *kpte,
743 unsigned long address)
Wen Congyangae9aae92013-02-22 16:33:04 -0800744{
Wen Congyangae9aae92013-02-22 16:33:04 -0800745 struct page *base;
746
Christian Borntraeger288cf3c2016-03-15 14:57:33 -0700747 if (!debug_pagealloc_enabled())
Wen Congyangae9aae92013-02-22 16:33:04 -0800748 spin_unlock(&cpa_lock);
749 base = alloc_pages(GFP_KERNEL | __GFP_NOTRACK, 0);
Christian Borntraeger288cf3c2016-03-15 14:57:33 -0700750 if (!debug_pagealloc_enabled())
Wen Congyangae9aae92013-02-22 16:33:04 -0800751 spin_lock(&cpa_lock);
752 if (!base)
753 return -ENOMEM;
754
Borislav Petkov82f07122013-10-31 17:25:07 +0100755 if (__split_large_page(cpa, kpte, address, base))
Wen Congyangae9aae92013-02-22 16:33:04 -0800756 __free_page(base);
757
758 return 0;
759}
760
Borislav Petkov52a628f2013-10-31 17:25:06 +0100761static bool try_to_free_pte_page(pte_t *pte)
762{
763 int i;
764
765 for (i = 0; i < PTRS_PER_PTE; i++)
766 if (!pte_none(pte[i]))
767 return false;
768
769 free_page((unsigned long)pte);
770 return true;
771}
772
773static bool try_to_free_pmd_page(pmd_t *pmd)
774{
775 int i;
776
777 for (i = 0; i < PTRS_PER_PMD; i++)
778 if (!pmd_none(pmd[i]))
779 return false;
780
781 free_page((unsigned long)pmd);
782 return true;
783}
784
785static bool unmap_pte_range(pmd_t *pmd, unsigned long start, unsigned long end)
786{
787 pte_t *pte = pte_offset_kernel(pmd, start);
788
789 while (start < end) {
790 set_pte(pte, __pte(0));
791
792 start += PAGE_SIZE;
793 pte++;
794 }
795
796 if (try_to_free_pte_page((pte_t *)pmd_page_vaddr(*pmd))) {
797 pmd_clear(pmd);
798 return true;
799 }
800 return false;
801}
802
803static void __unmap_pmd_range(pud_t *pud, pmd_t *pmd,
804 unsigned long start, unsigned long end)
805{
806 if (unmap_pte_range(pmd, start, end))
807 if (try_to_free_pmd_page((pmd_t *)pud_page_vaddr(*pud)))
808 pud_clear(pud);
809}
810
811static void unmap_pmd_range(pud_t *pud, unsigned long start, unsigned long end)
812{
813 pmd_t *pmd = pmd_offset(pud, start);
814
815 /*
816 * Not on a 2MB page boundary?
817 */
818 if (start & (PMD_SIZE - 1)) {
819 unsigned long next_page = (start + PMD_SIZE) & PMD_MASK;
820 unsigned long pre_end = min_t(unsigned long, end, next_page);
821
822 __unmap_pmd_range(pud, pmd, start, pre_end);
823
824 start = pre_end;
825 pmd++;
826 }
827
828 /*
829 * Try to unmap in 2M chunks.
830 */
831 while (end - start >= PMD_SIZE) {
832 if (pmd_large(*pmd))
833 pmd_clear(pmd);
834 else
835 __unmap_pmd_range(pud, pmd, start, start + PMD_SIZE);
836
837 start += PMD_SIZE;
838 pmd++;
839 }
840
841 /*
842 * 4K leftovers?
843 */
844 if (start < end)
845 return __unmap_pmd_range(pud, pmd, start, end);
846
847 /*
848 * Try again to free the PMD page if haven't succeeded above.
849 */
850 if (!pud_none(*pud))
851 if (try_to_free_pmd_page((pmd_t *)pud_page_vaddr(*pud)))
852 pud_clear(pud);
853}
Borislav Petkov0bb8aee2013-10-31 17:25:05 +0100854
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300855static void unmap_pud_range(p4d_t *p4d, unsigned long start, unsigned long end)
Borislav Petkov0bb8aee2013-10-31 17:25:05 +0100856{
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300857 pud_t *pud = pud_offset(p4d, start);
Borislav Petkov0bb8aee2013-10-31 17:25:05 +0100858
859 /*
860 * Not on a GB page boundary?
861 */
862 if (start & (PUD_SIZE - 1)) {
863 unsigned long next_page = (start + PUD_SIZE) & PUD_MASK;
864 unsigned long pre_end = min_t(unsigned long, end, next_page);
865
866 unmap_pmd_range(pud, start, pre_end);
867
868 start = pre_end;
869 pud++;
870 }
871
872 /*
873 * Try to unmap in 1G chunks?
874 */
875 while (end - start >= PUD_SIZE) {
876
877 if (pud_large(*pud))
878 pud_clear(pud);
879 else
880 unmap_pmd_range(pud, start, start + PUD_SIZE);
881
882 start += PUD_SIZE;
883 pud++;
884 }
885
886 /*
887 * 2M leftovers?
888 */
889 if (start < end)
890 unmap_pmd_range(pud, start, end);
891
892 /*
893 * No need to try to free the PUD page because we'll free it in
894 * populate_pgd's error path
895 */
896}
897
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100898static int alloc_pte_page(pmd_t *pmd)
899{
900 pte_t *pte = (pte_t *)get_zeroed_page(GFP_KERNEL | __GFP_NOTRACK);
901 if (!pte)
902 return -1;
903
904 set_pmd(pmd, __pmd(__pa(pte) | _KERNPG_TABLE));
905 return 0;
906}
907
Borislav Petkov4b235382013-10-31 17:25:02 +0100908static int alloc_pmd_page(pud_t *pud)
909{
910 pmd_t *pmd = (pmd_t *)get_zeroed_page(GFP_KERNEL | __GFP_NOTRACK);
911 if (!pmd)
912 return -1;
913
914 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE));
915 return 0;
916}
917
Borislav Petkovc6b6f362013-10-31 17:25:04 +0100918static void populate_pte(struct cpa_data *cpa,
919 unsigned long start, unsigned long end,
920 unsigned num_pages, pmd_t *pmd, pgprot_t pgprot)
921{
922 pte_t *pte;
923
924 pte = pte_offset_kernel(pmd, start);
925
Sai Praneeth3976301502016-02-17 12:35:56 +0000926 /*
927 * Set the GLOBAL flags only if the PRESENT flag is
928 * set otherwise pte_present will return true even on
929 * a non present pte. The canon_pgprot will clear
930 * _PAGE_GLOBAL for the ancient hardware that doesn't
931 * support it.
932 */
933 if (pgprot_val(pgprot) & _PAGE_PRESENT)
934 pgprot_val(pgprot) |= _PAGE_GLOBAL;
935 else
936 pgprot_val(pgprot) &= ~_PAGE_GLOBAL;
937
938 pgprot = canon_pgprot(pgprot);
939
Borislav Petkovc6b6f362013-10-31 17:25:04 +0100940 while (num_pages-- && start < end) {
Matt Flemingedc3b912015-11-27 21:09:31 +0000941 set_pte(pte, pfn_pte(cpa->pfn, pgprot));
Borislav Petkovc6b6f362013-10-31 17:25:04 +0100942
943 start += PAGE_SIZE;
Matt Flemingedc3b912015-11-27 21:09:31 +0000944 cpa->pfn++;
Borislav Petkovc6b6f362013-10-31 17:25:04 +0100945 pte++;
946 }
947}
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100948
Matt Fleminge535ec02016-09-20 14:26:21 +0100949static long populate_pmd(struct cpa_data *cpa,
950 unsigned long start, unsigned long end,
951 unsigned num_pages, pud_t *pud, pgprot_t pgprot)
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100952{
Matt Fleminge535ec02016-09-20 14:26:21 +0100953 long cur_pages = 0;
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100954 pmd_t *pmd;
Juergen Grossf5b28312014-11-03 14:02:02 +0100955 pgprot_t pmd_pgprot;
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100956
957 /*
958 * Not on a 2M boundary?
959 */
960 if (start & (PMD_SIZE - 1)) {
961 unsigned long pre_end = start + (num_pages << PAGE_SHIFT);
962 unsigned long next_page = (start + PMD_SIZE) & PMD_MASK;
963
964 pre_end = min_t(unsigned long, pre_end, next_page);
965 cur_pages = (pre_end - start) >> PAGE_SHIFT;
966 cur_pages = min_t(unsigned int, num_pages, cur_pages);
967
968 /*
969 * Need a PTE page?
970 */
971 pmd = pmd_offset(pud, start);
972 if (pmd_none(*pmd))
973 if (alloc_pte_page(pmd))
974 return -1;
975
976 populate_pte(cpa, start, pre_end, cur_pages, pmd, pgprot);
977
978 start = pre_end;
979 }
980
981 /*
982 * We mapped them all?
983 */
984 if (num_pages == cur_pages)
985 return cur_pages;
986
Juergen Grossf5b28312014-11-03 14:02:02 +0100987 pmd_pgprot = pgprot_4k_2_large(pgprot);
988
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100989 while (end - start >= PMD_SIZE) {
990
991 /*
992 * We cannot use a 1G page so allocate a PMD page if needed.
993 */
994 if (pud_none(*pud))
995 if (alloc_pmd_page(pud))
996 return -1;
997
998 pmd = pmd_offset(pud, start);
999
Matt Flemingedc3b912015-11-27 21:09:31 +00001000 set_pmd(pmd, __pmd(cpa->pfn << PAGE_SHIFT | _PAGE_PSE |
Juergen Grossf5b28312014-11-03 14:02:02 +01001001 massage_pgprot(pmd_pgprot)));
Borislav Petkovf900a4b2013-10-31 17:25:03 +01001002
1003 start += PMD_SIZE;
Matt Flemingedc3b912015-11-27 21:09:31 +00001004 cpa->pfn += PMD_SIZE >> PAGE_SHIFT;
Borislav Petkovf900a4b2013-10-31 17:25:03 +01001005 cur_pages += PMD_SIZE >> PAGE_SHIFT;
1006 }
1007
1008 /*
1009 * Map trailing 4K pages.
1010 */
1011 if (start < end) {
1012 pmd = pmd_offset(pud, start);
1013 if (pmd_none(*pmd))
1014 if (alloc_pte_page(pmd))
1015 return -1;
1016
1017 populate_pte(cpa, start, end, num_pages - cur_pages,
1018 pmd, pgprot);
1019 }
1020 return num_pages;
1021}
Borislav Petkov4b235382013-10-31 17:25:02 +01001022
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001023static int populate_pud(struct cpa_data *cpa, unsigned long start, p4d_t *p4d,
1024 pgprot_t pgprot)
Borislav Petkov4b235382013-10-31 17:25:02 +01001025{
1026 pud_t *pud;
1027 unsigned long end;
Matt Fleminge535ec02016-09-20 14:26:21 +01001028 long cur_pages = 0;
Juergen Grossf5b28312014-11-03 14:02:02 +01001029 pgprot_t pud_pgprot;
Borislav Petkov4b235382013-10-31 17:25:02 +01001030
1031 end = start + (cpa->numpages << PAGE_SHIFT);
1032
1033 /*
1034 * Not on a Gb page boundary? => map everything up to it with
1035 * smaller pages.
1036 */
1037 if (start & (PUD_SIZE - 1)) {
1038 unsigned long pre_end;
1039 unsigned long next_page = (start + PUD_SIZE) & PUD_MASK;
1040
1041 pre_end = min_t(unsigned long, end, next_page);
1042 cur_pages = (pre_end - start) >> PAGE_SHIFT;
1043 cur_pages = min_t(int, (int)cpa->numpages, cur_pages);
1044
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001045 pud = pud_offset(p4d, start);
Borislav Petkov4b235382013-10-31 17:25:02 +01001046
1047 /*
1048 * Need a PMD page?
1049 */
1050 if (pud_none(*pud))
1051 if (alloc_pmd_page(pud))
1052 return -1;
1053
1054 cur_pages = populate_pmd(cpa, start, pre_end, cur_pages,
1055 pud, pgprot);
1056 if (cur_pages < 0)
1057 return cur_pages;
1058
1059 start = pre_end;
1060 }
1061
1062 /* We mapped them all? */
1063 if (cpa->numpages == cur_pages)
1064 return cur_pages;
1065
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001066 pud = pud_offset(p4d, start);
Juergen Grossf5b28312014-11-03 14:02:02 +01001067 pud_pgprot = pgprot_4k_2_large(pgprot);
Borislav Petkov4b235382013-10-31 17:25:02 +01001068
1069 /*
1070 * Map everything starting from the Gb boundary, possibly with 1G pages
1071 */
Borislav Petkovb8291adc2016-03-29 17:41:58 +02001072 while (boot_cpu_has(X86_FEATURE_GBPAGES) && end - start >= PUD_SIZE) {
Matt Flemingedc3b912015-11-27 21:09:31 +00001073 set_pud(pud, __pud(cpa->pfn << PAGE_SHIFT | _PAGE_PSE |
Juergen Grossf5b28312014-11-03 14:02:02 +01001074 massage_pgprot(pud_pgprot)));
Borislav Petkov4b235382013-10-31 17:25:02 +01001075
1076 start += PUD_SIZE;
Matt Flemingedc3b912015-11-27 21:09:31 +00001077 cpa->pfn += PUD_SIZE >> PAGE_SHIFT;
Borislav Petkov4b235382013-10-31 17:25:02 +01001078 cur_pages += PUD_SIZE >> PAGE_SHIFT;
1079 pud++;
1080 }
1081
1082 /* Map trailing leftover */
1083 if (start < end) {
Matt Fleminge535ec02016-09-20 14:26:21 +01001084 long tmp;
Borislav Petkov4b235382013-10-31 17:25:02 +01001085
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001086 pud = pud_offset(p4d, start);
Borislav Petkov4b235382013-10-31 17:25:02 +01001087 if (pud_none(*pud))
1088 if (alloc_pmd_page(pud))
1089 return -1;
1090
1091 tmp = populate_pmd(cpa, start, end, cpa->numpages - cur_pages,
1092 pud, pgprot);
1093 if (tmp < 0)
1094 return cur_pages;
1095
1096 cur_pages += tmp;
1097 }
1098 return cur_pages;
1099}
Borislav Petkovf3f72962013-10-31 17:25:01 +01001100
1101/*
1102 * Restrictions for kernel page table do not necessarily apply when mapping in
1103 * an alternate PGD.
1104 */
1105static int populate_pgd(struct cpa_data *cpa, unsigned long addr)
1106{
1107 pgprot_t pgprot = __pgprot(_KERNPG_TABLE);
Borislav Petkovf3f72962013-10-31 17:25:01 +01001108 pud_t *pud = NULL; /* shut up gcc */
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001109 p4d_t *p4d;
Borislav Petkov42a54772014-01-18 12:48:16 +01001110 pgd_t *pgd_entry;
Matt Fleminge535ec02016-09-20 14:26:21 +01001111 long ret;
Borislav Petkovf3f72962013-10-31 17:25:01 +01001112
1113 pgd_entry = cpa->pgd + pgd_index(addr);
1114
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001115 if (pgd_none(*pgd_entry)) {
1116 p4d = (p4d_t *)get_zeroed_page(GFP_KERNEL | __GFP_NOTRACK);
1117 if (!p4d)
1118 return -1;
1119
1120 set_pgd(pgd_entry, __pgd(__pa(p4d) | _KERNPG_TABLE));
1121 }
1122
Borislav Petkovf3f72962013-10-31 17:25:01 +01001123 /*
1124 * Allocate a PUD page and hand it down for mapping.
1125 */
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001126 p4d = p4d_offset(pgd_entry, addr);
1127 if (p4d_none(*p4d)) {
Borislav Petkovf3f72962013-10-31 17:25:01 +01001128 pud = (pud_t *)get_zeroed_page(GFP_KERNEL | __GFP_NOTRACK);
1129 if (!pud)
1130 return -1;
Andy Lutomirski530dd8d2016-07-22 21:58:08 -07001131
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001132 set_p4d(p4d, __p4d(__pa(pud) | _KERNPG_TABLE));
Borislav Petkovf3f72962013-10-31 17:25:01 +01001133 }
1134
1135 pgprot_val(pgprot) &= ~pgprot_val(cpa->mask_clr);
1136 pgprot_val(pgprot) |= pgprot_val(cpa->mask_set);
1137
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001138 ret = populate_pud(cpa, addr, p4d, pgprot);
Borislav Petkov0bb8aee2013-10-31 17:25:05 +01001139 if (ret < 0) {
Andy Lutomirski55920d32016-07-23 09:59:28 -07001140 /*
1141 * Leave the PUD page in place in case some other CPU or thread
1142 * already found it, but remove any useless entries we just
1143 * added to it.
1144 */
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001145 unmap_pud_range(p4d, addr,
Borislav Petkov0bb8aee2013-10-31 17:25:05 +01001146 addr + (cpa->numpages << PAGE_SHIFT));
Borislav Petkov0bb8aee2013-10-31 17:25:05 +01001147 return ret;
1148 }
Borislav Petkov42a54772014-01-18 12:48:16 +01001149
Borislav Petkovf3f72962013-10-31 17:25:01 +01001150 cpa->numpages = ret;
1151 return 0;
1152}
1153
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001154static int __cpa_process_fault(struct cpa_data *cpa, unsigned long vaddr,
1155 int primary)
1156{
Matt Fleming7fc84422016-04-25 21:06:35 +01001157 if (cpa->pgd) {
1158 /*
1159 * Right now, we only execute this code path when mapping
1160 * the EFI virtual memory map regions, no other users
1161 * provide a ->pgd value. This may change in the future.
1162 */
Borislav Petkov82f07122013-10-31 17:25:07 +01001163 return populate_pgd(cpa, vaddr);
Matt Fleming7fc84422016-04-25 21:06:35 +01001164 }
Borislav Petkov82f07122013-10-31 17:25:07 +01001165
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001166 /*
1167 * Ignore all non primary paths.
1168 */
Jan Beulich405e11332016-02-10 02:03:00 -07001169 if (!primary) {
1170 cpa->numpages = 1;
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001171 return 0;
Jan Beulich405e11332016-02-10 02:03:00 -07001172 }
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001173
1174 /*
1175 * Ignore the NULL PTE for kernel identity mapping, as it is expected
1176 * to have holes.
1177 * Also set numpages to '1' indicating that we processed cpa req for
1178 * one virtual address page and its pfn. TBD: numpages can be set based
1179 * on the initial value and the level returned by lookup_address().
1180 */
1181 if (within(vaddr, PAGE_OFFSET,
1182 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT))) {
1183 cpa->numpages = 1;
1184 cpa->pfn = __pa(vaddr) >> PAGE_SHIFT;
1185 return 0;
1186 } else {
1187 WARN(1, KERN_WARNING "CPA: called for zero pte. "
1188 "vaddr = %lx cpa->vaddr = %lx\n", vaddr,
1189 *cpa->vaddr);
1190
1191 return -EFAULT;
1192 }
1193}
1194
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001195static int __change_page_attr(struct cpa_data *cpa, int primary)
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001196{
Shaohua Lid75586a2008-08-21 10:46:06 +08001197 unsigned long address;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +01001198 int do_split, err;
1199 unsigned int level;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001200 pte_t *kpte, old_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001202 if (cpa->flags & CPA_PAGES_ARRAY) {
1203 struct page *page = cpa->pages[cpa->curpage];
1204 if (unlikely(PageHighMem(page)))
1205 return 0;
1206 address = (unsigned long)page_address(page);
1207 } else if (cpa->flags & CPA_ARRAY)
Shaohua Lid75586a2008-08-21 10:46:06 +08001208 address = cpa->vaddr[cpa->curpage];
1209 else
1210 address = *cpa->vaddr;
Ingo Molnar97f99fe2008-01-30 13:33:55 +01001211repeat:
Borislav Petkov82f07122013-10-31 17:25:07 +01001212 kpte = _lookup_address_cpa(cpa, address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 if (!kpte)
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001214 return __cpa_process_fault(cpa, address, primary);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001215
1216 old_pte = *kpte;
Dave Hansendcb32d92016-07-07 17:19:15 -07001217 if (pte_none(old_pte))
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001218 return __cpa_process_fault(cpa, address, primary);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001219
Thomas Gleixner30551bb2008-01-30 13:34:04 +01001220 if (level == PG_LEVEL_4K) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001221 pte_t new_pte;
Arjan van de Ven626c2c92008-02-04 16:48:05 +01001222 pgprot_t new_prot = pte_pgprot(old_pte);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001223 unsigned long pfn = pte_pfn(old_pte);
Thomas Gleixnera72a08a2008-01-30 13:34:07 +01001224
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001225 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
1226 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Ingo Molnar86f03989d2008-01-30 13:34:09 +01001227
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001228 new_prot = static_protections(new_prot, address, pfn);
Ingo Molnar86f03989d2008-01-30 13:34:09 +01001229
Arjan van de Ven626c2c92008-02-04 16:48:05 +01001230 /*
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -08001231 * Set the GLOBAL flags only if the PRESENT flag is
1232 * set otherwise pte_present will return true even on
1233 * a non present pte. The canon_pgprot will clear
1234 * _PAGE_GLOBAL for the ancient hardware that doesn't
1235 * support it.
1236 */
1237 if (pgprot_val(new_prot) & _PAGE_PRESENT)
1238 pgprot_val(new_prot) |= _PAGE_GLOBAL;
1239 else
1240 pgprot_val(new_prot) &= ~_PAGE_GLOBAL;
1241
1242 /*
Arjan van de Ven626c2c92008-02-04 16:48:05 +01001243 * We need to keep the pfn from the existing PTE,
1244 * after all we're only going to change it's attributes
1245 * not the memory it points to
1246 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001247 new_pte = pfn_pte(pfn, canon_pgprot(new_prot));
1248 cpa->pfn = pfn;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +01001249 /*
1250 * Do we really change anything ?
1251 */
1252 if (pte_val(old_pte) != pte_val(new_pte)) {
1253 set_pte_atomic(kpte, new_pte);
Shaohua Lid75586a2008-08-21 10:46:06 +08001254 cpa->flags |= CPA_FLUSHTLB;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +01001255 }
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +01001256 cpa->numpages = 1;
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001257 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 }
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001259
1260 /*
1261 * Check, whether we can keep the large page intact
1262 * and just change the pte:
1263 */
Ingo Molnarbeaff632008-02-04 16:48:09 +01001264 do_split = try_preserve_large_page(kpte, address, cpa);
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001265 /*
1266 * When the range fits into the existing large page,
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +01001267 * return. cp->numpages and cpa->tlbflush have been updated in
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001268 * try_large_page:
1269 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +01001270 if (do_split <= 0)
1271 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001272
1273 /*
1274 * We have to split the large page:
1275 */
Borislav Petkov82f07122013-10-31 17:25:07 +01001276 err = split_large_page(cpa, kpte, address);
Ingo Molnar87f7f8f2008-02-04 16:48:10 +01001277 if (!err) {
Suresh Siddhaad5ca552008-09-23 14:00:42 -07001278 /*
1279 * Do a global flush tlb after splitting the large page
1280 * and before we do the actual change page attribute in the PTE.
1281 *
1282 * With out this, we violate the TLB application note, that says
1283 * "The TLBs may contain both ordinary and large-page
1284 * translations for a 4-KByte range of linear addresses. This
1285 * may occur if software modifies the paging structures so that
1286 * the page size used for the address range changes. If the two
1287 * translations differ with respect to page frame or attributes
1288 * (e.g., permissions), processor behavior is undefined and may
1289 * be implementation-specific."
1290 *
1291 * We do this global tlb flush inside the cpa_lock, so that we
1292 * don't allow any other cpu, with stale tlb entries change the
1293 * page attribute in parallel, that also falls into the
1294 * just split large page entry.
1295 */
1296 flush_tlb_all();
Ingo Molnar87f7f8f2008-02-04 16:48:10 +01001297 goto repeat;
1298 }
Ingo Molnarbeaff632008-02-04 16:48:09 +01001299
Ingo Molnar87f7f8f2008-02-04 16:48:10 +01001300 return err;
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001301}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001303static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias);
1304
1305static int cpa_process_alias(struct cpa_data *cpa)
Ingo Molnar44af6c42008-01-30 13:34:03 +01001306{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001307 struct cpa_data alias_cpa;
Tejun Heo992f4c12009-06-22 11:56:24 +09001308 unsigned long laddr = (unsigned long)__va(cpa->pfn << PAGE_SHIFT);
Tejun Heoe933a732009-08-14 15:00:53 +09001309 unsigned long vaddr;
Tejun Heo992f4c12009-06-22 11:56:24 +09001310 int ret;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001311
Yinghai Lu8eb57792012-11-16 19:38:49 -08001312 if (!pfn_range_is_mapped(cpa->pfn, cpa->pfn + 1))
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001313 return 0;
1314
Thomas Gleixnerf34b4392008-02-15 22:17:57 +01001315 /*
1316 * No need to redo, when the primary call touched the direct
1317 * mapping already:
1318 */
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001319 if (cpa->flags & CPA_PAGES_ARRAY) {
1320 struct page *page = cpa->pages[cpa->curpage];
1321 if (unlikely(PageHighMem(page)))
1322 return 0;
1323 vaddr = (unsigned long)page_address(page);
1324 } else if (cpa->flags & CPA_ARRAY)
Shaohua Lid75586a2008-08-21 10:46:06 +08001325 vaddr = cpa->vaddr[cpa->curpage];
1326 else
1327 vaddr = *cpa->vaddr;
1328
1329 if (!(within(vaddr, PAGE_OFFSET,
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001330 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT)))) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001331
Thomas Gleixnerf34b4392008-02-15 22:17:57 +01001332 alias_cpa = *cpa;
Tejun Heo992f4c12009-06-22 11:56:24 +09001333 alias_cpa.vaddr = &laddr;
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001334 alias_cpa.flags &= ~(CPA_PAGES_ARRAY | CPA_ARRAY);
Shaohua Lid75586a2008-08-21 10:46:06 +08001335
Thomas Gleixnerf34b4392008-02-15 22:17:57 +01001336 ret = __change_page_attr_set_clr(&alias_cpa, 0);
Tejun Heo992f4c12009-06-22 11:56:24 +09001337 if (ret)
1338 return ret;
Thomas Gleixnerf34b4392008-02-15 22:17:57 +01001339 }
Ingo Molnar44af6c42008-01-30 13:34:03 +01001340
Arjan van de Ven488fd992008-01-30 13:34:07 +01001341#ifdef CONFIG_X86_64
Thomas Gleixner08797502008-01-30 13:34:09 +01001342 /*
Tejun Heo992f4c12009-06-22 11:56:24 +09001343 * If the primary call didn't touch the high mapping already
1344 * and the physical address is inside the kernel map, we need
Thomas Gleixner08797502008-01-30 13:34:09 +01001345 * to touch the high mapped kernel as well:
1346 */
Tejun Heo992f4c12009-06-22 11:56:24 +09001347 if (!within(vaddr, (unsigned long)_text, _brk_end) &&
Thomas Garnier4ff53082016-06-15 12:05:45 -07001348 within_inclusive(cpa->pfn, highmap_start_pfn(),
1349 highmap_end_pfn())) {
Tejun Heo992f4c12009-06-22 11:56:24 +09001350 unsigned long temp_cpa_vaddr = (cpa->pfn << PAGE_SHIFT) +
1351 __START_KERNEL_map - phys_base;
1352 alias_cpa = *cpa;
1353 alias_cpa.vaddr = &temp_cpa_vaddr;
1354 alias_cpa.flags &= ~(CPA_PAGES_ARRAY | CPA_ARRAY);
Thomas Gleixner08797502008-01-30 13:34:09 +01001355
Tejun Heo992f4c12009-06-22 11:56:24 +09001356 /*
1357 * The high mapping range is imprecise, so ignore the
1358 * return value.
1359 */
1360 __change_page_attr_set_clr(&alias_cpa, 0);
1361 }
Thomas Gleixner08797502008-01-30 13:34:09 +01001362#endif
Tejun Heo992f4c12009-06-22 11:56:24 +09001363
1364 return 0;
Ingo Molnar44af6c42008-01-30 13:34:03 +01001365}
1366
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001367static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias)
Thomas Gleixnerff314522008-01-30 13:34:08 +01001368{
Matt Fleminge535ec02016-09-20 14:26:21 +01001369 unsigned long numpages = cpa->numpages;
1370 int ret;
Thomas Gleixnerff314522008-01-30 13:34:08 +01001371
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001372 while (numpages) {
1373 /*
1374 * Store the remaining nr of pages for the large page
1375 * preservation check.
1376 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +01001377 cpa->numpages = numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +08001378 /* for array changes, we can't use large page */
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001379 if (cpa->flags & (CPA_ARRAY | CPA_PAGES_ARRAY))
Shaohua Lid75586a2008-08-21 10:46:06 +08001380 cpa->numpages = 1;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001381
Christian Borntraeger288cf3c2016-03-15 14:57:33 -07001382 if (!debug_pagealloc_enabled())
Suresh Siddhaad5ca552008-09-23 14:00:42 -07001383 spin_lock(&cpa_lock);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001384 ret = __change_page_attr(cpa, checkalias);
Christian Borntraeger288cf3c2016-03-15 14:57:33 -07001385 if (!debug_pagealloc_enabled())
Suresh Siddhaad5ca552008-09-23 14:00:42 -07001386 spin_unlock(&cpa_lock);
Thomas Gleixnerff314522008-01-30 13:34:08 +01001387 if (ret)
1388 return ret;
Thomas Gleixnerff314522008-01-30 13:34:08 +01001389
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001390 if (checkalias) {
1391 ret = cpa_process_alias(cpa);
1392 if (ret)
1393 return ret;
1394 }
1395
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001396 /*
1397 * Adjust the number of pages with the result of the
1398 * CPA operation. Either a large page has been
1399 * preserved or a single page update happened.
1400 */
Matt Fleming74256372016-01-29 11:36:10 +00001401 BUG_ON(cpa->numpages > numpages || !cpa->numpages);
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +01001402 numpages -= cpa->numpages;
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001403 if (cpa->flags & (CPA_PAGES_ARRAY | CPA_ARRAY))
Shaohua Lid75586a2008-08-21 10:46:06 +08001404 cpa->curpage++;
1405 else
1406 *cpa->vaddr += cpa->numpages * PAGE_SIZE;
1407
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001408 }
Thomas Gleixnerff314522008-01-30 13:34:08 +01001409 return 0;
1410}
1411
Shaohua Lid75586a2008-08-21 10:46:06 +08001412static int change_page_attr_set_clr(unsigned long *addr, int numpages,
Andi Kleenc9caa022008-03-12 03:53:29 +01001413 pgprot_t mask_set, pgprot_t mask_clr,
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001414 int force_split, int in_flag,
1415 struct page **pages)
Thomas Gleixnerff314522008-01-30 13:34:08 +01001416{
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001417 struct cpa_data cpa;
Ingo Molnarcacf8902008-08-21 13:46:33 +02001418 int ret, cache, checkalias;
Jack Steinerfa526d02009-09-03 12:56:02 -05001419 unsigned long baddr = 0;
Thomas Gleixner331e4062008-02-04 16:48:06 +01001420
Borislav Petkov82f07122013-10-31 17:25:07 +01001421 memset(&cpa, 0, sizeof(cpa));
1422
Thomas Gleixner331e4062008-02-04 16:48:06 +01001423 /*
1424 * Check, if we are requested to change a not supported
1425 * feature:
1426 */
1427 mask_set = canon_pgprot(mask_set);
1428 mask_clr = canon_pgprot(mask_clr);
Andi Kleenc9caa022008-03-12 03:53:29 +01001429 if (!pgprot_val(mask_set) && !pgprot_val(mask_clr) && !force_split)
Thomas Gleixner331e4062008-02-04 16:48:06 +01001430 return 0;
1431
Thomas Gleixner69b14152008-02-13 11:04:50 +01001432 /* Ensure we are PAGE_SIZE aligned */
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001433 if (in_flag & CPA_ARRAY) {
Shaohua Lid75586a2008-08-21 10:46:06 +08001434 int i;
1435 for (i = 0; i < numpages; i++) {
1436 if (addr[i] & ~PAGE_MASK) {
1437 addr[i] &= PAGE_MASK;
1438 WARN_ON_ONCE(1);
1439 }
1440 }
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001441 } else if (!(in_flag & CPA_PAGES_ARRAY)) {
1442 /*
1443 * in_flag of CPA_PAGES_ARRAY implies it is aligned.
1444 * No need to cehck in that case
1445 */
1446 if (*addr & ~PAGE_MASK) {
1447 *addr &= PAGE_MASK;
1448 /*
1449 * People should not be passing in unaligned addresses:
1450 */
1451 WARN_ON_ONCE(1);
1452 }
Jack Steinerfa526d02009-09-03 12:56:02 -05001453 /*
1454 * Save address for cache flush. *addr is modified in the call
1455 * to __change_page_attr_set_clr() below.
1456 */
1457 baddr = *addr;
Thomas Gleixner69b14152008-02-13 11:04:50 +01001458 }
1459
Nick Piggin5843d9a2008-08-01 03:15:21 +02001460 /* Must avoid aliasing mappings in the highmem code */
1461 kmap_flush_unused();
1462
Nick Piggindb64fe02008-10-18 20:27:03 -07001463 vm_unmap_aliases();
1464
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001465 cpa.vaddr = addr;
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001466 cpa.pages = pages;
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001467 cpa.numpages = numpages;
1468 cpa.mask_set = mask_set;
1469 cpa.mask_clr = mask_clr;
Shaohua Lid75586a2008-08-21 10:46:06 +08001470 cpa.flags = 0;
1471 cpa.curpage = 0;
Andi Kleenc9caa022008-03-12 03:53:29 +01001472 cpa.force_split = force_split;
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001473
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001474 if (in_flag & (CPA_ARRAY | CPA_PAGES_ARRAY))
1475 cpa.flags |= in_flag;
Shaohua Lid75586a2008-08-21 10:46:06 +08001476
Thomas Gleixneraf96e442008-02-15 21:49:46 +01001477 /* No alias checking for _NX bit modifications */
1478 checkalias = (pgprot_val(mask_set) | pgprot_val(mask_clr)) != _PAGE_NX;
1479
1480 ret = __change_page_attr_set_clr(&cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +01001481
Thomas Gleixner57a6a462008-01-30 13:34:08 +01001482 /*
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +01001483 * Check whether we really changed something:
1484 */
Shaohua Lid75586a2008-08-21 10:46:06 +08001485 if (!(cpa.flags & CPA_FLUSHTLB))
Shaohua Li1ac2f7d2008-08-04 14:51:24 +08001486 goto out;
Ingo Molnarcacf8902008-08-21 13:46:33 +02001487
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +01001488 /*
Andi Kleen6bb83832008-02-04 16:48:06 +01001489 * No need to flush, when we did not set any of the caching
1490 * attributes:
1491 */
Juergen Grossc06814d2014-11-03 14:01:57 +01001492 cache = !!pgprot2cachemode(mask_set);
Andi Kleen6bb83832008-02-04 16:48:06 +01001493
1494 /*
Borislav Petkovb82ad3d2014-03-12 15:13:04 +01001495 * On success we use CLFLUSH, when the CPU supports it to
1496 * avoid the WBINVD. If the CPU does not support it and in the
H. Peter Anvinf026cfa2012-08-14 09:53:38 -07001497 * error case we fall back to cpa_flush_all (which uses
Borislav Petkovb82ad3d2014-03-12 15:13:04 +01001498 * WBINVD):
Thomas Gleixner57a6a462008-01-30 13:34:08 +01001499 */
Borislav Petkov906bf7f2016-03-29 17:41:59 +02001500 if (!ret && boot_cpu_has(X86_FEATURE_CLFLUSH)) {
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001501 if (cpa.flags & (CPA_PAGES_ARRAY | CPA_ARRAY)) {
1502 cpa_flush_array(addr, numpages, cache,
1503 cpa.flags, pages);
1504 } else
Jack Steinerfa526d02009-09-03 12:56:02 -05001505 cpa_flush_range(baddr, numpages, cache);
Shaohua Lid75586a2008-08-21 10:46:06 +08001506 } else
Andi Kleen6bb83832008-02-04 16:48:06 +01001507 cpa_flush_all(cache);
Ingo Molnarcacf8902008-08-21 13:46:33 +02001508
Thomas Gleixner76ebd052008-02-09 23:24:09 +01001509out:
Thomas Gleixnerff314522008-01-30 13:34:08 +01001510 return ret;
1511}
1512
Shaohua Lid75586a2008-08-21 10:46:06 +08001513static inline int change_page_attr_set(unsigned long *addr, int numpages,
1514 pgprot_t mask, int array)
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001515{
Shaohua Lid75586a2008-08-21 10:46:06 +08001516 return change_page_attr_set_clr(addr, numpages, mask, __pgprot(0), 0,
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001517 (array ? CPA_ARRAY : 0), NULL);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001518}
1519
Shaohua Lid75586a2008-08-21 10:46:06 +08001520static inline int change_page_attr_clear(unsigned long *addr, int numpages,
1521 pgprot_t mask, int array)
Thomas Gleixner72932c72008-01-30 13:34:08 +01001522{
Shaohua Lid75586a2008-08-21 10:46:06 +08001523 return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask, 0,
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001524 (array ? CPA_ARRAY : 0), NULL);
Thomas Gleixner72932c72008-01-30 13:34:08 +01001525}
1526
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001527static inline int cpa_set_pages_array(struct page **pages, int numpages,
1528 pgprot_t mask)
1529{
1530 return change_page_attr_set_clr(NULL, numpages, mask, __pgprot(0), 0,
1531 CPA_PAGES_ARRAY, pages);
1532}
1533
1534static inline int cpa_clear_pages_array(struct page **pages, int numpages,
1535 pgprot_t mask)
1536{
1537 return change_page_attr_set_clr(NULL, numpages, __pgprot(0), mask, 0,
1538 CPA_PAGES_ARRAY, pages);
1539}
1540
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001541int _set_memory_uc(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001542{
Suresh Siddhade33c442008-04-25 17:07:22 -07001543 /*
1544 * for now UC MINUS. see comments in ioremap_nocache()
Luis R. Rodrigueze4b6be332015-05-11 10:15:53 +02001545 * If you really need strong UC use ioremap_uc(), but note
1546 * that you cannot override IO areas with set_memory_*() as
1547 * these helpers cannot work with IO memory.
Suresh Siddhade33c442008-04-25 17:07:22 -07001548 */
Shaohua Lid75586a2008-08-21 10:46:06 +08001549 return change_page_attr_set(&addr, numpages,
Juergen Grossc06814d2014-11-03 14:01:57 +01001550 cachemode2pgprot(_PAGE_CACHE_MODE_UC_MINUS),
1551 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001552}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001553
1554int set_memory_uc(unsigned long addr, int numpages)
1555{
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001556 int ret;
1557
Suresh Siddhade33c442008-04-25 17:07:22 -07001558 /*
1559 * for now UC MINUS. see comments in ioremap_nocache()
1560 */
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001561 ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
Juergen Grosse00c8cc2014-11-03 14:01:59 +01001562 _PAGE_CACHE_MODE_UC_MINUS, NULL);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001563 if (ret)
1564 goto out_err;
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001565
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001566 ret = _set_memory_uc(addr, numpages);
1567 if (ret)
1568 goto out_free;
1569
1570 return 0;
1571
1572out_free:
1573 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
1574out_err:
1575 return ret;
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001576}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001577EXPORT_SYMBOL(set_memory_uc);
1578
H Hartley Sweeten2d070ef2011-11-15 14:49:00 -08001579static int _set_memory_array(unsigned long *addr, int addrinarray,
Juergen Grossc06814d2014-11-03 14:01:57 +01001580 enum page_cache_mode new_type)
Shaohua Lid75586a2008-08-21 10:46:06 +08001581{
Toshi Kani623dffb2015-06-04 18:55:20 +02001582 enum page_cache_mode set_type;
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001583 int i, j;
1584 int ret;
1585
Shaohua Lid75586a2008-08-21 10:46:06 +08001586 for (i = 0; i < addrinarray; i++) {
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001587 ret = reserve_memtype(__pa(addr[i]), __pa(addr[i]) + PAGE_SIZE,
Pauli Nieminen4f646252010-04-01 12:45:01 +00001588 new_type, NULL);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001589 if (ret)
1590 goto out_free;
Shaohua Lid75586a2008-08-21 10:46:06 +08001591 }
1592
Toshi Kani623dffb2015-06-04 18:55:20 +02001593 /* If WC, set to UC- first and then WC */
1594 set_type = (new_type == _PAGE_CACHE_MODE_WC) ?
1595 _PAGE_CACHE_MODE_UC_MINUS : new_type;
1596
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001597 ret = change_page_attr_set(addr, addrinarray,
Toshi Kani623dffb2015-06-04 18:55:20 +02001598 cachemode2pgprot(set_type), 1);
Pauli Nieminen4f646252010-04-01 12:45:01 +00001599
Juergen Grossc06814d2014-11-03 14:01:57 +01001600 if (!ret && new_type == _PAGE_CACHE_MODE_WC)
Pauli Nieminen4f646252010-04-01 12:45:01 +00001601 ret = change_page_attr_set_clr(addr, addrinarray,
Juergen Grossc06814d2014-11-03 14:01:57 +01001602 cachemode2pgprot(
1603 _PAGE_CACHE_MODE_WC),
Pauli Nieminen4f646252010-04-01 12:45:01 +00001604 __pgprot(_PAGE_CACHE_MASK),
1605 0, CPA_ARRAY, NULL);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001606 if (ret)
1607 goto out_free;
Rene Hermanc5e147c2008-08-22 01:02:20 +02001608
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001609 return 0;
1610
1611out_free:
1612 for (j = 0; j < i; j++)
1613 free_memtype(__pa(addr[j]), __pa(addr[j]) + PAGE_SIZE);
1614
1615 return ret;
Shaohua Lid75586a2008-08-21 10:46:06 +08001616}
Pauli Nieminen4f646252010-04-01 12:45:01 +00001617
1618int set_memory_array_uc(unsigned long *addr, int addrinarray)
1619{
Juergen Grossc06814d2014-11-03 14:01:57 +01001620 return _set_memory_array(addr, addrinarray, _PAGE_CACHE_MODE_UC_MINUS);
Pauli Nieminen4f646252010-04-01 12:45:01 +00001621}
Shaohua Lid75586a2008-08-21 10:46:06 +08001622EXPORT_SYMBOL(set_memory_array_uc);
1623
Pauli Nieminen4f646252010-04-01 12:45:01 +00001624int set_memory_array_wc(unsigned long *addr, int addrinarray)
1625{
Juergen Grossc06814d2014-11-03 14:01:57 +01001626 return _set_memory_array(addr, addrinarray, _PAGE_CACHE_MODE_WC);
Pauli Nieminen4f646252010-04-01 12:45:01 +00001627}
1628EXPORT_SYMBOL(set_memory_array_wc);
1629
Toshi Kani623dffb2015-06-04 18:55:20 +02001630int set_memory_array_wt(unsigned long *addr, int addrinarray)
1631{
1632 return _set_memory_array(addr, addrinarray, _PAGE_CACHE_MODE_WT);
1633}
1634EXPORT_SYMBOL_GPL(set_memory_array_wt);
1635
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -07001636int _set_memory_wc(unsigned long addr, int numpages)
1637{
venkatesh.pallipadi@intel.com3869c4a2009-04-09 14:26:50 -07001638 int ret;
Pallipadi, Venkateshbdc63402009-07-30 14:43:19 -07001639 unsigned long addr_copy = addr;
1640
venkatesh.pallipadi@intel.com3869c4a2009-04-09 14:26:50 -07001641 ret = change_page_attr_set(&addr, numpages,
Juergen Grossc06814d2014-11-03 14:01:57 +01001642 cachemode2pgprot(_PAGE_CACHE_MODE_UC_MINUS),
1643 0);
venkatesh.pallipadi@intel.com3869c4a2009-04-09 14:26:50 -07001644 if (!ret) {
Pallipadi, Venkateshbdc63402009-07-30 14:43:19 -07001645 ret = change_page_attr_set_clr(&addr_copy, numpages,
Juergen Grossc06814d2014-11-03 14:01:57 +01001646 cachemode2pgprot(
1647 _PAGE_CACHE_MODE_WC),
Pallipadi, Venkateshbdc63402009-07-30 14:43:19 -07001648 __pgprot(_PAGE_CACHE_MASK),
1649 0, 0, NULL);
venkatesh.pallipadi@intel.com3869c4a2009-04-09 14:26:50 -07001650 }
1651 return ret;
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -07001652}
1653
1654int set_memory_wc(unsigned long addr, int numpages)
1655{
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001656 int ret;
1657
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001658 ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
Juergen Grosse00c8cc2014-11-03 14:01:59 +01001659 _PAGE_CACHE_MODE_WC, NULL);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001660 if (ret)
Toshi Kani623dffb2015-06-04 18:55:20 +02001661 return ret;
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -07001662
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001663 ret = _set_memory_wc(addr, numpages);
1664 if (ret)
Toshi Kani623dffb2015-06-04 18:55:20 +02001665 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001666
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001667 return ret;
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -07001668}
1669EXPORT_SYMBOL(set_memory_wc);
1670
Toshi Kani623dffb2015-06-04 18:55:20 +02001671int _set_memory_wt(unsigned long addr, int numpages)
1672{
1673 return change_page_attr_set(&addr, numpages,
1674 cachemode2pgprot(_PAGE_CACHE_MODE_WT), 0);
1675}
1676
1677int set_memory_wt(unsigned long addr, int numpages)
1678{
1679 int ret;
1680
1681 ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
1682 _PAGE_CACHE_MODE_WT, NULL);
1683 if (ret)
1684 return ret;
1685
1686 ret = _set_memory_wt(addr, numpages);
1687 if (ret)
1688 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
1689
1690 return ret;
1691}
1692EXPORT_SYMBOL_GPL(set_memory_wt);
1693
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001694int _set_memory_wb(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001695{
Juergen Grossc06814d2014-11-03 14:01:57 +01001696 /* WB cache mode is hard wired to all cache attribute bits being 0 */
Shaohua Lid75586a2008-08-21 10:46:06 +08001697 return change_page_attr_clear(&addr, numpages,
1698 __pgprot(_PAGE_CACHE_MASK), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001699}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001700
1701int set_memory_wb(unsigned long addr, int numpages)
1702{
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001703 int ret;
1704
1705 ret = _set_memory_wb(addr, numpages);
1706 if (ret)
1707 return ret;
1708
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -07001709 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001710 return 0;
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001711}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001712EXPORT_SYMBOL(set_memory_wb);
1713
Shaohua Lid75586a2008-08-21 10:46:06 +08001714int set_memory_array_wb(unsigned long *addr, int addrinarray)
1715{
1716 int i;
venkatesh.pallipadi@intel.coma5593e02009-04-09 14:26:48 -07001717 int ret;
1718
Juergen Grossc06814d2014-11-03 14:01:57 +01001719 /* WB cache mode is hard wired to all cache attribute bits being 0 */
venkatesh.pallipadi@intel.coma5593e02009-04-09 14:26:48 -07001720 ret = change_page_attr_clear(addr, addrinarray,
1721 __pgprot(_PAGE_CACHE_MASK), 1);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001722 if (ret)
1723 return ret;
Shaohua Lid75586a2008-08-21 10:46:06 +08001724
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001725 for (i = 0; i < addrinarray; i++)
1726 free_memtype(__pa(addr[i]), __pa(addr[i]) + PAGE_SIZE);
Rene Hermanc5e147c2008-08-22 01:02:20 +02001727
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001728 return 0;
Shaohua Lid75586a2008-08-21 10:46:06 +08001729}
1730EXPORT_SYMBOL(set_memory_array_wb);
1731
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001732int set_memory_x(unsigned long addr, int numpages)
1733{
H. Peter Anvin583140a2009-11-13 15:28:15 -08001734 if (!(__supported_pte_mask & _PAGE_NX))
1735 return 0;
1736
Shaohua Lid75586a2008-08-21 10:46:06 +08001737 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_NX), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001738}
1739EXPORT_SYMBOL(set_memory_x);
1740
1741int set_memory_nx(unsigned long addr, int numpages)
1742{
H. Peter Anvin583140a2009-11-13 15:28:15 -08001743 if (!(__supported_pte_mask & _PAGE_NX))
1744 return 0;
1745
Shaohua Lid75586a2008-08-21 10:46:06 +08001746 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_NX), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001747}
1748EXPORT_SYMBOL(set_memory_nx);
1749
1750int set_memory_ro(unsigned long addr, int numpages)
1751{
Shaohua Lid75586a2008-08-21 10:46:06 +08001752 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_RW), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001753}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001754
1755int set_memory_rw(unsigned long addr, int numpages)
1756{
Shaohua Lid75586a2008-08-21 10:46:06 +08001757 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_RW), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001758}
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001759
1760int set_memory_np(unsigned long addr, int numpages)
1761{
Shaohua Lid75586a2008-08-21 10:46:06 +08001762 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_PRESENT), 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001763}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001764
Andi Kleenc9caa022008-03-12 03:53:29 +01001765int set_memory_4k(unsigned long addr, int numpages)
1766{
Shaohua Lid75586a2008-08-21 10:46:06 +08001767 return change_page_attr_set_clr(&addr, numpages, __pgprot(0),
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001768 __pgprot(0), 1, 0, NULL);
Andi Kleenc9caa022008-03-12 03:53:29 +01001769}
1770
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001771int set_pages_uc(struct page *page, int numpages)
1772{
1773 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001774
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001775 return set_memory_uc(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001776}
1777EXPORT_SYMBOL(set_pages_uc);
1778
Pauli Nieminen4f646252010-04-01 12:45:01 +00001779static int _set_pages_array(struct page **pages, int addrinarray,
Juergen Grossc06814d2014-11-03 14:01:57 +01001780 enum page_cache_mode new_type)
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001781{
1782 unsigned long start;
1783 unsigned long end;
Toshi Kani623dffb2015-06-04 18:55:20 +02001784 enum page_cache_mode set_type;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001785 int i;
1786 int free_idx;
Pauli Nieminen4f646252010-04-01 12:45:01 +00001787 int ret;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001788
1789 for (i = 0; i < addrinarray; i++) {
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001790 if (PageHighMem(pages[i]))
1791 continue;
1792 start = page_to_pfn(pages[i]) << PAGE_SHIFT;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001793 end = start + PAGE_SIZE;
Pauli Nieminen4f646252010-04-01 12:45:01 +00001794 if (reserve_memtype(start, end, new_type, NULL))
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001795 goto err_out;
1796 }
1797
Toshi Kani623dffb2015-06-04 18:55:20 +02001798 /* If WC, set to UC- first and then WC */
1799 set_type = (new_type == _PAGE_CACHE_MODE_WC) ?
1800 _PAGE_CACHE_MODE_UC_MINUS : new_type;
1801
Pauli Nieminen4f646252010-04-01 12:45:01 +00001802 ret = cpa_set_pages_array(pages, addrinarray,
Toshi Kani623dffb2015-06-04 18:55:20 +02001803 cachemode2pgprot(set_type));
Juergen Grossc06814d2014-11-03 14:01:57 +01001804 if (!ret && new_type == _PAGE_CACHE_MODE_WC)
Pauli Nieminen4f646252010-04-01 12:45:01 +00001805 ret = change_page_attr_set_clr(NULL, addrinarray,
Juergen Grossc06814d2014-11-03 14:01:57 +01001806 cachemode2pgprot(
1807 _PAGE_CACHE_MODE_WC),
Pauli Nieminen4f646252010-04-01 12:45:01 +00001808 __pgprot(_PAGE_CACHE_MASK),
1809 0, CPA_PAGES_ARRAY, pages);
1810 if (ret)
1811 goto err_out;
1812 return 0; /* Success */
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001813err_out:
1814 free_idx = i;
1815 for (i = 0; i < free_idx; i++) {
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001816 if (PageHighMem(pages[i]))
1817 continue;
1818 start = page_to_pfn(pages[i]) << PAGE_SHIFT;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001819 end = start + PAGE_SIZE;
1820 free_memtype(start, end);
1821 }
1822 return -EINVAL;
1823}
Pauli Nieminen4f646252010-04-01 12:45:01 +00001824
1825int set_pages_array_uc(struct page **pages, int addrinarray)
1826{
Juergen Grossc06814d2014-11-03 14:01:57 +01001827 return _set_pages_array(pages, addrinarray, _PAGE_CACHE_MODE_UC_MINUS);
Pauli Nieminen4f646252010-04-01 12:45:01 +00001828}
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001829EXPORT_SYMBOL(set_pages_array_uc);
1830
Pauli Nieminen4f646252010-04-01 12:45:01 +00001831int set_pages_array_wc(struct page **pages, int addrinarray)
1832{
Juergen Grossc06814d2014-11-03 14:01:57 +01001833 return _set_pages_array(pages, addrinarray, _PAGE_CACHE_MODE_WC);
Pauli Nieminen4f646252010-04-01 12:45:01 +00001834}
1835EXPORT_SYMBOL(set_pages_array_wc);
1836
Toshi Kani623dffb2015-06-04 18:55:20 +02001837int set_pages_array_wt(struct page **pages, int addrinarray)
1838{
1839 return _set_pages_array(pages, addrinarray, _PAGE_CACHE_MODE_WT);
1840}
1841EXPORT_SYMBOL_GPL(set_pages_array_wt);
1842
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001843int set_pages_wb(struct page *page, int numpages)
1844{
1845 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001846
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001847 return set_memory_wb(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001848}
1849EXPORT_SYMBOL(set_pages_wb);
1850
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001851int set_pages_array_wb(struct page **pages, int addrinarray)
1852{
1853 int retval;
1854 unsigned long start;
1855 unsigned long end;
1856 int i;
1857
Juergen Grossc06814d2014-11-03 14:01:57 +01001858 /* WB cache mode is hard wired to all cache attribute bits being 0 */
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001859 retval = cpa_clear_pages_array(pages, addrinarray,
1860 __pgprot(_PAGE_CACHE_MASK));
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001861 if (retval)
1862 return retval;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001863
1864 for (i = 0; i < addrinarray; i++) {
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001865 if (PageHighMem(pages[i]))
1866 continue;
1867 start = page_to_pfn(pages[i]) << PAGE_SHIFT;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001868 end = start + PAGE_SIZE;
1869 free_memtype(start, end);
1870 }
1871
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001872 return 0;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001873}
1874EXPORT_SYMBOL(set_pages_array_wb);
1875
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001876int set_pages_x(struct page *page, int numpages)
1877{
1878 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001879
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001880 return set_memory_x(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001881}
1882EXPORT_SYMBOL(set_pages_x);
1883
1884int set_pages_nx(struct page *page, int numpages)
1885{
1886 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001887
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001888 return set_memory_nx(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001889}
1890EXPORT_SYMBOL(set_pages_nx);
1891
1892int set_pages_ro(struct page *page, int numpages)
1893{
1894 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001895
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001896 return set_memory_ro(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001897}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001898
1899int set_pages_rw(struct page *page, int numpages)
1900{
1901 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001902
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001903 return set_memory_rw(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001904}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001905
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906#ifdef CONFIG_DEBUG_PAGEALLOC
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001907
1908static int __set_pages_p(struct page *page, int numpages)
1909{
Shaohua Lid75586a2008-08-21 10:46:06 +08001910 unsigned long tempaddr = (unsigned long) page_address(page);
1911 struct cpa_data cpa = { .vaddr = &tempaddr,
Borislav Petkov82f07122013-10-31 17:25:07 +01001912 .pgd = NULL,
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001913 .numpages = numpages,
1914 .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW),
Shaohua Lid75586a2008-08-21 10:46:06 +08001915 .mask_clr = __pgprot(0),
1916 .flags = 0};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001917
Suresh Siddha55121b42008-09-23 14:00:40 -07001918 /*
1919 * No alias checking needed for setting present flag. otherwise,
1920 * we may need to break large pages for 64-bit kernel text
1921 * mappings (this adds to complexity if we want to do this from
1922 * atomic context especially). Let's keep it simple!
1923 */
1924 return __change_page_attr_set_clr(&cpa, 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001925}
1926
1927static int __set_pages_np(struct page *page, int numpages)
1928{
Shaohua Lid75586a2008-08-21 10:46:06 +08001929 unsigned long tempaddr = (unsigned long) page_address(page);
1930 struct cpa_data cpa = { .vaddr = &tempaddr,
Borislav Petkov82f07122013-10-31 17:25:07 +01001931 .pgd = NULL,
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001932 .numpages = numpages,
1933 .mask_set = __pgprot(0),
Shaohua Lid75586a2008-08-21 10:46:06 +08001934 .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW),
1935 .flags = 0};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001936
Suresh Siddha55121b42008-09-23 14:00:40 -07001937 /*
1938 * No alias checking needed for setting not present flag. otherwise,
1939 * we may need to break large pages for 64-bit kernel text
1940 * mappings (this adds to complexity if we want to do this from
1941 * atomic context especially). Let's keep it simple!
1942 */
1943 return __change_page_attr_set_clr(&cpa, 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001944}
1945
Joonsoo Kim031bc572014-12-12 16:55:52 -08001946void __kernel_map_pages(struct page *page, int numpages, int enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947{
1948 if (PageHighMem(page))
1949 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001950 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -07001951 debug_check_no_locks_freed(page_address(page),
1952 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001953 }
Ingo Molnarde5097c2006-01-09 15:59:21 -08001954
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001955 /*
Ingo Molnarf8d84062008-02-13 14:09:53 +01001956 * The return value is ignored as the calls cannot fail.
Suresh Siddha55121b42008-09-23 14:00:40 -07001957 * Large pages for identity mappings are not used at boot time
1958 * and hence no memory allocations during large page split.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 */
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001960 if (enable)
1961 __set_pages_p(page, numpages);
1962 else
1963 __set_pages_np(page, numpages);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001964
1965 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +01001966 * We should perform an IPI and flush all tlbs,
1967 * but that can deadlock->flush only current cpu:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 */
1969 __flush_tlb_all();
Boris Ostrovsky26564602013-04-11 13:59:52 -04001970
1971 arch_flush_lazy_mmu_mode();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972}
Rafael J. Wysocki8a235ef2008-02-20 01:47:44 +01001973
1974#ifdef CONFIG_HIBERNATION
1975
1976bool kernel_page_present(struct page *page)
1977{
1978 unsigned int level;
1979 pte_t *pte;
1980
1981 if (PageHighMem(page))
1982 return false;
1983
1984 pte = lookup_address((unsigned long)page_address(page), &level);
1985 return (pte_val(*pte) & _PAGE_PRESENT);
1986}
1987
1988#endif /* CONFIG_HIBERNATION */
1989
1990#endif /* CONFIG_DEBUG_PAGEALLOC */
Arjan van de Vend1028a12008-01-30 13:34:07 +01001991
Borislav Petkov82f07122013-10-31 17:25:07 +01001992int kernel_map_pages_in_pgd(pgd_t *pgd, u64 pfn, unsigned long address,
1993 unsigned numpages, unsigned long page_flags)
1994{
1995 int retval = -EINVAL;
1996
1997 struct cpa_data cpa = {
1998 .vaddr = &address,
1999 .pfn = pfn,
2000 .pgd = pgd,
2001 .numpages = numpages,
2002 .mask_set = __pgprot(0),
2003 .mask_clr = __pgprot(0),
2004 .flags = 0,
2005 };
2006
2007 if (!(__supported_pte_mask & _PAGE_NX))
2008 goto out;
2009
2010 if (!(page_flags & _PAGE_NX))
2011 cpa.mask_clr = __pgprot(_PAGE_NX);
2012
Sai Praneeth15f003d2016-02-17 12:36:04 +00002013 if (!(page_flags & _PAGE_RW))
2014 cpa.mask_clr = __pgprot(_PAGE_RW);
2015
Borislav Petkov82f07122013-10-31 17:25:07 +01002016 cpa.mask_set = __pgprot(_PAGE_PRESENT | page_flags);
2017
2018 retval = __change_page_attr_set_clr(&cpa, 0);
2019 __flush_tlb_all();
2020
2021out:
2022 return retval;
2023}
2024
Arjan van de Vend1028a12008-01-30 13:34:07 +01002025/*
2026 * The testcases use internal knowledge of the implementation that shouldn't
2027 * be exposed to the rest of the kernel. Include these directly here.
2028 */
2029#ifdef CONFIG_CPA_DEBUG
2030#include "pageattr-test.c"
2031#endif