blob: d9fbd4f699202538e45f29f1f33f9deebeedfcb6 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -07002/*
3 * Handle caching attributes in page tables (PAT)
4 *
5 * Authors: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
6 * Suresh B Siddha <suresh.b.siddha@intel.com>
7 *
8 * Loosely based on earlier PAT patchset from Eric Biederman and Andi Kleen.
9 */
10
Ingo Molnarad2cde12008-09-30 13:20:45 +020011#include <linux/seq_file.h>
Mike Rapoport57c8a662018-10-30 15:09:49 -070012#include <linux/memblock.h>
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -070013#include <linux/debugfs.h>
Ingo Molnar9de94db2017-01-27 13:08:42 +010014#include <linux/ioport.h>
Ingo Molnarad2cde12008-09-30 13:20:45 +020015#include <linux/kernel.h>
Dan Williamsf25748e32016-01-15 16:56:43 -080016#include <linux/pfn_t.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Ingo Molnarad2cde12008-09-30 13:20:45 +020018#include <linux/mm.h>
19#include <linux/fs.h>
Venkatesh Pallipadi335ef892009-07-10 09:57:36 -070020#include <linux/rbtree.h>
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070021
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070022#include <asm/cacheflush.h>
Ingo Molnarad2cde12008-09-30 13:20:45 +020023#include <asm/processor.h>
24#include <asm/tlbflush.h>
Jack Steinerfd12a0d2009-11-19 14:23:41 -060025#include <asm/x86_init.h>
Ingo Molnarad2cde12008-09-30 13:20:45 +020026#include <asm/pgtable.h>
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070027#include <asm/fcntl.h>
Ingo Molnar66441bd2017-01-27 10:27:10 +010028#include <asm/e820/api.h>
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070029#include <asm/mtrr.h>
Ingo Molnarad2cde12008-09-30 13:20:45 +020030#include <asm/page.h>
31#include <asm/msr.h>
32#include <asm/pat.h>
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -070033#include <asm/io.h>
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070034
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -080035#include "pat_internal.h"
Juergen Grossbd809af2014-11-03 14:02:03 +010036#include "mm_internal.h"
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -080037
Luis R. Rodriguez9e765612015-05-26 10:28:11 +020038#undef pr_fmt
39#define pr_fmt(fmt) "" fmt
40
Mikulas Patocka99c13b82017-07-04 19:04:23 -040041static bool __read_mostly boot_cpu_done;
42static bool __read_mostly pat_disabled = !IS_ENABLED(CONFIG_X86_PAT);
43static bool __read_mostly pat_initialized;
44static bool __read_mostly init_cm_done;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070045
Toshi Kani224bb1e2016-03-23 15:41:58 -060046void pat_disable(const char *reason)
Thomas Gleixner8d4a4302008-05-08 09:18:43 +020047{
Mikulas Patocka99c13b82017-07-04 19:04:23 -040048 if (pat_disabled)
Toshi Kani224bb1e2016-03-23 15:41:58 -060049 return;
50
51 if (boot_cpu_done) {
52 WARN_ONCE(1, "x86/PAT: PAT cannot be disabled after initialization\n");
53 return;
54 }
55
Mikulas Patocka99c13b82017-07-04 19:04:23 -040056 pat_disabled = true;
Luis R. Rodriguez9e765612015-05-26 10:28:11 +020057 pr_info("x86/PAT: %s\n", reason);
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{
Mikulas Patocka99c13b82017-07-04 19:04:23 -040069 return pat_initialized;
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +020070}
Luis R. Rodriguezfbe71932015-05-26 10:28:16 +020071EXPORT_SYMBOL_GPL(pat_enabled);
Venki Pallipadi77b52b42008-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 Pallipadi77b52b42008-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 Pallipadi77b52b42008-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);
Mikulas Patocka99c13b82017-07-04 19:04:23 -0400207
208 init_cm_done = true;
Juergen Grossbd809af2014-11-03 14:02:03 +0100209}
210
Andreas Herrmanncd7a4e92008-06-10 16:05:39 +0200211#define PAT(x, y) ((u64)PAT_ ## y << ((x)*8))
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700212
Borislav Petkov9dac6292015-06-04 18:55:09 +0200213static void pat_bsp_init(u64 pat)
214{
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200215 u64 tmp_pat;
216
Toshi Kanid63dcf42016-03-23 15:41:59 -0600217 if (!boot_cpu_has(X86_FEATURE_PAT)) {
Borislav Petkov9dac6292015-06-04 18:55:09 +0200218 pat_disable("PAT not supported by CPU.");
219 return;
220 }
221
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200222 rdmsrl(MSR_IA32_CR_PAT, tmp_pat);
223 if (!tmp_pat) {
Borislav Petkov9dac6292015-06-04 18:55:09 +0200224 pat_disable("PAT MSR is 0, disabled.");
225 return;
226 }
227
228 wrmsrl(MSR_IA32_CR_PAT, pat);
Mikulas Patocka99c13b82017-07-04 19:04:23 -0400229 pat_initialized = true;
Borislav Petkov9dac6292015-06-04 18:55:09 +0200230
Toshi Kani02f037d2016-03-23 15:41:57 -0600231 __init_cache_modes(pat);
Borislav Petkov9dac6292015-06-04 18:55:09 +0200232}
233
234static void pat_ap_init(u64 pat)
235{
Ingo Molnarc08d5172017-06-01 15:52:23 +0200236 if (!boot_cpu_has(X86_FEATURE_PAT)) {
Borislav Petkov9dac6292015-06-04 18:55:09 +0200237 /*
238 * If this happens we are on a secondary CPU, but switched to
239 * PAT on the boot CPU. We have no way to undo PAT.
240 */
241 panic("x86/PAT: PAT enabled, but not supported by secondary CPU\n");
242 }
243
244 wrmsrl(MSR_IA32_CR_PAT, pat);
245}
246
Mikulas Patocka99c13b82017-07-04 19:04:23 -0400247void init_cache_modes(void)
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700248{
Toshi Kani02f037d2016-03-23 15:41:57 -0600249 u64 pat = 0;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700250
Toshi Kani02f037d2016-03-23 15:41:57 -0600251 if (init_cm_done)
252 return;
253
254 if (boot_cpu_has(X86_FEATURE_PAT)) {
255 /*
256 * CPU supports PAT. Set PAT table to be consistent with
257 * PAT MSR. This case supports "nopat" boot option, and
258 * virtual machine environments which support PAT without
259 * MTRRs. In specific, Xen has unique setup to PAT MSR.
260 *
261 * If PAT MSR returns 0, it is considered invalid and emulates
262 * as No PAT.
263 */
264 rdmsrl(MSR_IA32_CR_PAT, pat);
265 }
266
267 if (!pat) {
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200268 /*
269 * No PAT. Emulate the PAT table that corresponds to the two
Toshi Kani02f037d2016-03-23 15:41:57 -0600270 * cache bits, PWT (Write Through) and PCD (Cache Disable).
271 * This setup is also the same as the BIOS default setup.
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200272 *
Toshi Kanid79a40c2015-06-04 18:55:12 +0200273 * PTE encoding:
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200274 *
275 * PCD
276 * |PWT PAT
277 * || slot
278 * 00 0 WB : _PAGE_CACHE_MODE_WB
279 * 01 1 WT : _PAGE_CACHE_MODE_WT
280 * 10 2 UC-: _PAGE_CACHE_MODE_UC_MINUS
281 * 11 3 UC : _PAGE_CACHE_MODE_UC
282 *
283 * NOTE: When WC or WP is used, it is redirected to UC- per
284 * the default setup in __cachemode2pte_tbl[].
285 */
286 pat = PAT(0, WB) | PAT(1, WT) | PAT(2, UC_MINUS) | PAT(3, UC) |
287 PAT(4, WB) | PAT(5, WT) | PAT(6, UC_MINUS) | PAT(7, UC);
Toshi Kani02f037d2016-03-23 15:41:57 -0600288 }
Toshi Kanid79a40c2015-06-04 18:55:12 +0200289
Toshi Kani02f037d2016-03-23 15:41:57 -0600290 __init_cache_modes(pat);
Toshi Kani02f037d2016-03-23 15:41:57 -0600291}
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
Tom Lendackyaac7b792017-07-17 16:09:59 -0500297 * to enable additional cache attributes, WC, WT and WP.
Toshi Kani02f037d2016-03-23 15:41:57 -0600298 *
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
Mikulas Patocka99c13b82017-07-04 19:04:23 -0400308 if (pat_disabled)
Toshi Kani02f037d2016-03-23 15:41:57 -0600309 return;
Toshi Kani02f037d2016-03-23 15:41:57 -0600310
311 if ((c->x86_vendor == X86_VENDOR_INTEL) &&
312 (((c->x86 == 0x6) && (c->x86_model <= 0xd)) ||
313 ((c->x86 == 0xf) && (c->x86_model <= 0x6)))) {
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200314 /*
Toshi Kanid79a40c2015-06-04 18:55:12 +0200315 * PAT support with the lower four entries. Intel Pentium 2,
316 * 3, M, and 4 are affected by PAT errata, which makes the
317 * upper four entries unusable. To be on the safe side, we don't
318 * use those.
319 *
320 * PTE encoding:
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200321 * PAT
322 * |PCD
Toshi Kanid79a40c2015-06-04 18:55:12 +0200323 * ||PWT PAT
324 * ||| slot
325 * 000 0 WB : _PAGE_CACHE_MODE_WB
326 * 001 1 WC : _PAGE_CACHE_MODE_WC
327 * 010 2 UC-: _PAGE_CACHE_MODE_UC_MINUS
328 * 011 3 UC : _PAGE_CACHE_MODE_UC
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200329 * PAT bit unused
Toshi Kanid79a40c2015-06-04 18:55:12 +0200330 *
331 * NOTE: When WT or WP is used, it is redirected to UC- per
332 * the default setup in __cachemode2pte_tbl[].
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200333 */
334 pat = PAT(0, WB) | PAT(1, WC) | PAT(2, UC_MINUS) | PAT(3, UC) |
335 PAT(4, WB) | PAT(5, WC) | PAT(6, UC_MINUS) | PAT(7, UC);
Toshi Kanid79a40c2015-06-04 18:55:12 +0200336 } else {
337 /*
338 * Full PAT support. We put WT in slot 7 to improve
339 * robustness in the presence of errata that might cause
340 * the high PAT bit to be ignored. This way, a buggy slot 7
341 * access will hit slot 3, and slot 3 is UC, so at worst
342 * we lose performance without causing a correctness issue.
343 * Pentium 4 erratum N46 is an example for such an erratum,
344 * although we try not to use PAT at all on affected CPUs.
345 *
346 * PTE encoding:
347 * PAT
348 * |PCD
349 * ||PWT PAT
350 * ||| slot
351 * 000 0 WB : _PAGE_CACHE_MODE_WB
352 * 001 1 WC : _PAGE_CACHE_MODE_WC
353 * 010 2 UC-: _PAGE_CACHE_MODE_UC_MINUS
354 * 011 3 UC : _PAGE_CACHE_MODE_UC
355 * 100 4 WB : Reserved
Tom Lendackyaac7b792017-07-17 16:09:59 -0500356 * 101 5 WP : _PAGE_CACHE_MODE_WP
Toshi Kanid79a40c2015-06-04 18:55:12 +0200357 * 110 6 UC-: Reserved
358 * 111 7 WT : _PAGE_CACHE_MODE_WT
359 *
360 * The reserved slots are unused, but mapped to their
361 * corresponding types in the presence of PAT errata.
362 */
363 pat = PAT(0, WB) | PAT(1, WC) | PAT(2, UC_MINUS) | PAT(3, UC) |
Tom Lendackyaac7b792017-07-17 16:09:59 -0500364 PAT(4, WB) | PAT(5, WP) | PAT(6, UC_MINUS) | PAT(7, WT);
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200365 }
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700366
Borislav Petkov9dac6292015-06-04 18:55:09 +0200367 if (!boot_cpu_done) {
368 pat_bsp_init(pat);
369 boot_cpu_done = true;
370 } else {
371 pat_ap_init(pat);
Juergen Gross9d34cfd2015-01-12 06:15:45 +0100372 }
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700373}
374
375#undef PAT
376
Pallipadi, Venkatesh9e41a492010-02-10 15:26:07 -0800377static DEFINE_SPINLOCK(memtype_lock); /* protects memtype accesses */
Venkatesh Pallipadi335ef892009-07-10 09:57:36 -0700378
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700379/*
380 * Does intersection of PAT memory type and MTRR memory type and returns
381 * the resulting memory type as PAT understands it.
382 * (Type in pat and mtrr will not have same value)
383 * The intersection is based on "Effective Memory Type" tables in IA-32
384 * SDM vol 3a
385 */
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100386static unsigned long pat_x_mtrr_type(u64 start, u64 end,
387 enum page_cache_mode req_type)
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700388{
Venki Pallipadic26421d2008-05-29 12:01:44 -0700389 /*
390 * Look for MTRR hint to get the effective type in case where PAT
391 * request is for WB.
392 */
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100393 if (req_type == _PAGE_CACHE_MODE_WB) {
Toshi Kanib73522e2015-05-26 10:28:10 +0200394 u8 mtrr_type, uniform;
Andreas Herrmanndd0c7c42008-06-18 15:38:57 +0200395
Toshi Kanib73522e2015-05-26 10:28:10 +0200396 mtrr_type = mtrr_type_lookup(start, end, &uniform);
Suresh Siddhab6ff32d2009-04-09 14:26:51 -0700397 if (mtrr_type != MTRR_TYPE_WRBACK)
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100398 return _PAGE_CACHE_MODE_UC_MINUS;
Suresh Siddhab6ff32d2009-04-09 14:26:51 -0700399
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100400 return _PAGE_CACHE_MODE_WB;
Andreas Herrmanndd0c7c42008-06-18 15:38:57 +0200401 }
402
403 return req_type;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700404}
405
John Dykstrafa835232012-05-25 16:12:46 -0500406struct pagerange_state {
407 unsigned long cur_pfn;
408 int ram;
409 int not_ram;
410};
411
412static int
413pagerange_is_ram_callback(unsigned long initial_pfn, unsigned long total_nr_pages, void *arg)
414{
415 struct pagerange_state *state = arg;
416
417 state->not_ram |= initial_pfn > state->cur_pfn;
418 state->ram |= total_nr_pages > 0;
419 state->cur_pfn = initial_pfn + total_nr_pages;
420
421 return state->ram && state->not_ram;
422}
423
Yasuaki Ishimatsu3709c852010-07-22 14:57:35 +0900424static int pat_pagerange_is_ram(resource_size_t start, resource_size_t end)
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800425{
John Dykstrafa835232012-05-25 16:12:46 -0500426 int ret = 0;
427 unsigned long start_pfn = start >> PAGE_SHIFT;
428 unsigned long end_pfn = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
429 struct pagerange_state state = {start_pfn, 0, 0};
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800430
John Dykstrafa835232012-05-25 16:12:46 -0500431 /*
432 * For legacy reasons, physical address range in the legacy ISA
433 * region is tracked as non-RAM. This will allow users of
434 * /dev/mem to map portions of legacy ISA region, even when
435 * some of those portions are listed(or not even listed) with
436 * different e820 types(RAM/reserved/..)
437 */
438 if (start_pfn < ISA_END_ADDRESS >> PAGE_SHIFT)
439 start_pfn = ISA_END_ADDRESS >> PAGE_SHIFT;
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800440
John Dykstrafa835232012-05-25 16:12:46 -0500441 if (start_pfn < end_pfn) {
442 ret = walk_system_ram_range(start_pfn, end_pfn - start_pfn,
443 &state, pagerange_is_ram_callback);
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800444 }
445
John Dykstrafa835232012-05-25 16:12:46 -0500446 return (ret > 0) ? -1 : (state.ram ? 1 : 0);
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800447}
448
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700449/*
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700450 * For RAM pages, we use page flags to mark the pages with appropriate type.
Toshi Kani35a5a102015-06-04 18:55:19 +0200451 * The page flags are limited to four types, WB (default), WC, WT and UC-.
452 * WP request fails with -EINVAL, and UC gets redirected to UC-. Setting
453 * a new memory type is only allowed for a page mapped with the default WB
454 * type.
Toshi Kani0d69bdf2015-06-04 18:55:13 +0200455 *
456 * Here we do two passes:
457 * - Find the memtype of all the pages in the range, look for any conflicts.
458 * - In case of no conflicts, set the new memtype for pages in the range.
Suresh Siddha9542ada2008-09-24 08:53:33 -0700459 */
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100460static int reserve_ram_pages_type(u64 start, u64 end,
461 enum page_cache_mode req_type,
462 enum page_cache_mode *new_type)
Suresh Siddha9542ada2008-09-24 08:53:33 -0700463{
464 struct page *page;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700465 u64 pfn;
466
Toshi Kani35a5a102015-06-04 18:55:19 +0200467 if (req_type == _PAGE_CACHE_MODE_WP) {
Toshi Kani0d69bdf2015-06-04 18:55:13 +0200468 if (new_type)
469 *new_type = _PAGE_CACHE_MODE_UC_MINUS;
470 return -EINVAL;
471 }
472
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100473 if (req_type == _PAGE_CACHE_MODE_UC) {
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700474 /* We do not support strong UC */
475 WARN_ON_ONCE(1);
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100476 req_type = _PAGE_CACHE_MODE_UC_MINUS;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700477 }
478
479 for (pfn = (start >> PAGE_SHIFT); pfn < (end >> PAGE_SHIFT); ++pfn) {
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100480 enum page_cache_mode type;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700481
482 page = pfn_to_page(pfn);
483 type = get_page_memtype(page);
Toshi Kani35a5a102015-06-04 18:55:19 +0200484 if (type != _PAGE_CACHE_MODE_WB) {
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200485 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 -0700486 start, end - 1, type, req_type);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700487 if (new_type)
488 *new_type = type;
489
490 return -EBUSY;
491 }
492 }
493
494 if (new_type)
495 *new_type = req_type;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700496
497 for (pfn = (start >> PAGE_SHIFT); pfn < (end >> PAGE_SHIFT); ++pfn) {
498 page = pfn_to_page(pfn);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700499 set_page_memtype(page, req_type);
Suresh Siddha9542ada2008-09-24 08:53:33 -0700500 }
501 return 0;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700502}
503
504static int free_ram_pages_type(u64 start, u64 end)
505{
506 struct page *page;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700507 u64 pfn;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700508
509 for (pfn = (start >> PAGE_SHIFT); pfn < (end >> PAGE_SHIFT); ++pfn) {
510 page = pfn_to_page(pfn);
Toshi Kani35a5a102015-06-04 18:55:19 +0200511 set_page_memtype(page, _PAGE_CACHE_MODE_WB);
Suresh Siddha9542ada2008-09-24 08:53:33 -0700512 }
513 return 0;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700514}
515
Dan Williams510ee092018-07-13 21:50:27 -0700516static u64 sanitize_phys(u64 address)
517{
518 /*
519 * When changing the memtype for pages containing poison allow
520 * for a "decoy" virtual address (bit 63 clear) passed to
521 * set_memory_X(). __pa() on a "decoy" address results in a
522 * physical address with bit 63 set.
Dan Williams51c3fbd2018-12-11 07:49:39 -0800523 *
524 * Decoy addresses are not present for 32-bit builds, see
525 * set_mce_nospec().
Dan Williams510ee092018-07-13 21:50:27 -0700526 */
Dan Williams51c3fbd2018-12-11 07:49:39 -0800527 if (IS_ENABLED(CONFIG_X86_64))
528 return address & __PHYSICAL_MASK;
529 return address;
Dan Williams510ee092018-07-13 21:50:27 -0700530}
531
Suresh Siddha9542ada2008-09-24 08:53:33 -0700532/*
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700533 * req_type typically has one of the:
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100534 * - _PAGE_CACHE_MODE_WB
535 * - _PAGE_CACHE_MODE_WC
536 * - _PAGE_CACHE_MODE_UC_MINUS
537 * - _PAGE_CACHE_MODE_UC
Toshi Kani0d69bdf2015-06-04 18:55:13 +0200538 * - _PAGE_CACHE_MODE_WT
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700539 *
Andreas Herrmannac979912008-06-20 22:01:49 +0200540 * If new_type is NULL, function will return an error if it cannot reserve the
541 * region with req_type. If new_type is non-NULL, function will return
542 * available type in new_type in case of no error. In case of any error
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700543 * it will return a negative return value.
544 */
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100545int reserve_memtype(u64 start, u64 end, enum page_cache_mode req_type,
546 enum page_cache_mode *new_type)
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700547{
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -0800548 struct memtype *new;
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100549 enum page_cache_mode actual_type;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700550 int is_range_ram;
Ingo Molnarad2cde12008-09-30 13:20:45 +0200551 int err = 0;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700552
Dan Williams510ee092018-07-13 21:50:27 -0700553 start = sanitize_phys(start);
554 end = sanitize_phys(end);
Dan Williams51c3fbd2018-12-11 07:49:39 -0800555 if (start >= end) {
556 WARN(1, "%s failed: [mem %#010Lx-%#010Lx], req %s\n", __func__,
557 start, end - 1, cattr_name(req_type));
558 return -EINVAL;
559 }
Andreas Herrmann69e26be2008-06-20 22:03:06 +0200560
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200561 if (!pat_enabled()) {
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700562 /* This is identical to page table setting without PAT */
Borislav Petkov7202fdb2015-06-04 18:55:11 +0200563 if (new_type)
564 *new_type = req_type;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700565 return 0;
566 }
567
568 /* Low ISA region is always mapped WB in page table. No need to track */
H. Peter Anvin8a271382009-11-23 14:49:20 -0800569 if (x86_platform.is_untracked_pat_range(start, end)) {
Andreas Herrmannac979912008-06-20 22:01:49 +0200570 if (new_type)
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100571 *new_type = _PAGE_CACHE_MODE_WB;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700572 return 0;
573 }
574
Suresh Siddhab6ff32d2009-04-09 14:26:51 -0700575 /*
576 * Call mtrr_lookup to get the type hint. This is an
577 * optimization for /dev/mem mmap'ers into WB memory (BIOS
578 * tools and ACPI tools). Use WB request for WB memory and use
579 * UC_MINUS otherwise.
580 */
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100581 actual_type = pat_x_mtrr_type(start, end, req_type);
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700582
Suresh Siddha95971342009-01-13 10:21:30 -0800583 if (new_type)
584 *new_type = actual_type;
585
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800586 is_range_ram = pat_pagerange_is_ram(start, end);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700587 if (is_range_ram == 1) {
588
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700589 err = reserve_ram_pages_type(start, end, req_type, new_type);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700590
591 return err;
592 } else if (is_range_ram < 0) {
Suresh Siddha9542ada2008-09-24 08:53:33 -0700593 return -EINVAL;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700594 }
Suresh Siddha9542ada2008-09-24 08:53:33 -0700595
Venkatesh Pallipadi6a4f3b52010-06-10 17:45:01 -0700596 new = kzalloc(sizeof(struct memtype), GFP_KERNEL);
Andreas Herrmannac979912008-06-20 22:01:49 +0200597 if (!new)
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700598 return -ENOMEM;
599
Ingo Molnarad2cde12008-09-30 13:20:45 +0200600 new->start = start;
601 new->end = end;
602 new->type = actual_type;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700603
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700604 spin_lock(&memtype_lock);
605
Pallipadi, Venkatesh9e41a492010-02-10 15:26:07 -0800606 err = rbt_memtype_check_insert(new, new_type);
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700607 if (err) {
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200608 pr_info("x86/PAT: reserve_memtype failed [mem %#010Lx-%#010Lx], track %s, req %s\n",
609 start, end - 1,
610 cattr_name(new->type), cattr_name(req_type));
Andreas Herrmannac979912008-06-20 22:01:49 +0200611 kfree(new);
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700612 spin_unlock(&memtype_lock);
Ingo Molnarad2cde12008-09-30 13:20:45 +0200613
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700614 return err;
615 }
616
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700617 spin_unlock(&memtype_lock);
Andreas Herrmann3e9c83b2008-06-20 22:04:02 +0200618
Bjorn Helgaas365811d2012-05-29 15:06:29 -0700619 dprintk("reserve_memtype added [mem %#010Lx-%#010Lx], track %s, req %s, ret %s\n",
620 start, end - 1, cattr_name(new->type), cattr_name(req_type),
Andreas Herrmann3e9c83b2008-06-20 22:04:02 +0200621 new_type ? cattr_name(*new_type) : "-");
622
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700623 return err;
624}
625
626int free_memtype(u64 start, u64 end)
627{
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700628 int err = -EINVAL;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700629 int is_range_ram;
Xiaotian Feng20413f22010-05-26 09:51:10 +0800630 struct memtype *entry;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700631
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200632 if (!pat_enabled())
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700633 return 0;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700634
Dan Williams510ee092018-07-13 21:50:27 -0700635 start = sanitize_phys(start);
636 end = sanitize_phys(end);
637
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700638 /* Low ISA region is always mapped WB. No need to track */
H. Peter Anvin8a271382009-11-23 14:49:20 -0800639 if (x86_platform.is_untracked_pat_range(start, end))
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700640 return 0;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700641
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800642 is_range_ram = pat_pagerange_is_ram(start, end);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700643 if (is_range_ram == 1) {
644
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700645 err = free_ram_pages_type(start, end);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700646
647 return err;
648 } else if (is_range_ram < 0) {
Suresh Siddha9542ada2008-09-24 08:53:33 -0700649 return -EINVAL;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700650 }
Suresh Siddha9542ada2008-09-24 08:53:33 -0700651
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700652 spin_lock(&memtype_lock);
Xiaotian Feng20413f22010-05-26 09:51:10 +0800653 entry = rbt_memtype_erase(start, end);
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700654 spin_unlock(&memtype_lock);
655
Toshi Kani2039e6a2015-12-22 17:54:24 -0700656 if (IS_ERR(entry)) {
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200657 pr_info("x86/PAT: %s:%d freeing invalid memtype [mem %#010Lx-%#010Lx]\n",
658 current->comm, current->pid, start, end - 1);
Xiaotian Feng20413f22010-05-26 09:51:10 +0800659 return -EINVAL;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700660 }
venkatesh.pallipadi@intel.com6997ab42008-03-18 17:00:25 -0700661
Xiaotian Feng20413f22010-05-26 09:51:10 +0800662 kfree(entry);
663
Bjorn Helgaas365811d2012-05-29 15:06:29 -0700664 dprintk("free_memtype request [mem %#010Lx-%#010Lx]\n", start, end - 1);
Ingo Molnarad2cde12008-09-30 13:20:45 +0200665
Xiaotian Feng20413f22010-05-26 09:51:10 +0800666 return 0;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700667}
668
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700669
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700670/**
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700671 * lookup_memtype - Looksup the memory type for a physical address
672 * @paddr: physical address of which memory type needs to be looked up
673 *
674 * Only to be called when PAT is enabled
675 *
Juergen Gross2a374692014-11-03 14:01:55 +0100676 * Returns _PAGE_CACHE_MODE_WB, _PAGE_CACHE_MODE_WC, _PAGE_CACHE_MODE_UC_MINUS
Toshi Kani35a5a102015-06-04 18:55:19 +0200677 * or _PAGE_CACHE_MODE_WT.
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700678 */
Juergen Gross2a374692014-11-03 14:01:55 +0100679static enum page_cache_mode lookup_memtype(u64 paddr)
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700680{
Juergen Gross2a374692014-11-03 14:01:55 +0100681 enum page_cache_mode rettype = _PAGE_CACHE_MODE_WB;
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700682 struct memtype *entry;
683
H. Peter Anvin8a271382009-11-23 14:49:20 -0800684 if (x86_platform.is_untracked_pat_range(paddr, paddr + PAGE_SIZE))
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700685 return rettype;
686
687 if (pat_pagerange_is_ram(paddr, paddr + PAGE_SIZE)) {
688 struct page *page;
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700689
Toshi Kani35a5a102015-06-04 18:55:19 +0200690 page = pfn_to_page(paddr >> PAGE_SHIFT);
691 return get_page_memtype(page);
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700692 }
693
694 spin_lock(&memtype_lock);
695
Pallipadi, Venkatesh9e41a492010-02-10 15:26:07 -0800696 entry = rbt_memtype_lookup(paddr);
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700697 if (entry != NULL)
698 rettype = entry->type;
699 else
Juergen Gross2a374692014-11-03 14:01:55 +0100700 rettype = _PAGE_CACHE_MODE_UC_MINUS;
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700701
702 spin_unlock(&memtype_lock);
703 return rettype;
704}
705
706/**
Haozhong Zhangb8d70442017-12-20 15:29:28 +0800707 * pat_pfn_immune_to_uc_mtrr - Check whether the PAT memory type
708 * of @pfn cannot be overridden by UC MTRR memory type.
709 *
710 * Only to be called when PAT is enabled.
711 *
712 * Returns true, if the PAT memory type of @pfn is UC, UC-, or WC.
713 * Returns false in other cases.
714 */
715bool pat_pfn_immune_to_uc_mtrr(unsigned long pfn)
716{
717 enum page_cache_mode cm = lookup_memtype(PFN_PHYS(pfn));
718
719 return cm == _PAGE_CACHE_MODE_UC ||
720 cm == _PAGE_CACHE_MODE_UC_MINUS ||
721 cm == _PAGE_CACHE_MODE_WC;
722}
723EXPORT_SYMBOL_GPL(pat_pfn_immune_to_uc_mtrr);
724
725/**
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700726 * io_reserve_memtype - Request a memory type mapping for a region of memory
727 * @start: start (physical address) of the region
728 * @end: end (physical address) of the region
729 * @type: A pointer to memtype, with requested type. On success, requested
730 * or any other compatible type that was available for the region is returned
731 *
732 * On success, returns 0
733 * On failure, returns non-zero
734 */
735int io_reserve_memtype(resource_size_t start, resource_size_t end,
Juergen Gross49a3b3c2014-11-03 14:01:54 +0100736 enum page_cache_mode *type)
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700737{
H. Peter Anvinb8551922009-08-26 17:17:51 -0700738 resource_size_t size = end - start;
Juergen Gross49a3b3c2014-11-03 14:01:54 +0100739 enum page_cache_mode req_type = *type;
740 enum page_cache_mode new_type;
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700741 int ret;
742
H. Peter Anvinb8551922009-08-26 17:17:51 -0700743 WARN_ON_ONCE(iomem_map_sanity_check(start, size));
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700744
745 ret = reserve_memtype(start, end, req_type, &new_type);
746 if (ret)
747 goto out_err;
748
H. Peter Anvinb8551922009-08-26 17:17:51 -0700749 if (!is_new_memtype_allowed(start, size, req_type, new_type))
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700750 goto out_free;
751
H. Peter Anvinb8551922009-08-26 17:17:51 -0700752 if (kernel_map_sync_memtype(start, size, new_type) < 0)
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700753 goto out_free;
754
755 *type = new_type;
756 return 0;
757
758out_free:
759 free_memtype(start, end);
760 ret = -EBUSY;
761out_err:
762 return ret;
763}
764
765/**
766 * io_free_memtype - Release a memory type mapping for a region of memory
767 * @start: start (physical address) of the region
768 * @end: end (physical address) of the region
769 */
770void io_free_memtype(resource_size_t start, resource_size_t end)
771{
772 free_memtype(start, end);
773}
774
Dave Airlie8ef42272016-10-24 15:27:59 +1000775int arch_io_reserve_memtype_wc(resource_size_t start, resource_size_t size)
776{
777 enum page_cache_mode type = _PAGE_CACHE_MODE_WC;
778
779 return io_reserve_memtype(start, start + size, &type);
780}
781EXPORT_SYMBOL(arch_io_reserve_memtype_wc);
782
783void arch_io_free_memtype_wc(resource_size_t start, resource_size_t size)
784{
785 io_free_memtype(start, start + size);
786}
787EXPORT_SYMBOL(arch_io_free_memtype_wc);
788
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700789pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
790 unsigned long size, pgprot_t vma_prot)
791{
Tom Lendacky8458bf92017-07-17 16:10:30 -0500792 if (!phys_mem_access_encrypted(pfn << PAGE_SHIFT, size))
793 vma_prot = pgprot_decrypted(vma_prot);
794
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700795 return vma_prot;
796}
797
Ingo Molnard0926332008-07-18 00:26:59 +0200798#ifdef CONFIG_STRICT_DEVMEM
Pavel Machek1f40a8b2014-12-28 17:15:24 +0100799/* This check is done in drivers/char/mem.c in case of STRICT_DEVMEM */
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700800static inline int range_is_allowed(unsigned long pfn, unsigned long size)
801{
802 return 1;
803}
804#else
Ravikiran G Thirumalai9e41bff2008-10-30 13:59:21 -0700805/* This check is needed to avoid cache aliasing when PAT is enabled */
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700806static inline int range_is_allowed(unsigned long pfn, unsigned long size)
807{
808 u64 from = ((u64)pfn) << PAGE_SHIFT;
809 u64 to = from + size;
810 u64 cursor = from;
811
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200812 if (!pat_enabled())
Ravikiran G Thirumalai9e41bff2008-10-30 13:59:21 -0700813 return 1;
814
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700815 while (cursor < to) {
Jiri Kosina39380b82016-07-08 11:38:28 +0200816 if (!devmem_is_allowed(pfn))
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700817 return 0;
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700818 cursor += PAGE_SIZE;
819 pfn++;
820 }
821 return 1;
822}
Ingo Molnard0926332008-07-18 00:26:59 +0200823#endif /* CONFIG_STRICT_DEVMEM */
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700824
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700825int phys_mem_access_prot_allowed(struct file *file, unsigned long pfn,
826 unsigned long size, pgprot_t *vma_prot)
827{
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100828 enum page_cache_mode pcm = _PAGE_CACHE_MODE_WB;
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700829
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700830 if (!range_is_allowed(pfn, size))
831 return 0;
832
Christoph Hellwig6b2f3d12009-10-27 11:05:28 +0100833 if (file->f_flags & O_DSYNC)
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100834 pcm = _PAGE_CACHE_MODE_UC_MINUS;
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700835
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700836 *vma_prot = __pgprot((pgprot_val(*vma_prot) & ~_PAGE_CACHE_MASK) |
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100837 cachemode2protval(pcm));
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700838 return 1;
839}
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700840
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800841/*
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800842 * Change the memory type for the physial address range in kernel identity
843 * mapping space if that range is a part of identity map.
844 */
Juergen Grossb14097b2014-11-03 14:01:58 +0100845int kernel_map_sync_memtype(u64 base, unsigned long size,
846 enum page_cache_mode pcm)
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800847{
848 unsigned long id_sz;
849
Dave Hansena25b9312013-01-22 13:24:30 -0800850 if (base > __pa(high_memory-1))
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800851 return 0;
852
Dave Hansen60f583d2013-03-07 08:31:51 -0800853 /*
854 * some areas in the middle of the kernel identity range
855 * are not mapped, like the PCI space.
856 */
857 if (!page_is_ram(base >> PAGE_SHIFT))
858 return 0;
859
Dave Hansena25b9312013-01-22 13:24:30 -0800860 id_sz = (__pa(high_memory-1) <= base + size) ?
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800861 __pa(high_memory) - base :
862 size;
863
Juergen Grossb14097b2014-11-03 14:01:58 +0100864 if (ioremap_change_attr((unsigned long)__va(base), id_sz, pcm) < 0) {
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200865 pr_info("x86/PAT: %s:%d ioremap_change_attr failed %s for [mem %#010Lx-%#010Lx]\n",
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800866 current->comm, current->pid,
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100867 cattr_name(pcm),
Bjorn Helgaas365811d2012-05-29 15:06:29 -0700868 base, (unsigned long long)(base + size-1));
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800869 return -EINVAL;
870 }
871 return 0;
872}
873
874/*
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800875 * Internal interface to reserve a range of physical memory with prot.
876 * Reserved non RAM regions only and after successful reserve_memtype,
877 * this func also keeps identity mapping (if any) in sync with this new prot.
878 */
venkatesh.pallipadi@intel.comcdecff62009-01-09 16:13:12 -0800879static int reserve_pfn_range(u64 paddr, unsigned long size, pgprot_t *vma_prot,
880 int strict_prot)
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800881{
882 int is_ram = 0;
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800883 int ret;
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100884 enum page_cache_mode want_pcm = pgprot2cachemode(*vma_prot);
885 enum page_cache_mode pcm = want_pcm;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800886
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800887 is_ram = pat_pagerange_is_ram(paddr, paddr + size);
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800888
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800889 /*
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700890 * reserve_pfn_range() for RAM pages. We do not refcount to keep
891 * track of number of mappings of RAM pages. We can assert that
892 * the type requested matches the type of first page in the range.
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800893 */
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700894 if (is_ram) {
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200895 if (!pat_enabled())
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700896 return 0;
897
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100898 pcm = lookup_memtype(paddr);
899 if (want_pcm != pcm) {
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200900 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 -0700901 current->comm, current->pid,
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100902 cattr_name(want_pcm),
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700903 (unsigned long long)paddr,
Bjorn Helgaas365811d2012-05-29 15:06:29 -0700904 (unsigned long long)(paddr + size - 1),
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100905 cattr_name(pcm));
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700906 *vma_prot = __pgprot((pgprot_val(*vma_prot) &
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100907 (~_PAGE_CACHE_MASK)) |
908 cachemode2protval(pcm));
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700909 }
Pallipadi, Venkatesh4bb9c5c2009-03-12 17:45:27 -0700910 return 0;
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700911 }
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800912
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100913 ret = reserve_memtype(paddr, paddr + size, want_pcm, &pcm);
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800914 if (ret)
915 return ret;
916
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100917 if (pcm != want_pcm) {
Suresh Siddha1adcaaf2009-08-17 13:23:50 -0700918 if (strict_prot ||
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100919 !is_new_memtype_allowed(paddr, size, want_pcm, pcm)) {
venkatesh.pallipadi@intel.comcdecff62009-01-09 16:13:12 -0800920 free_memtype(paddr, paddr + size);
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200921 pr_err("x86/PAT: %s:%d map pfn expected mapping type %s for [mem %#010Lx-%#010Lx], got %s\n",
922 current->comm, current->pid,
923 cattr_name(want_pcm),
924 (unsigned long long)paddr,
925 (unsigned long long)(paddr + size - 1),
926 cattr_name(pcm));
venkatesh.pallipadi@intel.comcdecff62009-01-09 16:13:12 -0800927 return -EINVAL;
928 }
929 /*
930 * We allow returning different type than the one requested in
931 * non strict case.
932 */
933 *vma_prot = __pgprot((pgprot_val(*vma_prot) &
934 (~_PAGE_CACHE_MASK)) |
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100935 cachemode2protval(pcm));
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800936 }
937
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100938 if (kernel_map_sync_memtype(paddr, size, pcm) < 0) {
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800939 free_memtype(paddr, paddr + size);
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800940 return -EINVAL;
941 }
942 return 0;
943}
944
945/*
946 * Internal interface to free a range of physical memory.
947 * Frees non RAM regions only.
948 */
949static void free_pfn_range(u64 paddr, unsigned long size)
950{
951 int is_ram;
952
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800953 is_ram = pat_pagerange_is_ram(paddr, paddr + size);
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800954 if (is_ram == 0)
955 free_memtype(paddr, paddr + size);
956}
957
958/*
Suresh Siddha5180da42012-10-08 16:28:29 -0700959 * track_pfn_copy is called when vma that is covering the pfnmap gets
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800960 * copied through copy_page_range().
961 *
962 * If the vma has a linear pfn mapping for the entire range, we get the prot
963 * from pte and reserve the entire vma range with single reserve_pfn_range call.
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800964 */
Suresh Siddha5180da42012-10-08 16:28:29 -0700965int track_pfn_copy(struct vm_area_struct *vma)
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800966{
H. Peter Anvinc1c15b62008-12-23 10:10:40 -0800967 resource_size_t paddr;
venkatesh.pallipadi@intel.com982d7892008-12-19 13:47:28 -0800968 unsigned long prot;
Pallipadi, Venkatesh4b065042009-04-08 15:37:16 -0700969 unsigned long vma_size = vma->vm_end - vma->vm_start;
venkatesh.pallipadi@intel.comcdecff62009-01-09 16:13:12 -0800970 pgprot_t pgprot;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800971
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -0700972 if (vma->vm_flags & VM_PAT) {
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800973 /*
venkatesh.pallipadi@intel.com982d7892008-12-19 13:47:28 -0800974 * reserve the whole chunk covered by vma. We need the
975 * starting address and protection from pte.
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800976 */
Pallipadi, Venkatesh4b065042009-04-08 15:37:16 -0700977 if (follow_phys(vma, vma->vm_start, 0, &prot, &paddr)) {
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800978 WARN_ON_ONCE(1);
venkatesh.pallipadi@intel.com982d7892008-12-19 13:47:28 -0800979 return -EINVAL;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800980 }
venkatesh.pallipadi@intel.comcdecff62009-01-09 16:13:12 -0800981 pgprot = __pgprot(prot);
982 return reserve_pfn_range(paddr, vma_size, &pgprot, 1);
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800983 }
984
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800985 return 0;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800986}
987
988/*
Dan Williams90497712016-09-07 08:51:21 -0700989 * prot is passed in as a parameter for the new mapping. If the vma has
990 * a linear pfn mapping for the entire range, or no vma is provided,
991 * reserve the entire pfn + size range with single reserve_pfn_range
992 * call.
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800993 */
Suresh Siddha5180da42012-10-08 16:28:29 -0700994int track_pfn_remap(struct vm_area_struct *vma, pgprot_t *prot,
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -0700995 unsigned long pfn, unsigned long addr, unsigned long size)
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800996{
Suresh Siddhab1a86e12012-10-08 16:28:23 -0700997 resource_size_t paddr = (resource_size_t)pfn << PAGE_SHIFT;
Juergen Gross2a374692014-11-03 14:01:55 +0100998 enum page_cache_mode pcm;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800999
Suresh Siddhab1a86e12012-10-08 16:28:23 -07001000 /* reserve the whole chunk starting from paddr */
Dan Williams90497712016-09-07 08:51:21 -07001001 if (!vma || (addr == vma->vm_start
1002 && size == (vma->vm_end - vma->vm_start))) {
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -07001003 int ret;
1004
1005 ret = reserve_pfn_range(paddr, size, prot, 0);
Dan Williams90497712016-09-07 08:51:21 -07001006 if (ret == 0 && vma)
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -07001007 vma->vm_flags |= VM_PAT;
1008 return ret;
1009 }
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -08001010
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +02001011 if (!pat_enabled())
Venkatesh Pallipadi108763762009-07-10 09:57:40 -07001012 return 0;
1013
Suresh Siddha5180da42012-10-08 16:28:29 -07001014 /*
1015 * For anything smaller than the vma size we set prot based on the
1016 * lookup.
1017 */
Juergen Gross2a374692014-11-03 14:01:55 +01001018 pcm = lookup_memtype(paddr);
Suresh Siddha5180da42012-10-08 16:28:29 -07001019
1020 /* Check memtype for the remaining pages */
1021 while (size > PAGE_SIZE) {
1022 size -= PAGE_SIZE;
1023 paddr += PAGE_SIZE;
Juergen Gross2a374692014-11-03 14:01:55 +01001024 if (pcm != lookup_memtype(paddr))
Suresh Siddha5180da42012-10-08 16:28:29 -07001025 return -EINVAL;
1026 }
1027
Matthew Wilcoxdd7b6842016-01-25 12:25:15 -05001028 *prot = __pgprot((pgprot_val(*prot) & (~_PAGE_CACHE_MASK)) |
Juergen Gross2a374692014-11-03 14:01:55 +01001029 cachemode2protval(pcm));
Suresh Siddha5180da42012-10-08 16:28:29 -07001030
1031 return 0;
1032}
1033
Borislav Petkov308a0472016-10-26 19:43:43 +02001034void track_pfn_insert(struct vm_area_struct *vma, pgprot_t *prot, pfn_t pfn)
Suresh Siddha5180da42012-10-08 16:28:29 -07001035{
Juergen Gross2a374692014-11-03 14:01:55 +01001036 enum page_cache_mode pcm;
Suresh Siddha5180da42012-10-08 16:28:29 -07001037
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +02001038 if (!pat_enabled())
Borislav Petkov308a0472016-10-26 19:43:43 +02001039 return;
Suresh Siddha5180da42012-10-08 16:28:29 -07001040
1041 /* Set prot based on lookup */
Dan Williamsf25748e32016-01-15 16:56:43 -08001042 pcm = lookup_memtype(pfn_t_to_phys(pfn));
Matthew Wilcoxdd7b6842016-01-25 12:25:15 -05001043 *prot = __pgprot((pgprot_val(*prot) & (~_PAGE_CACHE_MASK)) |
Juergen Gross2a374692014-11-03 14:01:55 +01001044 cachemode2protval(pcm));
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -08001045}
1046
1047/*
Suresh Siddha5180da42012-10-08 16:28:29 -07001048 * untrack_pfn is called while unmapping a pfnmap for a region.
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -08001049 * untrack can be called for a specific region indicated by pfn and size or
Suresh Siddhab1a86e12012-10-08 16:28:23 -07001050 * can be for the entire vma (in which case pfn, size are zero).
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -08001051 */
Suresh Siddha5180da42012-10-08 16:28:29 -07001052void untrack_pfn(struct vm_area_struct *vma, unsigned long pfn,
1053 unsigned long size)
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -08001054{
H. Peter Anvinc1c15b62008-12-23 10:10:40 -08001055 resource_size_t paddr;
Suresh Siddhab1a86e12012-10-08 16:28:23 -07001056 unsigned long prot;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -08001057
Dan Williams90497712016-09-07 08:51:21 -07001058 if (vma && !(vma->vm_flags & VM_PAT))
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -08001059 return;
Suresh Siddhab1a86e12012-10-08 16:28:23 -07001060
1061 /* free the chunk starting from pfn or the whole chunk */
1062 paddr = (resource_size_t)pfn << PAGE_SHIFT;
1063 if (!paddr && !size) {
1064 if (follow_phys(vma, vma->vm_start, 0, &prot, &paddr)) {
1065 WARN_ON_ONCE(1);
1066 return;
1067 }
1068
1069 size = vma->vm_end - vma->vm_start;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -08001070 }
Suresh Siddhab1a86e12012-10-08 16:28:23 -07001071 free_pfn_range(paddr, size);
Dan Williams90497712016-09-07 08:51:21 -07001072 if (vma)
1073 vma->vm_flags &= ~VM_PAT;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -08001074}
1075
Toshi Kanid9fe4fa2015-12-22 17:54:23 -07001076/*
1077 * untrack_pfn_moved is called, while mremapping a pfnmap for a new region,
1078 * with the old vma after its pfnmap page table has been removed. The new
1079 * vma has a new pfnmap to the same pfn & cache type with VM_PAT set.
1080 */
1081void untrack_pfn_moved(struct vm_area_struct *vma)
1082{
1083 vma->vm_flags &= ~VM_PAT;
1084}
1085
venkatesh.pallipadi@intel.com2520bd32008-12-18 11:41:32 -08001086pgprot_t pgprot_writecombine(pgprot_t prot)
1087{
Borislav Petkov7202fdb2015-06-04 18:55:11 +02001088 return __pgprot(pgprot_val(prot) |
Juergen Grosse00c8cc2014-11-03 14:01:59 +01001089 cachemode2protval(_PAGE_CACHE_MODE_WC));
venkatesh.pallipadi@intel.com2520bd32008-12-18 11:41:32 -08001090}
Ingo Molnar92b9af92009-02-28 14:09:27 +01001091EXPORT_SYMBOL_GPL(pgprot_writecombine);
venkatesh.pallipadi@intel.com2520bd32008-12-18 11:41:32 -08001092
Toshi Kanid1b4bfb2015-06-04 18:55:18 +02001093pgprot_t pgprot_writethrough(pgprot_t prot)
1094{
1095 return __pgprot(pgprot_val(prot) |
1096 cachemode2protval(_PAGE_CACHE_MODE_WT));
1097}
1098EXPORT_SYMBOL_GPL(pgprot_writethrough);
1099
Andreas Herrmann012f09e2008-08-06 16:23:08 +02001100#if defined(CONFIG_DEBUG_FS) && defined(CONFIG_X86_PAT)
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001101
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001102static struct memtype *memtype_get_idx(loff_t pos)
1103{
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -08001104 struct memtype *print_entry;
1105 int ret;
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001106
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -08001107 print_entry = kzalloc(sizeof(struct memtype), GFP_KERNEL);
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001108 if (!print_entry)
1109 return NULL;
1110
1111 spin_lock(&memtype_lock);
Pallipadi, Venkatesh9e41a492010-02-10 15:26:07 -08001112 ret = rbt_memtype_copy_nth_element(print_entry, pos);
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001113 spin_unlock(&memtype_lock);
Ingo Molnarad2cde12008-09-30 13:20:45 +02001114
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -08001115 if (!ret) {
1116 return print_entry;
1117 } else {
1118 kfree(print_entry);
1119 return NULL;
1120 }
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001121}
1122
1123static void *memtype_seq_start(struct seq_file *seq, loff_t *pos)
1124{
1125 if (*pos == 0) {
1126 ++*pos;
Rasmus Villemoes37367082014-11-28 22:03:41 +01001127 seq_puts(seq, "PAT memtype list:\n");
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001128 }
1129
1130 return memtype_get_idx(*pos);
1131}
1132
1133static void *memtype_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1134{
1135 ++*pos;
1136 return memtype_get_idx(*pos);
1137}
1138
1139static void memtype_seq_stop(struct seq_file *seq, void *v)
1140{
1141}
1142
1143static int memtype_seq_show(struct seq_file *seq, void *v)
1144{
1145 struct memtype *print_entry = (struct memtype *)v;
1146
1147 seq_printf(seq, "%s @ 0x%Lx-0x%Lx\n", cattr_name(print_entry->type),
1148 print_entry->start, print_entry->end);
1149 kfree(print_entry);
Ingo Molnarad2cde12008-09-30 13:20:45 +02001150
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001151 return 0;
1152}
1153
Tobias Klauserd535e432009-09-04 15:53:09 +02001154static const struct seq_operations memtype_seq_ops = {
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001155 .start = memtype_seq_start,
1156 .next = memtype_seq_next,
1157 .stop = memtype_seq_stop,
1158 .show = memtype_seq_show,
1159};
1160
1161static int memtype_seq_open(struct inode *inode, struct file *file)
1162{
1163 return seq_open(file, &memtype_seq_ops);
1164}
1165
1166static const struct file_operations memtype_fops = {
1167 .open = memtype_seq_open,
1168 .read = seq_read,
1169 .llseek = seq_lseek,
1170 .release = seq_release,
1171};
1172
1173static int __init pat_memtype_list_init(void)
1174{
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +02001175 if (pat_enabled()) {
Xiaotian Fengdd4377b2009-11-26 19:53:48 +08001176 debugfs_create_file("pat_memtype_list", S_IRUSR,
1177 arch_debugfs_dir, NULL, &memtype_fops);
1178 }
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001179 return 0;
1180}
1181
1182late_initcall(pat_memtype_list_init);
1183
Andreas Herrmann012f09e2008-08-06 16:23:08 +02001184#endif /* CONFIG_DEBUG_FS && CONFIG_X86_PAT */