blob: 170cc4ff057b398382bef3dd635d6a9115460d88 [file] [log] [blame]
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -07001/*
2 * Handle caching attributes in page tables (PAT)
3 *
4 * Authors: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
5 * Suresh B Siddha <suresh.b.siddha@intel.com>
6 *
7 * Loosely based on earlier PAT patchset from Eric Biederman and Andi Kleen.
8 */
9
Ingo Molnarad2cde12008-09-30 13:20:45 +020010#include <linux/seq_file.h>
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -070011#include <linux/bootmem.h>
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -070012#include <linux/debugfs.h>
Ingo Molnarad2cde12008-09-30 13:20:45 +020013#include <linux/kernel.h>
Dan Williamsf25748e32016-01-15 16:56:43 -080014#include <linux/pfn_t.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Ingo Molnarad2cde12008-09-30 13:20:45 +020016#include <linux/mm.h>
17#include <linux/fs.h>
Venkatesh Pallipadi335ef892009-07-10 09:57:36 -070018#include <linux/rbtree.h>
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070019
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070020#include <asm/cacheflush.h>
Ingo Molnarad2cde12008-09-30 13:20:45 +020021#include <asm/processor.h>
22#include <asm/tlbflush.h>
Jack Steinerfd12a0d2009-11-19 14:23:41 -060023#include <asm/x86_init.h>
Ingo Molnarad2cde12008-09-30 13:20:45 +020024#include <asm/pgtable.h>
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070025#include <asm/fcntl.h>
Ingo Molnarad2cde12008-09-30 13:20:45 +020026#include <asm/e820.h>
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070027#include <asm/mtrr.h>
Ingo Molnarad2cde12008-09-30 13:20:45 +020028#include <asm/page.h>
29#include <asm/msr.h>
30#include <asm/pat.h>
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -070031#include <asm/io.h>
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070032
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -080033#include "pat_internal.h"
Juergen Grossbd809af2014-11-03 14:02:03 +010034#include "mm_internal.h"
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -080035
Luis R. Rodriguez9e765612015-05-26 10:28:11 +020036#undef pr_fmt
37#define pr_fmt(fmt) "" fmt
38
Borislav Petkov9dac6292015-06-04 18:55:09 +020039static bool boot_cpu_done;
40
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +020041static int __read_mostly __pat_enabled = IS_ENABLED(CONFIG_X86_PAT);
Toshi Kani224bb1e2016-03-23 15:41:58 -060042static void init_cache_modes(void);
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070043
Toshi Kani224bb1e2016-03-23 15:41:58 -060044void pat_disable(const char *reason)
Thomas Gleixner8d4a4302008-05-08 09:18:43 +020045{
Toshi Kani224bb1e2016-03-23 15:41:58 -060046 if (!__pat_enabled)
47 return;
48
49 if (boot_cpu_done) {
50 WARN_ONCE(1, "x86/PAT: PAT cannot be disabled after initialization\n");
51 return;
52 }
53
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +020054 __pat_enabled = 0;
Luis R. Rodriguez9e765612015-05-26 10:28:11 +020055 pr_info("x86/PAT: %s\n", reason);
Toshi Kani224bb1e2016-03-23 15:41:58 -060056
57 init_cache_modes();
Thomas Gleixner8d4a4302008-05-08 09:18:43 +020058}
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070059
Andrew Mortonbe524fb2008-05-29 00:01:28 -070060static int __init nopat(char *str)
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070061{
Thomas Gleixner8d4a4302008-05-08 09:18:43 +020062 pat_disable("PAT support disabled.");
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070063 return 0;
64}
65early_param("nopat", nopat);
66
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +020067bool pat_enabled(void)
68{
69 return !!__pat_enabled;
70}
Luis R. Rodriguezfbe71932015-05-26 10:28:16 +020071EXPORT_SYMBOL_GPL(pat_enabled);
Venki Pallipadi77b52b4c2008-05-05 19:09:10 -070072
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -080073int pat_debug_enable;
Ingo Molnarad2cde12008-09-30 13:20:45 +020074
Venki Pallipadi77b52b4c2008-05-05 19:09:10 -070075static int __init pat_debug_setup(char *str)
76{
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -080077 pat_debug_enable = 1;
Venki Pallipadi77b52b4c2008-05-05 19:09:10 -070078 return 0;
79}
80__setup("debugpat", pat_debug_setup);
81
Thomas Gleixner0dbcae82014-11-16 18:59:19 +010082#ifdef CONFIG_X86_PAT
83/*
Toshi Kani35a5a102015-06-04 18:55:19 +020084 * X86 PAT uses page flags arch_1 and uncached together to keep track of
85 * memory type of pages that have backing page struct.
86 *
87 * X86 PAT supports 4 different memory types:
88 * - _PAGE_CACHE_MODE_WB
89 * - _PAGE_CACHE_MODE_WC
90 * - _PAGE_CACHE_MODE_UC_MINUS
91 * - _PAGE_CACHE_MODE_WT
92 *
93 * _PAGE_CACHE_MODE_WB is the default type.
Thomas Gleixner0dbcae82014-11-16 18:59:19 +010094 */
95
Toshi Kani35a5a102015-06-04 18:55:19 +020096#define _PGMT_WB 0
Thomas Gleixner0dbcae82014-11-16 18:59:19 +010097#define _PGMT_WC (1UL << PG_arch_1)
98#define _PGMT_UC_MINUS (1UL << PG_uncached)
Toshi Kani35a5a102015-06-04 18:55:19 +020099#define _PGMT_WT (1UL << PG_uncached | 1UL << PG_arch_1)
Thomas Gleixner0dbcae82014-11-16 18:59:19 +0100100#define _PGMT_MASK (1UL << PG_uncached | 1UL << PG_arch_1)
101#define _PGMT_CLEAR_MASK (~_PGMT_MASK)
102
103static inline enum page_cache_mode get_page_memtype(struct page *pg)
104{
105 unsigned long pg_flags = pg->flags & _PGMT_MASK;
106
Toshi Kani35a5a102015-06-04 18:55:19 +0200107 if (pg_flags == _PGMT_WB)
108 return _PAGE_CACHE_MODE_WB;
Thomas Gleixner0dbcae82014-11-16 18:59:19 +0100109 else if (pg_flags == _PGMT_WC)
110 return _PAGE_CACHE_MODE_WC;
111 else if (pg_flags == _PGMT_UC_MINUS)
112 return _PAGE_CACHE_MODE_UC_MINUS;
113 else
Toshi Kani35a5a102015-06-04 18:55:19 +0200114 return _PAGE_CACHE_MODE_WT;
Thomas Gleixner0dbcae82014-11-16 18:59:19 +0100115}
116
117static inline void set_page_memtype(struct page *pg,
118 enum page_cache_mode memtype)
119{
120 unsigned long memtype_flags;
121 unsigned long old_flags;
122 unsigned long new_flags;
123
124 switch (memtype) {
125 case _PAGE_CACHE_MODE_WC:
126 memtype_flags = _PGMT_WC;
127 break;
128 case _PAGE_CACHE_MODE_UC_MINUS:
129 memtype_flags = _PGMT_UC_MINUS;
130 break;
Toshi Kani35a5a102015-06-04 18:55:19 +0200131 case _PAGE_CACHE_MODE_WT:
132 memtype_flags = _PGMT_WT;
Thomas Gleixner0dbcae82014-11-16 18:59:19 +0100133 break;
Toshi Kani35a5a102015-06-04 18:55:19 +0200134 case _PAGE_CACHE_MODE_WB:
Thomas Gleixner0dbcae82014-11-16 18:59:19 +0100135 default:
Toshi Kani35a5a102015-06-04 18:55:19 +0200136 memtype_flags = _PGMT_WB;
Thomas Gleixner0dbcae82014-11-16 18:59:19 +0100137 break;
138 }
139
140 do {
141 old_flags = pg->flags;
142 new_flags = (old_flags & _PGMT_CLEAR_MASK) | memtype_flags;
143 } while (cmpxchg(&pg->flags, old_flags, new_flags) != old_flags);
144}
145#else
146static inline enum page_cache_mode get_page_memtype(struct page *pg)
147{
148 return -1;
149}
150static inline void set_page_memtype(struct page *pg,
151 enum page_cache_mode memtype)
152{
153}
154#endif
155
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700156enum {
157 PAT_UC = 0, /* uncached */
158 PAT_WC = 1, /* Write combining */
159 PAT_WT = 4, /* Write Through */
160 PAT_WP = 5, /* Write Protected */
161 PAT_WB = 6, /* Write Back (default) */
Adam Buchbinder6a6256f2016-02-23 15:34:30 -0800162 PAT_UC_MINUS = 7, /* UC, but can be overridden by MTRR */
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700163};
164
Juergen Grossbd809af2014-11-03 14:02:03 +0100165#define CM(c) (_PAGE_CACHE_MODE_ ## c)
166
167static enum page_cache_mode pat_get_cache_mode(unsigned pat_val, char *msg)
168{
169 enum page_cache_mode cache;
170 char *cache_mode;
171
172 switch (pat_val) {
173 case PAT_UC: cache = CM(UC); cache_mode = "UC "; break;
174 case PAT_WC: cache = CM(WC); cache_mode = "WC "; break;
175 case PAT_WT: cache = CM(WT); cache_mode = "WT "; break;
176 case PAT_WP: cache = CM(WP); cache_mode = "WP "; break;
177 case PAT_WB: cache = CM(WB); cache_mode = "WB "; break;
178 case PAT_UC_MINUS: cache = CM(UC_MINUS); cache_mode = "UC- "; break;
179 default: cache = CM(WB); cache_mode = "WB "; break;
180 }
181
182 memcpy(msg, cache_mode, 4);
183
184 return cache;
185}
186
187#undef CM
188
189/*
190 * Update the cache mode to pgprot translation tables according to PAT
191 * configuration.
192 * Using lower indices is preferred, so we start with highest index.
193 */
Toshi Kani88ba2812016-03-23 15:42:02 -0600194static void __init_cache_modes(u64 pat)
Juergen Grossbd809af2014-11-03 14:02:03 +0100195{
Juergen Grossbd809af2014-11-03 14:02:03 +0100196 enum page_cache_mode cache;
197 char pat_msg[33];
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200198 int i;
Juergen Grossbd809af2014-11-03 14:02:03 +0100199
Juergen Grossbd809af2014-11-03 14:02:03 +0100200 pat_msg[32] = 0;
201 for (i = 7; i >= 0; i--) {
202 cache = pat_get_cache_mode((pat >> (i * 8)) & 7,
203 pat_msg + 4 * i);
204 update_cache_mode_entry(i, cache);
205 }
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200206 pr_info("x86/PAT: Configuration [0-7]: %s\n", pat_msg);
Juergen Grossbd809af2014-11-03 14:02:03 +0100207}
208
Andreas Herrmanncd7a4e92008-06-10 16:05:39 +0200209#define PAT(x, y) ((u64)PAT_ ## y << ((x)*8))
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700210
Borislav Petkov9dac6292015-06-04 18:55:09 +0200211static void pat_bsp_init(u64 pat)
212{
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200213 u64 tmp_pat;
214
Toshi Kanid63dcf42016-03-23 15:41:59 -0600215 if (!boot_cpu_has(X86_FEATURE_PAT)) {
Borislav Petkov9dac6292015-06-04 18:55:09 +0200216 pat_disable("PAT not supported by CPU.");
217 return;
218 }
219
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200220 rdmsrl(MSR_IA32_CR_PAT, tmp_pat);
221 if (!tmp_pat) {
Borislav Petkov9dac6292015-06-04 18:55:09 +0200222 pat_disable("PAT MSR is 0, disabled.");
223 return;
224 }
225
226 wrmsrl(MSR_IA32_CR_PAT, pat);
227
Toshi Kani02f037d2016-03-23 15:41:57 -0600228 __init_cache_modes(pat);
Borislav Petkov9dac6292015-06-04 18:55:09 +0200229}
230
231static void pat_ap_init(u64 pat)
232{
Toshi Kanid63dcf42016-03-23 15:41:59 -0600233 if (!boot_cpu_has(X86_FEATURE_PAT)) {
Borislav Petkov9dac6292015-06-04 18:55:09 +0200234 /*
235 * If this happens we are on a secondary CPU, but switched to
236 * PAT on the boot CPU. We have no way to undo PAT.
237 */
238 panic("x86/PAT: PAT enabled, but not supported by secondary CPU\n");
239 }
240
241 wrmsrl(MSR_IA32_CR_PAT, pat);
242}
243
Toshi Kani02f037d2016-03-23 15:41:57 -0600244static void init_cache_modes(void)
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700245{
Toshi Kani02f037d2016-03-23 15:41:57 -0600246 u64 pat = 0;
247 static int init_cm_done;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700248
Toshi Kani02f037d2016-03-23 15:41:57 -0600249 if (init_cm_done)
250 return;
251
252 if (boot_cpu_has(X86_FEATURE_PAT)) {
253 /*
254 * CPU supports PAT. Set PAT table to be consistent with
255 * PAT MSR. This case supports "nopat" boot option, and
256 * virtual machine environments which support PAT without
257 * MTRRs. In specific, Xen has unique setup to PAT MSR.
258 *
259 * If PAT MSR returns 0, it is considered invalid and emulates
260 * as No PAT.
261 */
262 rdmsrl(MSR_IA32_CR_PAT, pat);
263 }
264
265 if (!pat) {
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200266 /*
267 * No PAT. Emulate the PAT table that corresponds to the two
Toshi Kani02f037d2016-03-23 15:41:57 -0600268 * cache bits, PWT (Write Through) and PCD (Cache Disable).
269 * This setup is also the same as the BIOS default setup.
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200270 *
Toshi Kanid79a40c2015-06-04 18:55:12 +0200271 * PTE encoding:
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200272 *
273 * PCD
274 * |PWT PAT
275 * || slot
276 * 00 0 WB : _PAGE_CACHE_MODE_WB
277 * 01 1 WT : _PAGE_CACHE_MODE_WT
278 * 10 2 UC-: _PAGE_CACHE_MODE_UC_MINUS
279 * 11 3 UC : _PAGE_CACHE_MODE_UC
280 *
281 * NOTE: When WC or WP is used, it is redirected to UC- per
282 * the default setup in __cachemode2pte_tbl[].
283 */
284 pat = PAT(0, WB) | PAT(1, WT) | PAT(2, UC_MINUS) | PAT(3, UC) |
285 PAT(4, WB) | PAT(5, WT) | PAT(6, UC_MINUS) | PAT(7, UC);
Toshi Kani02f037d2016-03-23 15:41:57 -0600286 }
Toshi Kanid79a40c2015-06-04 18:55:12 +0200287
Toshi Kani02f037d2016-03-23 15:41:57 -0600288 __init_cache_modes(pat);
289
290 init_cm_done = 1;
291}
292
293/**
294 * pat_init - Initialize PAT MSR and PAT table
295 *
296 * This function initializes PAT MSR and PAT table with an OS-defined value
297 * to enable additional cache attributes, WC and WT.
298 *
299 * This function must be called on all CPUs using the specific sequence of
300 * operations defined in Intel SDM. mtrr_rendezvous_handler() provides this
301 * procedure for PAT.
302 */
303void pat_init(void)
304{
305 u64 pat;
306 struct cpuinfo_x86 *c = &boot_cpu_data;
307
308 if (!pat_enabled()) {
309 init_cache_modes();
310 return;
311 }
312
313 if ((c->x86_vendor == X86_VENDOR_INTEL) &&
314 (((c->x86 == 0x6) && (c->x86_model <= 0xd)) ||
315 ((c->x86 == 0xf) && (c->x86_model <= 0x6)))) {
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200316 /*
Toshi Kanid79a40c2015-06-04 18:55:12 +0200317 * PAT support with the lower four entries. Intel Pentium 2,
318 * 3, M, and 4 are affected by PAT errata, which makes the
319 * upper four entries unusable. To be on the safe side, we don't
320 * use those.
321 *
322 * PTE encoding:
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200323 * PAT
324 * |PCD
Toshi Kanid79a40c2015-06-04 18:55:12 +0200325 * ||PWT PAT
326 * ||| slot
327 * 000 0 WB : _PAGE_CACHE_MODE_WB
328 * 001 1 WC : _PAGE_CACHE_MODE_WC
329 * 010 2 UC-: _PAGE_CACHE_MODE_UC_MINUS
330 * 011 3 UC : _PAGE_CACHE_MODE_UC
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200331 * PAT bit unused
Toshi Kanid79a40c2015-06-04 18:55:12 +0200332 *
333 * NOTE: When WT or WP is used, it is redirected to UC- per
334 * the default setup in __cachemode2pte_tbl[].
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200335 */
336 pat = PAT(0, WB) | PAT(1, WC) | PAT(2, UC_MINUS) | PAT(3, UC) |
337 PAT(4, WB) | PAT(5, WC) | PAT(6, UC_MINUS) | PAT(7, UC);
Toshi Kanid79a40c2015-06-04 18:55:12 +0200338 } else {
339 /*
340 * Full PAT support. We put WT in slot 7 to improve
341 * robustness in the presence of errata that might cause
342 * the high PAT bit to be ignored. This way, a buggy slot 7
343 * access will hit slot 3, and slot 3 is UC, so at worst
344 * we lose performance without causing a correctness issue.
345 * Pentium 4 erratum N46 is an example for such an erratum,
346 * although we try not to use PAT at all on affected CPUs.
347 *
348 * PTE encoding:
349 * PAT
350 * |PCD
351 * ||PWT PAT
352 * ||| slot
353 * 000 0 WB : _PAGE_CACHE_MODE_WB
354 * 001 1 WC : _PAGE_CACHE_MODE_WC
355 * 010 2 UC-: _PAGE_CACHE_MODE_UC_MINUS
356 * 011 3 UC : _PAGE_CACHE_MODE_UC
357 * 100 4 WB : Reserved
358 * 101 5 WC : Reserved
359 * 110 6 UC-: Reserved
360 * 111 7 WT : _PAGE_CACHE_MODE_WT
361 *
362 * The reserved slots are unused, but mapped to their
363 * corresponding types in the presence of PAT errata.
364 */
365 pat = PAT(0, WB) | PAT(1, WC) | PAT(2, UC_MINUS) | PAT(3, UC) |
366 PAT(4, WB) | PAT(5, WC) | PAT(6, UC_MINUS) | PAT(7, WT);
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200367 }
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700368
Borislav Petkov9dac6292015-06-04 18:55:09 +0200369 if (!boot_cpu_done) {
370 pat_bsp_init(pat);
371 boot_cpu_done = true;
372 } else {
373 pat_ap_init(pat);
Juergen Gross9d34cfd2015-01-12 06:15:45 +0100374 }
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700375}
376
377#undef PAT
378
Pallipadi, Venkatesh9e41a492010-02-10 15:26:07 -0800379static DEFINE_SPINLOCK(memtype_lock); /* protects memtype accesses */
Venkatesh Pallipadi335ef892009-07-10 09:57:36 -0700380
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700381/*
382 * Does intersection of PAT memory type and MTRR memory type and returns
383 * the resulting memory type as PAT understands it.
384 * (Type in pat and mtrr will not have same value)
385 * The intersection is based on "Effective Memory Type" tables in IA-32
386 * SDM vol 3a
387 */
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100388static unsigned long pat_x_mtrr_type(u64 start, u64 end,
389 enum page_cache_mode req_type)
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700390{
Venki Pallipadic26421d2008-05-29 12:01:44 -0700391 /*
392 * Look for MTRR hint to get the effective type in case where PAT
393 * request is for WB.
394 */
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100395 if (req_type == _PAGE_CACHE_MODE_WB) {
Toshi Kanib73522e2015-05-26 10:28:10 +0200396 u8 mtrr_type, uniform;
Andreas Herrmanndd0c7c42008-06-18 15:38:57 +0200397
Toshi Kanib73522e2015-05-26 10:28:10 +0200398 mtrr_type = mtrr_type_lookup(start, end, &uniform);
Suresh Siddhab6ff32d2009-04-09 14:26:51 -0700399 if (mtrr_type != MTRR_TYPE_WRBACK)
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100400 return _PAGE_CACHE_MODE_UC_MINUS;
Suresh Siddhab6ff32d2009-04-09 14:26:51 -0700401
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100402 return _PAGE_CACHE_MODE_WB;
Andreas Herrmanndd0c7c42008-06-18 15:38:57 +0200403 }
404
405 return req_type;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700406}
407
John Dykstrafa835232012-05-25 16:12:46 -0500408struct pagerange_state {
409 unsigned long cur_pfn;
410 int ram;
411 int not_ram;
412};
413
414static int
415pagerange_is_ram_callback(unsigned long initial_pfn, unsigned long total_nr_pages, void *arg)
416{
417 struct pagerange_state *state = arg;
418
419 state->not_ram |= initial_pfn > state->cur_pfn;
420 state->ram |= total_nr_pages > 0;
421 state->cur_pfn = initial_pfn + total_nr_pages;
422
423 return state->ram && state->not_ram;
424}
425
Yasuaki Ishimatsu3709c852010-07-22 14:57:35 +0900426static int pat_pagerange_is_ram(resource_size_t start, resource_size_t end)
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800427{
John Dykstrafa835232012-05-25 16:12:46 -0500428 int ret = 0;
429 unsigned long start_pfn = start >> PAGE_SHIFT;
430 unsigned long end_pfn = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
431 struct pagerange_state state = {start_pfn, 0, 0};
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800432
John Dykstrafa835232012-05-25 16:12:46 -0500433 /*
434 * For legacy reasons, physical address range in the legacy ISA
435 * region is tracked as non-RAM. This will allow users of
436 * /dev/mem to map portions of legacy ISA region, even when
437 * some of those portions are listed(or not even listed) with
438 * different e820 types(RAM/reserved/..)
439 */
440 if (start_pfn < ISA_END_ADDRESS >> PAGE_SHIFT)
441 start_pfn = ISA_END_ADDRESS >> PAGE_SHIFT;
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800442
John Dykstrafa835232012-05-25 16:12:46 -0500443 if (start_pfn < end_pfn) {
444 ret = walk_system_ram_range(start_pfn, end_pfn - start_pfn,
445 &state, pagerange_is_ram_callback);
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800446 }
447
John Dykstrafa835232012-05-25 16:12:46 -0500448 return (ret > 0) ? -1 : (state.ram ? 1 : 0);
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800449}
450
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700451/*
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700452 * For RAM pages, we use page flags to mark the pages with appropriate type.
Toshi Kani35a5a102015-06-04 18:55:19 +0200453 * The page flags are limited to four types, WB (default), WC, WT and UC-.
454 * WP request fails with -EINVAL, and UC gets redirected to UC-. Setting
455 * a new memory type is only allowed for a page mapped with the default WB
456 * type.
Toshi Kani0d69bdf2015-06-04 18:55:13 +0200457 *
458 * Here we do two passes:
459 * - Find the memtype of all the pages in the range, look for any conflicts.
460 * - In case of no conflicts, set the new memtype for pages in the range.
Suresh Siddha9542ada2008-09-24 08:53:33 -0700461 */
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100462static int reserve_ram_pages_type(u64 start, u64 end,
463 enum page_cache_mode req_type,
464 enum page_cache_mode *new_type)
Suresh Siddha9542ada2008-09-24 08:53:33 -0700465{
466 struct page *page;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700467 u64 pfn;
468
Toshi Kani35a5a102015-06-04 18:55:19 +0200469 if (req_type == _PAGE_CACHE_MODE_WP) {
Toshi Kani0d69bdf2015-06-04 18:55:13 +0200470 if (new_type)
471 *new_type = _PAGE_CACHE_MODE_UC_MINUS;
472 return -EINVAL;
473 }
474
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100475 if (req_type == _PAGE_CACHE_MODE_UC) {
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700476 /* We do not support strong UC */
477 WARN_ON_ONCE(1);
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100478 req_type = _PAGE_CACHE_MODE_UC_MINUS;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700479 }
480
481 for (pfn = (start >> PAGE_SHIFT); pfn < (end >> PAGE_SHIFT); ++pfn) {
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100482 enum page_cache_mode type;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700483
484 page = pfn_to_page(pfn);
485 type = get_page_memtype(page);
Toshi Kani35a5a102015-06-04 18:55:19 +0200486 if (type != _PAGE_CACHE_MODE_WB) {
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200487 pr_info("x86/PAT: reserve_ram_pages_type failed [mem %#010Lx-%#010Lx], track 0x%x, req 0x%x\n",
Bjorn Helgaas365811d2012-05-29 15:06:29 -0700488 start, end - 1, type, req_type);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700489 if (new_type)
490 *new_type = type;
491
492 return -EBUSY;
493 }
494 }
495
496 if (new_type)
497 *new_type = req_type;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700498
499 for (pfn = (start >> PAGE_SHIFT); pfn < (end >> PAGE_SHIFT); ++pfn) {
500 page = pfn_to_page(pfn);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700501 set_page_memtype(page, req_type);
Suresh Siddha9542ada2008-09-24 08:53:33 -0700502 }
503 return 0;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700504}
505
506static int free_ram_pages_type(u64 start, u64 end)
507{
508 struct page *page;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700509 u64 pfn;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700510
511 for (pfn = (start >> PAGE_SHIFT); pfn < (end >> PAGE_SHIFT); ++pfn) {
512 page = pfn_to_page(pfn);
Toshi Kani35a5a102015-06-04 18:55:19 +0200513 set_page_memtype(page, _PAGE_CACHE_MODE_WB);
Suresh Siddha9542ada2008-09-24 08:53:33 -0700514 }
515 return 0;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700516}
517
518/*
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700519 * req_type typically has one of the:
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100520 * - _PAGE_CACHE_MODE_WB
521 * - _PAGE_CACHE_MODE_WC
522 * - _PAGE_CACHE_MODE_UC_MINUS
523 * - _PAGE_CACHE_MODE_UC
Toshi Kani0d69bdf2015-06-04 18:55:13 +0200524 * - _PAGE_CACHE_MODE_WT
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700525 *
Andreas Herrmannac979912008-06-20 22:01:49 +0200526 * If new_type is NULL, function will return an error if it cannot reserve the
527 * region with req_type. If new_type is non-NULL, function will return
528 * available type in new_type in case of no error. In case of any error
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700529 * it will return a negative return value.
530 */
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100531int reserve_memtype(u64 start, u64 end, enum page_cache_mode req_type,
532 enum page_cache_mode *new_type)
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700533{
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -0800534 struct memtype *new;
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100535 enum page_cache_mode actual_type;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700536 int is_range_ram;
Ingo Molnarad2cde12008-09-30 13:20:45 +0200537 int err = 0;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700538
Ingo Molnarad2cde12008-09-30 13:20:45 +0200539 BUG_ON(start >= end); /* end is exclusive */
Andreas Herrmann69e26be2008-06-20 22:03:06 +0200540
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200541 if (!pat_enabled()) {
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700542 /* This is identical to page table setting without PAT */
Borislav Petkov7202fdb2015-06-04 18:55:11 +0200543 if (new_type)
544 *new_type = req_type;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700545 return 0;
546 }
547
548 /* Low ISA region is always mapped WB in page table. No need to track */
H. Peter Anvin8a271382009-11-23 14:49:20 -0800549 if (x86_platform.is_untracked_pat_range(start, end)) {
Andreas Herrmannac979912008-06-20 22:01:49 +0200550 if (new_type)
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100551 *new_type = _PAGE_CACHE_MODE_WB;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700552 return 0;
553 }
554
Suresh Siddhab6ff32d2009-04-09 14:26:51 -0700555 /*
556 * Call mtrr_lookup to get the type hint. This is an
557 * optimization for /dev/mem mmap'ers into WB memory (BIOS
558 * tools and ACPI tools). Use WB request for WB memory and use
559 * UC_MINUS otherwise.
560 */
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100561 actual_type = pat_x_mtrr_type(start, end, req_type);
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700562
Suresh Siddha95971342009-01-13 10:21:30 -0800563 if (new_type)
564 *new_type = actual_type;
565
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800566 is_range_ram = pat_pagerange_is_ram(start, end);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700567 if (is_range_ram == 1) {
568
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700569 err = reserve_ram_pages_type(start, end, req_type, new_type);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700570
571 return err;
572 } else if (is_range_ram < 0) {
Suresh Siddha9542ada2008-09-24 08:53:33 -0700573 return -EINVAL;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700574 }
Suresh Siddha9542ada2008-09-24 08:53:33 -0700575
Venkatesh Pallipadi6a4f3b52010-06-10 17:45:01 -0700576 new = kzalloc(sizeof(struct memtype), GFP_KERNEL);
Andreas Herrmannac979912008-06-20 22:01:49 +0200577 if (!new)
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700578 return -ENOMEM;
579
Ingo Molnarad2cde12008-09-30 13:20:45 +0200580 new->start = start;
581 new->end = end;
582 new->type = actual_type;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700583
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700584 spin_lock(&memtype_lock);
585
Pallipadi, Venkatesh9e41a492010-02-10 15:26:07 -0800586 err = rbt_memtype_check_insert(new, new_type);
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700587 if (err) {
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200588 pr_info("x86/PAT: reserve_memtype failed [mem %#010Lx-%#010Lx], track %s, req %s\n",
589 start, end - 1,
590 cattr_name(new->type), cattr_name(req_type));
Andreas Herrmannac979912008-06-20 22:01:49 +0200591 kfree(new);
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700592 spin_unlock(&memtype_lock);
Ingo Molnarad2cde12008-09-30 13:20:45 +0200593
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700594 return err;
595 }
596
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700597 spin_unlock(&memtype_lock);
Andreas Herrmann3e9c83b2008-06-20 22:04:02 +0200598
Bjorn Helgaas365811d2012-05-29 15:06:29 -0700599 dprintk("reserve_memtype added [mem %#010Lx-%#010Lx], track %s, req %s, ret %s\n",
600 start, end - 1, cattr_name(new->type), cattr_name(req_type),
Andreas Herrmann3e9c83b2008-06-20 22:04:02 +0200601 new_type ? cattr_name(*new_type) : "-");
602
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700603 return err;
604}
605
606int free_memtype(u64 start, u64 end)
607{
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700608 int err = -EINVAL;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700609 int is_range_ram;
Xiaotian Feng20413f22010-05-26 09:51:10 +0800610 struct memtype *entry;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700611
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200612 if (!pat_enabled())
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700613 return 0;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700614
615 /* Low ISA region is always mapped WB. No need to track */
H. Peter Anvin8a271382009-11-23 14:49:20 -0800616 if (x86_platform.is_untracked_pat_range(start, end))
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700617 return 0;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700618
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800619 is_range_ram = pat_pagerange_is_ram(start, end);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700620 if (is_range_ram == 1) {
621
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700622 err = free_ram_pages_type(start, end);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700623
624 return err;
625 } else if (is_range_ram < 0) {
Suresh Siddha9542ada2008-09-24 08:53:33 -0700626 return -EINVAL;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700627 }
Suresh Siddha9542ada2008-09-24 08:53:33 -0700628
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700629 spin_lock(&memtype_lock);
Xiaotian Feng20413f22010-05-26 09:51:10 +0800630 entry = rbt_memtype_erase(start, end);
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700631 spin_unlock(&memtype_lock);
632
Toshi Kani2039e6a2015-12-22 17:54:24 -0700633 if (IS_ERR(entry)) {
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200634 pr_info("x86/PAT: %s:%d freeing invalid memtype [mem %#010Lx-%#010Lx]\n",
635 current->comm, current->pid, start, end - 1);
Xiaotian Feng20413f22010-05-26 09:51:10 +0800636 return -EINVAL;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700637 }
venkatesh.pallipadi@intel.com6997ab42008-03-18 17:00:25 -0700638
Xiaotian Feng20413f22010-05-26 09:51:10 +0800639 kfree(entry);
640
Bjorn Helgaas365811d2012-05-29 15:06:29 -0700641 dprintk("free_memtype request [mem %#010Lx-%#010Lx]\n", start, end - 1);
Ingo Molnarad2cde12008-09-30 13:20:45 +0200642
Xiaotian Feng20413f22010-05-26 09:51:10 +0800643 return 0;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700644}
645
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700646
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700647/**
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700648 * lookup_memtype - Looksup the memory type for a physical address
649 * @paddr: physical address of which memory type needs to be looked up
650 *
651 * Only to be called when PAT is enabled
652 *
Juergen Gross2a374692014-11-03 14:01:55 +0100653 * Returns _PAGE_CACHE_MODE_WB, _PAGE_CACHE_MODE_WC, _PAGE_CACHE_MODE_UC_MINUS
Toshi Kani35a5a102015-06-04 18:55:19 +0200654 * or _PAGE_CACHE_MODE_WT.
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700655 */
Juergen Gross2a374692014-11-03 14:01:55 +0100656static enum page_cache_mode lookup_memtype(u64 paddr)
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700657{
Juergen Gross2a374692014-11-03 14:01:55 +0100658 enum page_cache_mode rettype = _PAGE_CACHE_MODE_WB;
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700659 struct memtype *entry;
660
H. Peter Anvin8a271382009-11-23 14:49:20 -0800661 if (x86_platform.is_untracked_pat_range(paddr, paddr + PAGE_SIZE))
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700662 return rettype;
663
664 if (pat_pagerange_is_ram(paddr, paddr + PAGE_SIZE)) {
665 struct page *page;
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700666
Toshi Kani35a5a102015-06-04 18:55:19 +0200667 page = pfn_to_page(paddr >> PAGE_SHIFT);
668 return get_page_memtype(page);
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700669 }
670
671 spin_lock(&memtype_lock);
672
Pallipadi, Venkatesh9e41a492010-02-10 15:26:07 -0800673 entry = rbt_memtype_lookup(paddr);
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700674 if (entry != NULL)
675 rettype = entry->type;
676 else
Juergen Gross2a374692014-11-03 14:01:55 +0100677 rettype = _PAGE_CACHE_MODE_UC_MINUS;
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700678
679 spin_unlock(&memtype_lock);
680 return rettype;
681}
682
683/**
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700684 * io_reserve_memtype - Request a memory type mapping for a region of memory
685 * @start: start (physical address) of the region
686 * @end: end (physical address) of the region
687 * @type: A pointer to memtype, with requested type. On success, requested
688 * or any other compatible type that was available for the region is returned
689 *
690 * On success, returns 0
691 * On failure, returns non-zero
692 */
693int io_reserve_memtype(resource_size_t start, resource_size_t end,
Juergen Gross49a3b3c2014-11-03 14:01:54 +0100694 enum page_cache_mode *type)
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700695{
H. Peter Anvinb8551922009-08-26 17:17:51 -0700696 resource_size_t size = end - start;
Juergen Gross49a3b3c2014-11-03 14:01:54 +0100697 enum page_cache_mode req_type = *type;
698 enum page_cache_mode new_type;
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700699 int ret;
700
H. Peter Anvinb8551922009-08-26 17:17:51 -0700701 WARN_ON_ONCE(iomem_map_sanity_check(start, size));
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700702
703 ret = reserve_memtype(start, end, req_type, &new_type);
704 if (ret)
705 goto out_err;
706
H. Peter Anvinb8551922009-08-26 17:17:51 -0700707 if (!is_new_memtype_allowed(start, size, req_type, new_type))
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700708 goto out_free;
709
H. Peter Anvinb8551922009-08-26 17:17:51 -0700710 if (kernel_map_sync_memtype(start, size, new_type) < 0)
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700711 goto out_free;
712
713 *type = new_type;
714 return 0;
715
716out_free:
717 free_memtype(start, end);
718 ret = -EBUSY;
719out_err:
720 return ret;
721}
722
723/**
724 * io_free_memtype - Release a memory type mapping for a region of memory
725 * @start: start (physical address) of the region
726 * @end: end (physical address) of the region
727 */
728void io_free_memtype(resource_size_t start, resource_size_t end)
729{
730 free_memtype(start, end);
731}
732
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700733pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
734 unsigned long size, pgprot_t vma_prot)
735{
736 return vma_prot;
737}
738
Ingo Molnard0926332008-07-18 00:26:59 +0200739#ifdef CONFIG_STRICT_DEVMEM
Pavel Machek1f40a8b2014-12-28 17:15:24 +0100740/* This check is done in drivers/char/mem.c in case of STRICT_DEVMEM */
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700741static inline int range_is_allowed(unsigned long pfn, unsigned long size)
742{
743 return 1;
744}
745#else
Ravikiran G Thirumalai9e41bff2008-10-30 13:59:21 -0700746/* This check is needed to avoid cache aliasing when PAT is enabled */
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700747static inline int range_is_allowed(unsigned long pfn, unsigned long size)
748{
749 u64 from = ((u64)pfn) << PAGE_SHIFT;
750 u64 to = from + size;
751 u64 cursor = from;
752
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200753 if (!pat_enabled())
Ravikiran G Thirumalai9e41bff2008-10-30 13:59:21 -0700754 return 1;
755
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700756 while (cursor < to) {
Jiri Kosina39380b82016-07-08 11:38:28 +0200757 if (!devmem_is_allowed(pfn))
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700758 return 0;
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700759 cursor += PAGE_SIZE;
760 pfn++;
761 }
762 return 1;
763}
Ingo Molnard0926332008-07-18 00:26:59 +0200764#endif /* CONFIG_STRICT_DEVMEM */
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700765
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700766int phys_mem_access_prot_allowed(struct file *file, unsigned long pfn,
767 unsigned long size, pgprot_t *vma_prot)
768{
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100769 enum page_cache_mode pcm = _PAGE_CACHE_MODE_WB;
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700770
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700771 if (!range_is_allowed(pfn, size))
772 return 0;
773
Christoph Hellwig6b2f3d12009-10-27 11:05:28 +0100774 if (file->f_flags & O_DSYNC)
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100775 pcm = _PAGE_CACHE_MODE_UC_MINUS;
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700776
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700777 *vma_prot = __pgprot((pgprot_val(*vma_prot) & ~_PAGE_CACHE_MASK) |
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100778 cachemode2protval(pcm));
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700779 return 1;
780}
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700781
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800782/*
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800783 * Change the memory type for the physial address range in kernel identity
784 * mapping space if that range is a part of identity map.
785 */
Juergen Grossb14097b2014-11-03 14:01:58 +0100786int kernel_map_sync_memtype(u64 base, unsigned long size,
787 enum page_cache_mode pcm)
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800788{
789 unsigned long id_sz;
790
Dave Hansena25b9312013-01-22 13:24:30 -0800791 if (base > __pa(high_memory-1))
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800792 return 0;
793
Dave Hansen60f583d2013-03-07 08:31:51 -0800794 /*
795 * some areas in the middle of the kernel identity range
796 * are not mapped, like the PCI space.
797 */
798 if (!page_is_ram(base >> PAGE_SHIFT))
799 return 0;
800
Dave Hansena25b9312013-01-22 13:24:30 -0800801 id_sz = (__pa(high_memory-1) <= base + size) ?
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800802 __pa(high_memory) - base :
803 size;
804
Juergen Grossb14097b2014-11-03 14:01:58 +0100805 if (ioremap_change_attr((unsigned long)__va(base), id_sz, pcm) < 0) {
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200806 pr_info("x86/PAT: %s:%d ioremap_change_attr failed %s for [mem %#010Lx-%#010Lx]\n",
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800807 current->comm, current->pid,
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100808 cattr_name(pcm),
Bjorn Helgaas365811d2012-05-29 15:06:29 -0700809 base, (unsigned long long)(base + size-1));
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800810 return -EINVAL;
811 }
812 return 0;
813}
814
815/*
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800816 * Internal interface to reserve a range of physical memory with prot.
817 * Reserved non RAM regions only and after successful reserve_memtype,
818 * this func also keeps identity mapping (if any) in sync with this new prot.
819 */
venkatesh.pallipadi@intel.comcdecff62009-01-09 16:13:12 -0800820static int reserve_pfn_range(u64 paddr, unsigned long size, pgprot_t *vma_prot,
821 int strict_prot)
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800822{
823 int is_ram = 0;
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800824 int ret;
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100825 enum page_cache_mode want_pcm = pgprot2cachemode(*vma_prot);
826 enum page_cache_mode pcm = want_pcm;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800827
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800828 is_ram = pat_pagerange_is_ram(paddr, paddr + size);
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800829
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800830 /*
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700831 * reserve_pfn_range() for RAM pages. We do not refcount to keep
832 * track of number of mappings of RAM pages. We can assert that
833 * the type requested matches the type of first page in the range.
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800834 */
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700835 if (is_ram) {
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200836 if (!pat_enabled())
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700837 return 0;
838
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100839 pcm = lookup_memtype(paddr);
840 if (want_pcm != pcm) {
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200841 pr_warn("x86/PAT: %s:%d map pfn RAM range req %s for [mem %#010Lx-%#010Lx], got %s\n",
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700842 current->comm, current->pid,
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100843 cattr_name(want_pcm),
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700844 (unsigned long long)paddr,
Bjorn Helgaas365811d2012-05-29 15:06:29 -0700845 (unsigned long long)(paddr + size - 1),
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100846 cattr_name(pcm));
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700847 *vma_prot = __pgprot((pgprot_val(*vma_prot) &
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100848 (~_PAGE_CACHE_MASK)) |
849 cachemode2protval(pcm));
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700850 }
Pallipadi, Venkatesh4bb9c5c2009-03-12 17:45:27 -0700851 return 0;
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700852 }
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800853
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100854 ret = reserve_memtype(paddr, paddr + size, want_pcm, &pcm);
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800855 if (ret)
856 return ret;
857
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100858 if (pcm != want_pcm) {
Suresh Siddha1adcaaf2009-08-17 13:23:50 -0700859 if (strict_prot ||
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100860 !is_new_memtype_allowed(paddr, size, want_pcm, pcm)) {
venkatesh.pallipadi@intel.comcdecff62009-01-09 16:13:12 -0800861 free_memtype(paddr, paddr + size);
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200862 pr_err("x86/PAT: %s:%d map pfn expected mapping type %s for [mem %#010Lx-%#010Lx], got %s\n",
863 current->comm, current->pid,
864 cattr_name(want_pcm),
865 (unsigned long long)paddr,
866 (unsigned long long)(paddr + size - 1),
867 cattr_name(pcm));
venkatesh.pallipadi@intel.comcdecff62009-01-09 16:13:12 -0800868 return -EINVAL;
869 }
870 /*
871 * We allow returning different type than the one requested in
872 * non strict case.
873 */
874 *vma_prot = __pgprot((pgprot_val(*vma_prot) &
875 (~_PAGE_CACHE_MASK)) |
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100876 cachemode2protval(pcm));
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800877 }
878
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100879 if (kernel_map_sync_memtype(paddr, size, pcm) < 0) {
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800880 free_memtype(paddr, paddr + size);
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800881 return -EINVAL;
882 }
883 return 0;
884}
885
886/*
887 * Internal interface to free a range of physical memory.
888 * Frees non RAM regions only.
889 */
890static void free_pfn_range(u64 paddr, unsigned long size)
891{
892 int is_ram;
893
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800894 is_ram = pat_pagerange_is_ram(paddr, paddr + size);
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800895 if (is_ram == 0)
896 free_memtype(paddr, paddr + size);
897}
898
899/*
Suresh Siddha5180da42012-10-08 16:28:29 -0700900 * track_pfn_copy is called when vma that is covering the pfnmap gets
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800901 * copied through copy_page_range().
902 *
903 * If the vma has a linear pfn mapping for the entire range, we get the prot
904 * from pte and reserve the entire vma range with single reserve_pfn_range call.
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800905 */
Suresh Siddha5180da42012-10-08 16:28:29 -0700906int track_pfn_copy(struct vm_area_struct *vma)
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800907{
H. Peter Anvinc1c15b62008-12-23 10:10:40 -0800908 resource_size_t paddr;
venkatesh.pallipadi@intel.com982d7892008-12-19 13:47:28 -0800909 unsigned long prot;
Pallipadi, Venkatesh4b065042009-04-08 15:37:16 -0700910 unsigned long vma_size = vma->vm_end - vma->vm_start;
venkatesh.pallipadi@intel.comcdecff62009-01-09 16:13:12 -0800911 pgprot_t pgprot;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800912
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -0700913 if (vma->vm_flags & VM_PAT) {
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800914 /*
venkatesh.pallipadi@intel.com982d7892008-12-19 13:47:28 -0800915 * reserve the whole chunk covered by vma. We need the
916 * starting address and protection from pte.
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800917 */
Pallipadi, Venkatesh4b065042009-04-08 15:37:16 -0700918 if (follow_phys(vma, vma->vm_start, 0, &prot, &paddr)) {
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800919 WARN_ON_ONCE(1);
venkatesh.pallipadi@intel.com982d7892008-12-19 13:47:28 -0800920 return -EINVAL;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800921 }
venkatesh.pallipadi@intel.comcdecff62009-01-09 16:13:12 -0800922 pgprot = __pgprot(prot);
923 return reserve_pfn_range(paddr, vma_size, &pgprot, 1);
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800924 }
925
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800926 return 0;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800927}
928
929/*
Dan Williams90497712016-09-07 08:51:21 -0700930 * prot is passed in as a parameter for the new mapping. If the vma has
931 * a linear pfn mapping for the entire range, or no vma is provided,
932 * reserve the entire pfn + size range with single reserve_pfn_range
933 * call.
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800934 */
Suresh Siddha5180da42012-10-08 16:28:29 -0700935int track_pfn_remap(struct vm_area_struct *vma, pgprot_t *prot,
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -0700936 unsigned long pfn, unsigned long addr, unsigned long size)
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800937{
Suresh Siddhab1a86e12012-10-08 16:28:23 -0700938 resource_size_t paddr = (resource_size_t)pfn << PAGE_SHIFT;
Juergen Gross2a374692014-11-03 14:01:55 +0100939 enum page_cache_mode pcm;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800940
Suresh Siddhab1a86e12012-10-08 16:28:23 -0700941 /* reserve the whole chunk starting from paddr */
Dan Williams90497712016-09-07 08:51:21 -0700942 if (!vma || (addr == vma->vm_start
943 && size == (vma->vm_end - vma->vm_start))) {
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -0700944 int ret;
945
946 ret = reserve_pfn_range(paddr, size, prot, 0);
Dan Williams90497712016-09-07 08:51:21 -0700947 if (ret == 0 && vma)
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -0700948 vma->vm_flags |= VM_PAT;
949 return ret;
950 }
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800951
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200952 if (!pat_enabled())
Venkatesh Pallipadi108763762009-07-10 09:57:40 -0700953 return 0;
954
Suresh Siddha5180da42012-10-08 16:28:29 -0700955 /*
956 * For anything smaller than the vma size we set prot based on the
957 * lookup.
958 */
Juergen Gross2a374692014-11-03 14:01:55 +0100959 pcm = lookup_memtype(paddr);
Suresh Siddha5180da42012-10-08 16:28:29 -0700960
961 /* Check memtype for the remaining pages */
962 while (size > PAGE_SIZE) {
963 size -= PAGE_SIZE;
964 paddr += PAGE_SIZE;
Juergen Gross2a374692014-11-03 14:01:55 +0100965 if (pcm != lookup_memtype(paddr))
Suresh Siddha5180da42012-10-08 16:28:29 -0700966 return -EINVAL;
967 }
968
Matthew Wilcoxdd7b6842016-01-25 12:25:15 -0500969 *prot = __pgprot((pgprot_val(*prot) & (~_PAGE_CACHE_MASK)) |
Juergen Gross2a374692014-11-03 14:01:55 +0100970 cachemode2protval(pcm));
Suresh Siddha5180da42012-10-08 16:28:29 -0700971
972 return 0;
973}
974
975int track_pfn_insert(struct vm_area_struct *vma, pgprot_t *prot,
Dan Williamsf25748e32016-01-15 16:56:43 -0800976 pfn_t pfn)
Suresh Siddha5180da42012-10-08 16:28:29 -0700977{
Juergen Gross2a374692014-11-03 14:01:55 +0100978 enum page_cache_mode pcm;
Suresh Siddha5180da42012-10-08 16:28:29 -0700979
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200980 if (!pat_enabled())
Suresh Siddha5180da42012-10-08 16:28:29 -0700981 return 0;
982
983 /* Set prot based on lookup */
Dan Williamsf25748e32016-01-15 16:56:43 -0800984 pcm = lookup_memtype(pfn_t_to_phys(pfn));
Matthew Wilcoxdd7b6842016-01-25 12:25:15 -0500985 *prot = __pgprot((pgprot_val(*prot) & (~_PAGE_CACHE_MASK)) |
Juergen Gross2a374692014-11-03 14:01:55 +0100986 cachemode2protval(pcm));
Venkatesh Pallipadi108763762009-07-10 09:57:40 -0700987
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800988 return 0;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800989}
990
991/*
Suresh Siddha5180da42012-10-08 16:28:29 -0700992 * untrack_pfn is called while unmapping a pfnmap for a region.
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800993 * untrack can be called for a specific region indicated by pfn and size or
Suresh Siddhab1a86e12012-10-08 16:28:23 -0700994 * can be for the entire vma (in which case pfn, size are zero).
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800995 */
Suresh Siddha5180da42012-10-08 16:28:29 -0700996void untrack_pfn(struct vm_area_struct *vma, unsigned long pfn,
997 unsigned long size)
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800998{
H. Peter Anvinc1c15b62008-12-23 10:10:40 -0800999 resource_size_t paddr;
Suresh Siddhab1a86e12012-10-08 16:28:23 -07001000 unsigned long prot;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -08001001
Dan Williams90497712016-09-07 08:51:21 -07001002 if (vma && !(vma->vm_flags & VM_PAT))
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -08001003 return;
Suresh Siddhab1a86e12012-10-08 16:28:23 -07001004
1005 /* free the chunk starting from pfn or the whole chunk */
1006 paddr = (resource_size_t)pfn << PAGE_SHIFT;
1007 if (!paddr && !size) {
1008 if (follow_phys(vma, vma->vm_start, 0, &prot, &paddr)) {
1009 WARN_ON_ONCE(1);
1010 return;
1011 }
1012
1013 size = vma->vm_end - vma->vm_start;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -08001014 }
Suresh Siddhab1a86e12012-10-08 16:28:23 -07001015 free_pfn_range(paddr, size);
Dan Williams90497712016-09-07 08:51:21 -07001016 if (vma)
1017 vma->vm_flags &= ~VM_PAT;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -08001018}
1019
Toshi Kanid9fe4fa2015-12-22 17:54:23 -07001020/*
1021 * untrack_pfn_moved is called, while mremapping a pfnmap for a new region,
1022 * with the old vma after its pfnmap page table has been removed. The new
1023 * vma has a new pfnmap to the same pfn & cache type with VM_PAT set.
1024 */
1025void untrack_pfn_moved(struct vm_area_struct *vma)
1026{
1027 vma->vm_flags &= ~VM_PAT;
1028}
1029
venkatesh.pallipadi@intel.com2520bd32008-12-18 11:41:32 -08001030pgprot_t pgprot_writecombine(pgprot_t prot)
1031{
Borislav Petkov7202fdb2015-06-04 18:55:11 +02001032 return __pgprot(pgprot_val(prot) |
Juergen Grosse00c8cc2014-11-03 14:01:59 +01001033 cachemode2protval(_PAGE_CACHE_MODE_WC));
venkatesh.pallipadi@intel.com2520bd32008-12-18 11:41:32 -08001034}
Ingo Molnar92b9af92009-02-28 14:09:27 +01001035EXPORT_SYMBOL_GPL(pgprot_writecombine);
venkatesh.pallipadi@intel.com2520bd32008-12-18 11:41:32 -08001036
Toshi Kanid1b4bfb2015-06-04 18:55:18 +02001037pgprot_t pgprot_writethrough(pgprot_t prot)
1038{
1039 return __pgprot(pgprot_val(prot) |
1040 cachemode2protval(_PAGE_CACHE_MODE_WT));
1041}
1042EXPORT_SYMBOL_GPL(pgprot_writethrough);
1043
Andreas Herrmann012f09e2008-08-06 16:23:08 +02001044#if defined(CONFIG_DEBUG_FS) && defined(CONFIG_X86_PAT)
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001045
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001046static struct memtype *memtype_get_idx(loff_t pos)
1047{
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -08001048 struct memtype *print_entry;
1049 int ret;
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001050
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -08001051 print_entry = kzalloc(sizeof(struct memtype), GFP_KERNEL);
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001052 if (!print_entry)
1053 return NULL;
1054
1055 spin_lock(&memtype_lock);
Pallipadi, Venkatesh9e41a492010-02-10 15:26:07 -08001056 ret = rbt_memtype_copy_nth_element(print_entry, pos);
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001057 spin_unlock(&memtype_lock);
Ingo Molnarad2cde12008-09-30 13:20:45 +02001058
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -08001059 if (!ret) {
1060 return print_entry;
1061 } else {
1062 kfree(print_entry);
1063 return NULL;
1064 }
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001065}
1066
1067static void *memtype_seq_start(struct seq_file *seq, loff_t *pos)
1068{
1069 if (*pos == 0) {
1070 ++*pos;
Rasmus Villemoes37367082014-11-28 22:03:41 +01001071 seq_puts(seq, "PAT memtype list:\n");
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001072 }
1073
1074 return memtype_get_idx(*pos);
1075}
1076
1077static void *memtype_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1078{
1079 ++*pos;
1080 return memtype_get_idx(*pos);
1081}
1082
1083static void memtype_seq_stop(struct seq_file *seq, void *v)
1084{
1085}
1086
1087static int memtype_seq_show(struct seq_file *seq, void *v)
1088{
1089 struct memtype *print_entry = (struct memtype *)v;
1090
1091 seq_printf(seq, "%s @ 0x%Lx-0x%Lx\n", cattr_name(print_entry->type),
1092 print_entry->start, print_entry->end);
1093 kfree(print_entry);
Ingo Molnarad2cde12008-09-30 13:20:45 +02001094
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001095 return 0;
1096}
1097
Tobias Klauserd535e432009-09-04 15:53:09 +02001098static const struct seq_operations memtype_seq_ops = {
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001099 .start = memtype_seq_start,
1100 .next = memtype_seq_next,
1101 .stop = memtype_seq_stop,
1102 .show = memtype_seq_show,
1103};
1104
1105static int memtype_seq_open(struct inode *inode, struct file *file)
1106{
1107 return seq_open(file, &memtype_seq_ops);
1108}
1109
1110static const struct file_operations memtype_fops = {
1111 .open = memtype_seq_open,
1112 .read = seq_read,
1113 .llseek = seq_lseek,
1114 .release = seq_release,
1115};
1116
1117static int __init pat_memtype_list_init(void)
1118{
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +02001119 if (pat_enabled()) {
Xiaotian Fengdd4377b2009-11-26 19:53:48 +08001120 debugfs_create_file("pat_memtype_list", S_IRUSR,
1121 arch_debugfs_dir, NULL, &memtype_fops);
1122 }
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001123 return 0;
1124}
1125
1126late_initcall(pat_memtype_list_init);
1127
Andreas Herrmann012f09e2008-08-06 16:23:08 +02001128#endif /* CONFIG_DEBUG_FS && CONFIG_X86_PAT */