blob: 04e2e7144beee51205df17a4e3df024833eac7db [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>
Ingo Molnar92b9af92009-02-28 14:09:27 +010014#include <linux/module.h>
Dan Williamsf25748e32016-01-15 16:56:43 -080015#include <linux/pfn_t.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Ingo Molnarad2cde12008-09-30 13:20:45 +020017#include <linux/mm.h>
18#include <linux/fs.h>
Venkatesh Pallipadi335ef892009-07-10 09:57:36 -070019#include <linux/rbtree.h>
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070020
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070021#include <asm/cacheflush.h>
Ingo Molnarad2cde12008-09-30 13:20:45 +020022#include <asm/processor.h>
23#include <asm/tlbflush.h>
Jack Steinerfd12a0d2009-11-19 14:23:41 -060024#include <asm/x86_init.h>
Ingo Molnarad2cde12008-09-30 13:20:45 +020025#include <asm/pgtable.h>
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070026#include <asm/fcntl.h>
Ingo Molnarad2cde12008-09-30 13:20:45 +020027#include <asm/e820.h>
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070028#include <asm/mtrr.h>
Ingo Molnarad2cde12008-09-30 13:20:45 +020029#include <asm/page.h>
30#include <asm/msr.h>
31#include <asm/pat.h>
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -070032#include <asm/io.h>
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070033
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -080034#include "pat_internal.h"
Juergen Grossbd809af2014-11-03 14:02:03 +010035#include "mm_internal.h"
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -080036
Luis R. Rodriguez9e765612015-05-26 10:28:11 +020037#undef pr_fmt
38#define pr_fmt(fmt) "" fmt
39
Borislav Petkov9dac6292015-06-04 18:55:09 +020040static bool boot_cpu_done;
41
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +020042static int __read_mostly __pat_enabled = IS_ENABLED(CONFIG_X86_PAT);
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070043
Marcin Slusarz1ee4bd92009-04-10 22:47:17 +020044static inline void pat_disable(const char *reason)
Thomas Gleixner8d4a4302008-05-08 09:18:43 +020045{
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +020046 __pat_enabled = 0;
Luis R. Rodriguez9e765612015-05-26 10:28:11 +020047 pr_info("x86/PAT: %s\n", reason);
Thomas Gleixner8d4a4302008-05-08 09:18:43 +020048}
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070049
Andrew Mortonbe524fb2008-05-29 00:01:28 -070050static int __init nopat(char *str)
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070051{
Thomas Gleixner8d4a4302008-05-08 09:18:43 +020052 pat_disable("PAT support disabled.");
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070053 return 0;
54}
55early_param("nopat", nopat);
56
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +020057bool pat_enabled(void)
58{
59 return !!__pat_enabled;
60}
Luis R. Rodriguezfbe71932015-05-26 10:28:16 +020061EXPORT_SYMBOL_GPL(pat_enabled);
Venki Pallipadi77b52b4c2008-05-05 19:09:10 -070062
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -080063int pat_debug_enable;
Ingo Molnarad2cde12008-09-30 13:20:45 +020064
Venki Pallipadi77b52b4c2008-05-05 19:09:10 -070065static int __init pat_debug_setup(char *str)
66{
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -080067 pat_debug_enable = 1;
Venki Pallipadi77b52b4c2008-05-05 19:09:10 -070068 return 0;
69}
70__setup("debugpat", pat_debug_setup);
71
Thomas Gleixner0dbcae82014-11-16 18:59:19 +010072#ifdef CONFIG_X86_PAT
73/*
Toshi Kani35a5a102015-06-04 18:55:19 +020074 * X86 PAT uses page flags arch_1 and uncached together to keep track of
75 * memory type of pages that have backing page struct.
76 *
77 * X86 PAT supports 4 different memory types:
78 * - _PAGE_CACHE_MODE_WB
79 * - _PAGE_CACHE_MODE_WC
80 * - _PAGE_CACHE_MODE_UC_MINUS
81 * - _PAGE_CACHE_MODE_WT
82 *
83 * _PAGE_CACHE_MODE_WB is the default type.
Thomas Gleixner0dbcae82014-11-16 18:59:19 +010084 */
85
Toshi Kani35a5a102015-06-04 18:55:19 +020086#define _PGMT_WB 0
Thomas Gleixner0dbcae82014-11-16 18:59:19 +010087#define _PGMT_WC (1UL << PG_arch_1)
88#define _PGMT_UC_MINUS (1UL << PG_uncached)
Toshi Kani35a5a102015-06-04 18:55:19 +020089#define _PGMT_WT (1UL << PG_uncached | 1UL << PG_arch_1)
Thomas Gleixner0dbcae82014-11-16 18:59:19 +010090#define _PGMT_MASK (1UL << PG_uncached | 1UL << PG_arch_1)
91#define _PGMT_CLEAR_MASK (~_PGMT_MASK)
92
93static inline enum page_cache_mode get_page_memtype(struct page *pg)
94{
95 unsigned long pg_flags = pg->flags & _PGMT_MASK;
96
Toshi Kani35a5a102015-06-04 18:55:19 +020097 if (pg_flags == _PGMT_WB)
98 return _PAGE_CACHE_MODE_WB;
Thomas Gleixner0dbcae82014-11-16 18:59:19 +010099 else if (pg_flags == _PGMT_WC)
100 return _PAGE_CACHE_MODE_WC;
101 else if (pg_flags == _PGMT_UC_MINUS)
102 return _PAGE_CACHE_MODE_UC_MINUS;
103 else
Toshi Kani35a5a102015-06-04 18:55:19 +0200104 return _PAGE_CACHE_MODE_WT;
Thomas Gleixner0dbcae82014-11-16 18:59:19 +0100105}
106
107static inline void set_page_memtype(struct page *pg,
108 enum page_cache_mode memtype)
109{
110 unsigned long memtype_flags;
111 unsigned long old_flags;
112 unsigned long new_flags;
113
114 switch (memtype) {
115 case _PAGE_CACHE_MODE_WC:
116 memtype_flags = _PGMT_WC;
117 break;
118 case _PAGE_CACHE_MODE_UC_MINUS:
119 memtype_flags = _PGMT_UC_MINUS;
120 break;
Toshi Kani35a5a102015-06-04 18:55:19 +0200121 case _PAGE_CACHE_MODE_WT:
122 memtype_flags = _PGMT_WT;
Thomas Gleixner0dbcae82014-11-16 18:59:19 +0100123 break;
Toshi Kani35a5a102015-06-04 18:55:19 +0200124 case _PAGE_CACHE_MODE_WB:
Thomas Gleixner0dbcae82014-11-16 18:59:19 +0100125 default:
Toshi Kani35a5a102015-06-04 18:55:19 +0200126 memtype_flags = _PGMT_WB;
Thomas Gleixner0dbcae82014-11-16 18:59:19 +0100127 break;
128 }
129
130 do {
131 old_flags = pg->flags;
132 new_flags = (old_flags & _PGMT_CLEAR_MASK) | memtype_flags;
133 } while (cmpxchg(&pg->flags, old_flags, new_flags) != old_flags);
134}
135#else
136static inline enum page_cache_mode get_page_memtype(struct page *pg)
137{
138 return -1;
139}
140static inline void set_page_memtype(struct page *pg,
141 enum page_cache_mode memtype)
142{
143}
144#endif
145
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700146enum {
147 PAT_UC = 0, /* uncached */
148 PAT_WC = 1, /* Write combining */
149 PAT_WT = 4, /* Write Through */
150 PAT_WP = 5, /* Write Protected */
151 PAT_WB = 6, /* Write Back (default) */
152 PAT_UC_MINUS = 7, /* UC, but can be overriden by MTRR */
153};
154
Juergen Grossbd809af2014-11-03 14:02:03 +0100155#define CM(c) (_PAGE_CACHE_MODE_ ## c)
156
157static enum page_cache_mode pat_get_cache_mode(unsigned pat_val, char *msg)
158{
159 enum page_cache_mode cache;
160 char *cache_mode;
161
162 switch (pat_val) {
163 case PAT_UC: cache = CM(UC); cache_mode = "UC "; break;
164 case PAT_WC: cache = CM(WC); cache_mode = "WC "; break;
165 case PAT_WT: cache = CM(WT); cache_mode = "WT "; break;
166 case PAT_WP: cache = CM(WP); cache_mode = "WP "; break;
167 case PAT_WB: cache = CM(WB); cache_mode = "WB "; break;
168 case PAT_UC_MINUS: cache = CM(UC_MINUS); cache_mode = "UC- "; break;
169 default: cache = CM(WB); cache_mode = "WB "; break;
170 }
171
172 memcpy(msg, cache_mode, 4);
173
174 return cache;
175}
176
177#undef CM
178
179/*
180 * Update the cache mode to pgprot translation tables according to PAT
181 * configuration.
182 * Using lower indices is preferred, so we start with highest index.
183 */
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200184void pat_init_cache_modes(u64 pat)
Juergen Grossbd809af2014-11-03 14:02:03 +0100185{
Juergen Grossbd809af2014-11-03 14:02:03 +0100186 enum page_cache_mode cache;
187 char pat_msg[33];
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200188 int i;
Juergen Grossbd809af2014-11-03 14:02:03 +0100189
Juergen Grossbd809af2014-11-03 14:02:03 +0100190 pat_msg[32] = 0;
191 for (i = 7; i >= 0; i--) {
192 cache = pat_get_cache_mode((pat >> (i * 8)) & 7,
193 pat_msg + 4 * i);
194 update_cache_mode_entry(i, cache);
195 }
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200196 pr_info("x86/PAT: Configuration [0-7]: %s\n", pat_msg);
Juergen Grossbd809af2014-11-03 14:02:03 +0100197}
198
Andreas Herrmanncd7a4e92008-06-10 16:05:39 +0200199#define PAT(x, y) ((u64)PAT_ ## y << ((x)*8))
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700200
Borislav Petkov9dac6292015-06-04 18:55:09 +0200201static void pat_bsp_init(u64 pat)
202{
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200203 u64 tmp_pat;
204
Borislav Petkov9dac6292015-06-04 18:55:09 +0200205 if (!cpu_has_pat) {
206 pat_disable("PAT not supported by CPU.");
207 return;
208 }
209
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200210 if (!pat_enabled())
211 goto done;
212
213 rdmsrl(MSR_IA32_CR_PAT, tmp_pat);
214 if (!tmp_pat) {
Borislav Petkov9dac6292015-06-04 18:55:09 +0200215 pat_disable("PAT MSR is 0, disabled.");
216 return;
217 }
218
219 wrmsrl(MSR_IA32_CR_PAT, pat);
220
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200221done:
222 pat_init_cache_modes(pat);
Borislav Petkov9dac6292015-06-04 18:55:09 +0200223}
224
225static void pat_ap_init(u64 pat)
226{
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200227 if (!pat_enabled())
228 return;
229
Borislav Petkov9dac6292015-06-04 18:55:09 +0200230 if (!cpu_has_pat) {
231 /*
232 * If this happens we are on a secondary CPU, but switched to
233 * PAT on the boot CPU. We have no way to undo PAT.
234 */
235 panic("x86/PAT: PAT enabled, but not supported by secondary CPU\n");
236 }
237
238 wrmsrl(MSR_IA32_CR_PAT, pat);
239}
240
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700241void pat_init(void)
242{
243 u64 pat;
Toshi Kanid79a40c2015-06-04 18:55:12 +0200244 struct cpuinfo_x86 *c = &boot_cpu_data;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700245
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200246 if (!pat_enabled()) {
247 /*
248 * No PAT. Emulate the PAT table that corresponds to the two
249 * cache bits, PWT (Write Through) and PCD (Cache Disable). This
250 * setup is the same as the BIOS default setup when the system
251 * has PAT but the "nopat" boot option has been specified. This
252 * emulated PAT table is used when MSR_IA32_CR_PAT returns 0.
253 *
Toshi Kanid79a40c2015-06-04 18:55:12 +0200254 * PTE encoding:
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200255 *
256 * PCD
257 * |PWT PAT
258 * || slot
259 * 00 0 WB : _PAGE_CACHE_MODE_WB
260 * 01 1 WT : _PAGE_CACHE_MODE_WT
261 * 10 2 UC-: _PAGE_CACHE_MODE_UC_MINUS
262 * 11 3 UC : _PAGE_CACHE_MODE_UC
263 *
264 * NOTE: When WC or WP is used, it is redirected to UC- per
265 * the default setup in __cachemode2pte_tbl[].
266 */
267 pat = PAT(0, WB) | PAT(1, WT) | PAT(2, UC_MINUS) | PAT(3, UC) |
268 PAT(4, WB) | PAT(5, WT) | PAT(6, UC_MINUS) | PAT(7, UC);
Toshi Kanid79a40c2015-06-04 18:55:12 +0200269
270 } else if ((c->x86_vendor == X86_VENDOR_INTEL) &&
271 (((c->x86 == 0x6) && (c->x86_model <= 0xd)) ||
272 ((c->x86 == 0xf) && (c->x86_model <= 0x6)))) {
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200273 /*
Toshi Kanid79a40c2015-06-04 18:55:12 +0200274 * PAT support with the lower four entries. Intel Pentium 2,
275 * 3, M, and 4 are affected by PAT errata, which makes the
276 * upper four entries unusable. To be on the safe side, we don't
277 * use those.
278 *
279 * PTE encoding:
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200280 * PAT
281 * |PCD
Toshi Kanid79a40c2015-06-04 18:55:12 +0200282 * ||PWT PAT
283 * ||| slot
284 * 000 0 WB : _PAGE_CACHE_MODE_WB
285 * 001 1 WC : _PAGE_CACHE_MODE_WC
286 * 010 2 UC-: _PAGE_CACHE_MODE_UC_MINUS
287 * 011 3 UC : _PAGE_CACHE_MODE_UC
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200288 * PAT bit unused
Toshi Kanid79a40c2015-06-04 18:55:12 +0200289 *
290 * NOTE: When WT or WP is used, it is redirected to UC- per
291 * the default setup in __cachemode2pte_tbl[].
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200292 */
293 pat = PAT(0, WB) | PAT(1, WC) | PAT(2, UC_MINUS) | PAT(3, UC) |
294 PAT(4, WB) | PAT(5, WC) | PAT(6, UC_MINUS) | PAT(7, UC);
Toshi Kanid79a40c2015-06-04 18:55:12 +0200295 } else {
296 /*
297 * Full PAT support. We put WT in slot 7 to improve
298 * robustness in the presence of errata that might cause
299 * the high PAT bit to be ignored. This way, a buggy slot 7
300 * access will hit slot 3, and slot 3 is UC, so at worst
301 * we lose performance without causing a correctness issue.
302 * Pentium 4 erratum N46 is an example for such an erratum,
303 * although we try not to use PAT at all on affected CPUs.
304 *
305 * PTE encoding:
306 * PAT
307 * |PCD
308 * ||PWT PAT
309 * ||| slot
310 * 000 0 WB : _PAGE_CACHE_MODE_WB
311 * 001 1 WC : _PAGE_CACHE_MODE_WC
312 * 010 2 UC-: _PAGE_CACHE_MODE_UC_MINUS
313 * 011 3 UC : _PAGE_CACHE_MODE_UC
314 * 100 4 WB : Reserved
315 * 101 5 WC : Reserved
316 * 110 6 UC-: Reserved
317 * 111 7 WT : _PAGE_CACHE_MODE_WT
318 *
319 * The reserved slots are unused, but mapped to their
320 * corresponding types in the presence of PAT errata.
321 */
322 pat = PAT(0, WB) | PAT(1, WC) | PAT(2, UC_MINUS) | PAT(3, UC) |
323 PAT(4, WB) | PAT(5, WC) | PAT(6, UC_MINUS) | PAT(7, WT);
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200324 }
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700325
Borislav Petkov9dac6292015-06-04 18:55:09 +0200326 if (!boot_cpu_done) {
327 pat_bsp_init(pat);
328 boot_cpu_done = true;
329 } else {
330 pat_ap_init(pat);
Juergen Gross9d34cfd2015-01-12 06:15:45 +0100331 }
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700332}
333
334#undef PAT
335
Pallipadi, Venkatesh9e41a492010-02-10 15:26:07 -0800336static DEFINE_SPINLOCK(memtype_lock); /* protects memtype accesses */
Venkatesh Pallipadi335ef892009-07-10 09:57:36 -0700337
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700338/*
339 * Does intersection of PAT memory type and MTRR memory type and returns
340 * the resulting memory type as PAT understands it.
341 * (Type in pat and mtrr will not have same value)
342 * The intersection is based on "Effective Memory Type" tables in IA-32
343 * SDM vol 3a
344 */
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100345static unsigned long pat_x_mtrr_type(u64 start, u64 end,
346 enum page_cache_mode req_type)
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700347{
Venki Pallipadic26421d2008-05-29 12:01:44 -0700348 /*
349 * Look for MTRR hint to get the effective type in case where PAT
350 * request is for WB.
351 */
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100352 if (req_type == _PAGE_CACHE_MODE_WB) {
Toshi Kanib73522e2015-05-26 10:28:10 +0200353 u8 mtrr_type, uniform;
Andreas Herrmanndd0c7c42008-06-18 15:38:57 +0200354
Toshi Kanib73522e2015-05-26 10:28:10 +0200355 mtrr_type = mtrr_type_lookup(start, end, &uniform);
Suresh Siddhab6ff32d2009-04-09 14:26:51 -0700356 if (mtrr_type != MTRR_TYPE_WRBACK)
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100357 return _PAGE_CACHE_MODE_UC_MINUS;
Suresh Siddhab6ff32d2009-04-09 14:26:51 -0700358
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100359 return _PAGE_CACHE_MODE_WB;
Andreas Herrmanndd0c7c42008-06-18 15:38:57 +0200360 }
361
362 return req_type;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700363}
364
John Dykstrafa835232012-05-25 16:12:46 -0500365struct pagerange_state {
366 unsigned long cur_pfn;
367 int ram;
368 int not_ram;
369};
370
371static int
372pagerange_is_ram_callback(unsigned long initial_pfn, unsigned long total_nr_pages, void *arg)
373{
374 struct pagerange_state *state = arg;
375
376 state->not_ram |= initial_pfn > state->cur_pfn;
377 state->ram |= total_nr_pages > 0;
378 state->cur_pfn = initial_pfn + total_nr_pages;
379
380 return state->ram && state->not_ram;
381}
382
Yasuaki Ishimatsu3709c852010-07-22 14:57:35 +0900383static int pat_pagerange_is_ram(resource_size_t start, resource_size_t end)
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800384{
John Dykstrafa835232012-05-25 16:12:46 -0500385 int ret = 0;
386 unsigned long start_pfn = start >> PAGE_SHIFT;
387 unsigned long end_pfn = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
388 struct pagerange_state state = {start_pfn, 0, 0};
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800389
John Dykstrafa835232012-05-25 16:12:46 -0500390 /*
391 * For legacy reasons, physical address range in the legacy ISA
392 * region is tracked as non-RAM. This will allow users of
393 * /dev/mem to map portions of legacy ISA region, even when
394 * some of those portions are listed(or not even listed) with
395 * different e820 types(RAM/reserved/..)
396 */
397 if (start_pfn < ISA_END_ADDRESS >> PAGE_SHIFT)
398 start_pfn = ISA_END_ADDRESS >> PAGE_SHIFT;
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800399
John Dykstrafa835232012-05-25 16:12:46 -0500400 if (start_pfn < end_pfn) {
401 ret = walk_system_ram_range(start_pfn, end_pfn - start_pfn,
402 &state, pagerange_is_ram_callback);
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800403 }
404
John Dykstrafa835232012-05-25 16:12:46 -0500405 return (ret > 0) ? -1 : (state.ram ? 1 : 0);
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800406}
407
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700408/*
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700409 * For RAM pages, we use page flags to mark the pages with appropriate type.
Toshi Kani35a5a102015-06-04 18:55:19 +0200410 * The page flags are limited to four types, WB (default), WC, WT and UC-.
411 * WP request fails with -EINVAL, and UC gets redirected to UC-. Setting
412 * a new memory type is only allowed for a page mapped with the default WB
413 * type.
Toshi Kani0d69bdf2015-06-04 18:55:13 +0200414 *
415 * Here we do two passes:
416 * - Find the memtype of all the pages in the range, look for any conflicts.
417 * - In case of no conflicts, set the new memtype for pages in the range.
Suresh Siddha9542ada2008-09-24 08:53:33 -0700418 */
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100419static int reserve_ram_pages_type(u64 start, u64 end,
420 enum page_cache_mode req_type,
421 enum page_cache_mode *new_type)
Suresh Siddha9542ada2008-09-24 08:53:33 -0700422{
423 struct page *page;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700424 u64 pfn;
425
Toshi Kani35a5a102015-06-04 18:55:19 +0200426 if (req_type == _PAGE_CACHE_MODE_WP) {
Toshi Kani0d69bdf2015-06-04 18:55:13 +0200427 if (new_type)
428 *new_type = _PAGE_CACHE_MODE_UC_MINUS;
429 return -EINVAL;
430 }
431
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100432 if (req_type == _PAGE_CACHE_MODE_UC) {
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700433 /* We do not support strong UC */
434 WARN_ON_ONCE(1);
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100435 req_type = _PAGE_CACHE_MODE_UC_MINUS;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700436 }
437
438 for (pfn = (start >> PAGE_SHIFT); pfn < (end >> PAGE_SHIFT); ++pfn) {
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100439 enum page_cache_mode type;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700440
441 page = pfn_to_page(pfn);
442 type = get_page_memtype(page);
Toshi Kani35a5a102015-06-04 18:55:19 +0200443 if (type != _PAGE_CACHE_MODE_WB) {
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200444 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 -0700445 start, end - 1, type, req_type);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700446 if (new_type)
447 *new_type = type;
448
449 return -EBUSY;
450 }
451 }
452
453 if (new_type)
454 *new_type = req_type;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700455
456 for (pfn = (start >> PAGE_SHIFT); pfn < (end >> PAGE_SHIFT); ++pfn) {
457 page = pfn_to_page(pfn);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700458 set_page_memtype(page, req_type);
Suresh Siddha9542ada2008-09-24 08:53:33 -0700459 }
460 return 0;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700461}
462
463static int free_ram_pages_type(u64 start, u64 end)
464{
465 struct page *page;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700466 u64 pfn;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700467
468 for (pfn = (start >> PAGE_SHIFT); pfn < (end >> PAGE_SHIFT); ++pfn) {
469 page = pfn_to_page(pfn);
Toshi Kani35a5a102015-06-04 18:55:19 +0200470 set_page_memtype(page, _PAGE_CACHE_MODE_WB);
Suresh Siddha9542ada2008-09-24 08:53:33 -0700471 }
472 return 0;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700473}
474
475/*
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700476 * req_type typically has one of the:
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100477 * - _PAGE_CACHE_MODE_WB
478 * - _PAGE_CACHE_MODE_WC
479 * - _PAGE_CACHE_MODE_UC_MINUS
480 * - _PAGE_CACHE_MODE_UC
Toshi Kani0d69bdf2015-06-04 18:55:13 +0200481 * - _PAGE_CACHE_MODE_WT
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700482 *
Andreas Herrmannac979912008-06-20 22:01:49 +0200483 * If new_type is NULL, function will return an error if it cannot reserve the
484 * region with req_type. If new_type is non-NULL, function will return
485 * available type in new_type in case of no error. In case of any error
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700486 * it will return a negative return value.
487 */
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100488int reserve_memtype(u64 start, u64 end, enum page_cache_mode req_type,
489 enum page_cache_mode *new_type)
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700490{
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -0800491 struct memtype *new;
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100492 enum page_cache_mode actual_type;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700493 int is_range_ram;
Ingo Molnarad2cde12008-09-30 13:20:45 +0200494 int err = 0;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700495
Ingo Molnarad2cde12008-09-30 13:20:45 +0200496 BUG_ON(start >= end); /* end is exclusive */
Andreas Herrmann69e26be2008-06-20 22:03:06 +0200497
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200498 if (!pat_enabled()) {
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700499 /* This is identical to page table setting without PAT */
Borislav Petkov7202fdb2015-06-04 18:55:11 +0200500 if (new_type)
501 *new_type = req_type;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700502 return 0;
503 }
504
505 /* Low ISA region is always mapped WB in page table. No need to track */
H. Peter Anvin8a271382009-11-23 14:49:20 -0800506 if (x86_platform.is_untracked_pat_range(start, end)) {
Andreas Herrmannac979912008-06-20 22:01:49 +0200507 if (new_type)
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100508 *new_type = _PAGE_CACHE_MODE_WB;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700509 return 0;
510 }
511
Suresh Siddhab6ff32d2009-04-09 14:26:51 -0700512 /*
513 * Call mtrr_lookup to get the type hint. This is an
514 * optimization for /dev/mem mmap'ers into WB memory (BIOS
515 * tools and ACPI tools). Use WB request for WB memory and use
516 * UC_MINUS otherwise.
517 */
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100518 actual_type = pat_x_mtrr_type(start, end, req_type);
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700519
Suresh Siddha95971342009-01-13 10:21:30 -0800520 if (new_type)
521 *new_type = actual_type;
522
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800523 is_range_ram = pat_pagerange_is_ram(start, end);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700524 if (is_range_ram == 1) {
525
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700526 err = reserve_ram_pages_type(start, end, req_type, new_type);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700527
528 return err;
529 } else if (is_range_ram < 0) {
Suresh Siddha9542ada2008-09-24 08:53:33 -0700530 return -EINVAL;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700531 }
Suresh Siddha9542ada2008-09-24 08:53:33 -0700532
Venkatesh Pallipadi6a4f3b52010-06-10 17:45:01 -0700533 new = kzalloc(sizeof(struct memtype), GFP_KERNEL);
Andreas Herrmannac979912008-06-20 22:01:49 +0200534 if (!new)
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700535 return -ENOMEM;
536
Ingo Molnarad2cde12008-09-30 13:20:45 +0200537 new->start = start;
538 new->end = end;
539 new->type = actual_type;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700540
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700541 spin_lock(&memtype_lock);
542
Pallipadi, Venkatesh9e41a492010-02-10 15:26:07 -0800543 err = rbt_memtype_check_insert(new, new_type);
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700544 if (err) {
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200545 pr_info("x86/PAT: reserve_memtype failed [mem %#010Lx-%#010Lx], track %s, req %s\n",
546 start, end - 1,
547 cattr_name(new->type), cattr_name(req_type));
Andreas Herrmannac979912008-06-20 22:01:49 +0200548 kfree(new);
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700549 spin_unlock(&memtype_lock);
Ingo Molnarad2cde12008-09-30 13:20:45 +0200550
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700551 return err;
552 }
553
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700554 spin_unlock(&memtype_lock);
Andreas Herrmann3e9c83b2008-06-20 22:04:02 +0200555
Bjorn Helgaas365811d2012-05-29 15:06:29 -0700556 dprintk("reserve_memtype added [mem %#010Lx-%#010Lx], track %s, req %s, ret %s\n",
557 start, end - 1, cattr_name(new->type), cattr_name(req_type),
Andreas Herrmann3e9c83b2008-06-20 22:04:02 +0200558 new_type ? cattr_name(*new_type) : "-");
559
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700560 return err;
561}
562
563int free_memtype(u64 start, u64 end)
564{
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700565 int err = -EINVAL;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700566 int is_range_ram;
Xiaotian Feng20413f22010-05-26 09:51:10 +0800567 struct memtype *entry;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700568
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200569 if (!pat_enabled())
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700570 return 0;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700571
572 /* Low ISA region is always mapped WB. No need to track */
H. Peter Anvin8a271382009-11-23 14:49:20 -0800573 if (x86_platform.is_untracked_pat_range(start, end))
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700574 return 0;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700575
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800576 is_range_ram = pat_pagerange_is_ram(start, end);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700577 if (is_range_ram == 1) {
578
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700579 err = free_ram_pages_type(start, end);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700580
581 return err;
582 } else if (is_range_ram < 0) {
Suresh Siddha9542ada2008-09-24 08:53:33 -0700583 return -EINVAL;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700584 }
Suresh Siddha9542ada2008-09-24 08:53:33 -0700585
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700586 spin_lock(&memtype_lock);
Xiaotian Feng20413f22010-05-26 09:51:10 +0800587 entry = rbt_memtype_erase(start, end);
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700588 spin_unlock(&memtype_lock);
589
Toshi Kani2039e6a2015-12-22 17:54:24 -0700590 if (IS_ERR(entry)) {
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200591 pr_info("x86/PAT: %s:%d freeing invalid memtype [mem %#010Lx-%#010Lx]\n",
592 current->comm, current->pid, start, end - 1);
Xiaotian Feng20413f22010-05-26 09:51:10 +0800593 return -EINVAL;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700594 }
venkatesh.pallipadi@intel.com6997ab42008-03-18 17:00:25 -0700595
Xiaotian Feng20413f22010-05-26 09:51:10 +0800596 kfree(entry);
597
Bjorn Helgaas365811d2012-05-29 15:06:29 -0700598 dprintk("free_memtype request [mem %#010Lx-%#010Lx]\n", start, end - 1);
Ingo Molnarad2cde12008-09-30 13:20:45 +0200599
Xiaotian Feng20413f22010-05-26 09:51:10 +0800600 return 0;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700601}
602
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700603
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700604/**
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700605 * lookup_memtype - Looksup the memory type for a physical address
606 * @paddr: physical address of which memory type needs to be looked up
607 *
608 * Only to be called when PAT is enabled
609 *
Juergen Gross2a374692014-11-03 14:01:55 +0100610 * Returns _PAGE_CACHE_MODE_WB, _PAGE_CACHE_MODE_WC, _PAGE_CACHE_MODE_UC_MINUS
Toshi Kani35a5a102015-06-04 18:55:19 +0200611 * or _PAGE_CACHE_MODE_WT.
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700612 */
Juergen Gross2a374692014-11-03 14:01:55 +0100613static enum page_cache_mode lookup_memtype(u64 paddr)
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700614{
Juergen Gross2a374692014-11-03 14:01:55 +0100615 enum page_cache_mode rettype = _PAGE_CACHE_MODE_WB;
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700616 struct memtype *entry;
617
H. Peter Anvin8a271382009-11-23 14:49:20 -0800618 if (x86_platform.is_untracked_pat_range(paddr, paddr + PAGE_SIZE))
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700619 return rettype;
620
621 if (pat_pagerange_is_ram(paddr, paddr + PAGE_SIZE)) {
622 struct page *page;
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700623
Toshi Kani35a5a102015-06-04 18:55:19 +0200624 page = pfn_to_page(paddr >> PAGE_SHIFT);
625 return get_page_memtype(page);
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700626 }
627
628 spin_lock(&memtype_lock);
629
Pallipadi, Venkatesh9e41a492010-02-10 15:26:07 -0800630 entry = rbt_memtype_lookup(paddr);
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700631 if (entry != NULL)
632 rettype = entry->type;
633 else
Juergen Gross2a374692014-11-03 14:01:55 +0100634 rettype = _PAGE_CACHE_MODE_UC_MINUS;
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700635
636 spin_unlock(&memtype_lock);
637 return rettype;
638}
639
640/**
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700641 * io_reserve_memtype - Request a memory type mapping for a region of memory
642 * @start: start (physical address) of the region
643 * @end: end (physical address) of the region
644 * @type: A pointer to memtype, with requested type. On success, requested
645 * or any other compatible type that was available for the region is returned
646 *
647 * On success, returns 0
648 * On failure, returns non-zero
649 */
650int io_reserve_memtype(resource_size_t start, resource_size_t end,
Juergen Gross49a3b3c2014-11-03 14:01:54 +0100651 enum page_cache_mode *type)
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700652{
H. Peter Anvinb8551922009-08-26 17:17:51 -0700653 resource_size_t size = end - start;
Juergen Gross49a3b3c2014-11-03 14:01:54 +0100654 enum page_cache_mode req_type = *type;
655 enum page_cache_mode new_type;
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700656 int ret;
657
H. Peter Anvinb8551922009-08-26 17:17:51 -0700658 WARN_ON_ONCE(iomem_map_sanity_check(start, size));
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700659
660 ret = reserve_memtype(start, end, req_type, &new_type);
661 if (ret)
662 goto out_err;
663
H. Peter Anvinb8551922009-08-26 17:17:51 -0700664 if (!is_new_memtype_allowed(start, size, req_type, new_type))
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700665 goto out_free;
666
H. Peter Anvinb8551922009-08-26 17:17:51 -0700667 if (kernel_map_sync_memtype(start, size, new_type) < 0)
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700668 goto out_free;
669
670 *type = new_type;
671 return 0;
672
673out_free:
674 free_memtype(start, end);
675 ret = -EBUSY;
676out_err:
677 return ret;
678}
679
680/**
681 * io_free_memtype - Release a memory type mapping for a region of memory
682 * @start: start (physical address) of the region
683 * @end: end (physical address) of the region
684 */
685void io_free_memtype(resource_size_t start, resource_size_t end)
686{
687 free_memtype(start, end);
688}
689
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700690pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
691 unsigned long size, pgprot_t vma_prot)
692{
693 return vma_prot;
694}
695
Ingo Molnard0926332008-07-18 00:26:59 +0200696#ifdef CONFIG_STRICT_DEVMEM
Pavel Machek1f40a8b2014-12-28 17:15:24 +0100697/* This check is done in drivers/char/mem.c in case of STRICT_DEVMEM */
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700698static inline int range_is_allowed(unsigned long pfn, unsigned long size)
699{
700 return 1;
701}
702#else
Ravikiran G Thirumalai9e41bff2008-10-30 13:59:21 -0700703/* This check is needed to avoid cache aliasing when PAT is enabled */
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700704static inline int range_is_allowed(unsigned long pfn, unsigned long size)
705{
706 u64 from = ((u64)pfn) << PAGE_SHIFT;
707 u64 to = from + size;
708 u64 cursor = from;
709
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200710 if (!pat_enabled())
Ravikiran G Thirumalai9e41bff2008-10-30 13:59:21 -0700711 return 1;
712
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700713 while (cursor < to) {
714 if (!devmem_is_allowed(pfn)) {
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200715 pr_info("x86/PAT: Program %s tried to access /dev/mem between [mem %#010Lx-%#010Lx], PAT prevents it\n",
716 current->comm, from, to - 1);
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700717 return 0;
718 }
719 cursor += PAGE_SIZE;
720 pfn++;
721 }
722 return 1;
723}
Ingo Molnard0926332008-07-18 00:26:59 +0200724#endif /* CONFIG_STRICT_DEVMEM */
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700725
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700726int phys_mem_access_prot_allowed(struct file *file, unsigned long pfn,
727 unsigned long size, pgprot_t *vma_prot)
728{
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100729 enum page_cache_mode pcm = _PAGE_CACHE_MODE_WB;
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700730
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700731 if (!range_is_allowed(pfn, size))
732 return 0;
733
Christoph Hellwig6b2f3d12009-10-27 11:05:28 +0100734 if (file->f_flags & O_DSYNC)
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100735 pcm = _PAGE_CACHE_MODE_UC_MINUS;
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700736
737#ifdef CONFIG_X86_32
738 /*
739 * On the PPro and successors, the MTRRs are used to set
740 * memory types for physical addresses outside main memory,
741 * so blindly setting UC or PWT on those pages is wrong.
742 * For Pentiums and earlier, the surround logic should disable
743 * caching for the high addresses through the KEN pin, but
744 * we maintain the tradition of paranoia in this code.
745 */
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200746 if (!pat_enabled() &&
Andreas Herrmanncd7a4e92008-06-10 16:05:39 +0200747 !(boot_cpu_has(X86_FEATURE_MTRR) ||
748 boot_cpu_has(X86_FEATURE_K6_MTRR) ||
749 boot_cpu_has(X86_FEATURE_CYRIX_ARR) ||
750 boot_cpu_has(X86_FEATURE_CENTAUR_MCR)) &&
751 (pfn << PAGE_SHIFT) >= __pa(high_memory)) {
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100752 pcm = _PAGE_CACHE_MODE_UC;
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700753 }
754#endif
755
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700756 *vma_prot = __pgprot((pgprot_val(*vma_prot) & ~_PAGE_CACHE_MASK) |
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100757 cachemode2protval(pcm));
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700758 return 1;
759}
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700760
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800761/*
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800762 * Change the memory type for the physial address range in kernel identity
763 * mapping space if that range is a part of identity map.
764 */
Juergen Grossb14097b2014-11-03 14:01:58 +0100765int kernel_map_sync_memtype(u64 base, unsigned long size,
766 enum page_cache_mode pcm)
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800767{
768 unsigned long id_sz;
769
Dave Hansena25b9312013-01-22 13:24:30 -0800770 if (base > __pa(high_memory-1))
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800771 return 0;
772
Dave Hansen60f583d2013-03-07 08:31:51 -0800773 /*
774 * some areas in the middle of the kernel identity range
775 * are not mapped, like the PCI space.
776 */
777 if (!page_is_ram(base >> PAGE_SHIFT))
778 return 0;
779
Dave Hansena25b9312013-01-22 13:24:30 -0800780 id_sz = (__pa(high_memory-1) <= base + size) ?
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800781 __pa(high_memory) - base :
782 size;
783
Juergen Grossb14097b2014-11-03 14:01:58 +0100784 if (ioremap_change_attr((unsigned long)__va(base), id_sz, pcm) < 0) {
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200785 pr_info("x86/PAT: %s:%d ioremap_change_attr failed %s for [mem %#010Lx-%#010Lx]\n",
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800786 current->comm, current->pid,
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100787 cattr_name(pcm),
Bjorn Helgaas365811d2012-05-29 15:06:29 -0700788 base, (unsigned long long)(base + size-1));
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800789 return -EINVAL;
790 }
791 return 0;
792}
793
794/*
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800795 * Internal interface to reserve a range of physical memory with prot.
796 * Reserved non RAM regions only and after successful reserve_memtype,
797 * this func also keeps identity mapping (if any) in sync with this new prot.
798 */
venkatesh.pallipadi@intel.comcdecff62009-01-09 16:13:12 -0800799static int reserve_pfn_range(u64 paddr, unsigned long size, pgprot_t *vma_prot,
800 int strict_prot)
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800801{
802 int is_ram = 0;
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800803 int ret;
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100804 enum page_cache_mode want_pcm = pgprot2cachemode(*vma_prot);
805 enum page_cache_mode pcm = want_pcm;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800806
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800807 is_ram = pat_pagerange_is_ram(paddr, paddr + size);
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800808
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800809 /*
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700810 * reserve_pfn_range() for RAM pages. We do not refcount to keep
811 * track of number of mappings of RAM pages. We can assert that
812 * the type requested matches the type of first page in the range.
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800813 */
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700814 if (is_ram) {
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200815 if (!pat_enabled())
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700816 return 0;
817
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100818 pcm = lookup_memtype(paddr);
819 if (want_pcm != pcm) {
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200820 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 -0700821 current->comm, current->pid,
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100822 cattr_name(want_pcm),
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700823 (unsigned long long)paddr,
Bjorn Helgaas365811d2012-05-29 15:06:29 -0700824 (unsigned long long)(paddr + size - 1),
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100825 cattr_name(pcm));
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700826 *vma_prot = __pgprot((pgprot_val(*vma_prot) &
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100827 (~_PAGE_CACHE_MASK)) |
828 cachemode2protval(pcm));
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700829 }
Pallipadi, Venkatesh4bb9c5c2009-03-12 17:45:27 -0700830 return 0;
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700831 }
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800832
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100833 ret = reserve_memtype(paddr, paddr + size, want_pcm, &pcm);
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800834 if (ret)
835 return ret;
836
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100837 if (pcm != want_pcm) {
Suresh Siddha1adcaaf2009-08-17 13:23:50 -0700838 if (strict_prot ||
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100839 !is_new_memtype_allowed(paddr, size, want_pcm, pcm)) {
venkatesh.pallipadi@intel.comcdecff62009-01-09 16:13:12 -0800840 free_memtype(paddr, paddr + size);
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200841 pr_err("x86/PAT: %s:%d map pfn expected mapping type %s for [mem %#010Lx-%#010Lx], got %s\n",
842 current->comm, current->pid,
843 cattr_name(want_pcm),
844 (unsigned long long)paddr,
845 (unsigned long long)(paddr + size - 1),
846 cattr_name(pcm));
venkatesh.pallipadi@intel.comcdecff62009-01-09 16:13:12 -0800847 return -EINVAL;
848 }
849 /*
850 * We allow returning different type than the one requested in
851 * non strict case.
852 */
853 *vma_prot = __pgprot((pgprot_val(*vma_prot) &
854 (~_PAGE_CACHE_MASK)) |
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100855 cachemode2protval(pcm));
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800856 }
857
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100858 if (kernel_map_sync_memtype(paddr, size, pcm) < 0) {
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800859 free_memtype(paddr, paddr + size);
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800860 return -EINVAL;
861 }
862 return 0;
863}
864
865/*
866 * Internal interface to free a range of physical memory.
867 * Frees non RAM regions only.
868 */
869static void free_pfn_range(u64 paddr, unsigned long size)
870{
871 int is_ram;
872
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800873 is_ram = pat_pagerange_is_ram(paddr, paddr + size);
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800874 if (is_ram == 0)
875 free_memtype(paddr, paddr + size);
876}
877
878/*
Suresh Siddha5180da42012-10-08 16:28:29 -0700879 * track_pfn_copy is called when vma that is covering the pfnmap gets
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800880 * copied through copy_page_range().
881 *
882 * If the vma has a linear pfn mapping for the entire range, we get the prot
883 * from pte and reserve the entire vma range with single reserve_pfn_range call.
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800884 */
Suresh Siddha5180da42012-10-08 16:28:29 -0700885int track_pfn_copy(struct vm_area_struct *vma)
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800886{
H. Peter Anvinc1c15b62008-12-23 10:10:40 -0800887 resource_size_t paddr;
venkatesh.pallipadi@intel.com982d7892008-12-19 13:47:28 -0800888 unsigned long prot;
Pallipadi, Venkatesh4b065042009-04-08 15:37:16 -0700889 unsigned long vma_size = vma->vm_end - vma->vm_start;
venkatesh.pallipadi@intel.comcdecff62009-01-09 16:13:12 -0800890 pgprot_t pgprot;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800891
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -0700892 if (vma->vm_flags & VM_PAT) {
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800893 /*
venkatesh.pallipadi@intel.com982d7892008-12-19 13:47:28 -0800894 * reserve the whole chunk covered by vma. We need the
895 * starting address and protection from pte.
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800896 */
Pallipadi, Venkatesh4b065042009-04-08 15:37:16 -0700897 if (follow_phys(vma, vma->vm_start, 0, &prot, &paddr)) {
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800898 WARN_ON_ONCE(1);
venkatesh.pallipadi@intel.com982d7892008-12-19 13:47:28 -0800899 return -EINVAL;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800900 }
venkatesh.pallipadi@intel.comcdecff62009-01-09 16:13:12 -0800901 pgprot = __pgprot(prot);
902 return reserve_pfn_range(paddr, vma_size, &pgprot, 1);
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800903 }
904
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800905 return 0;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800906}
907
908/*
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800909 * prot is passed in as a parameter for the new mapping. If the vma has a
910 * linear pfn mapping for the entire range reserve the entire vma range with
911 * single reserve_pfn_range call.
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800912 */
Suresh Siddha5180da42012-10-08 16:28:29 -0700913int track_pfn_remap(struct vm_area_struct *vma, pgprot_t *prot,
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -0700914 unsigned long pfn, unsigned long addr, unsigned long size)
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800915{
Suresh Siddhab1a86e12012-10-08 16:28:23 -0700916 resource_size_t paddr = (resource_size_t)pfn << PAGE_SHIFT;
Juergen Gross2a374692014-11-03 14:01:55 +0100917 enum page_cache_mode pcm;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800918
Suresh Siddhab1a86e12012-10-08 16:28:23 -0700919 /* reserve the whole chunk starting from paddr */
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -0700920 if (addr == vma->vm_start && size == (vma->vm_end - vma->vm_start)) {
921 int ret;
922
923 ret = reserve_pfn_range(paddr, size, prot, 0);
924 if (!ret)
925 vma->vm_flags |= VM_PAT;
926 return ret;
927 }
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800928
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200929 if (!pat_enabled())
Venkatesh Pallipadi108763762009-07-10 09:57:40 -0700930 return 0;
931
Suresh Siddha5180da42012-10-08 16:28:29 -0700932 /*
933 * For anything smaller than the vma size we set prot based on the
934 * lookup.
935 */
Juergen Gross2a374692014-11-03 14:01:55 +0100936 pcm = lookup_memtype(paddr);
Suresh Siddha5180da42012-10-08 16:28:29 -0700937
938 /* Check memtype for the remaining pages */
939 while (size > PAGE_SIZE) {
940 size -= PAGE_SIZE;
941 paddr += PAGE_SIZE;
Juergen Gross2a374692014-11-03 14:01:55 +0100942 if (pcm != lookup_memtype(paddr))
Suresh Siddha5180da42012-10-08 16:28:29 -0700943 return -EINVAL;
944 }
945
Matthew Wilcoxdd7b6842016-01-25 12:25:15 -0500946 *prot = __pgprot((pgprot_val(*prot) & (~_PAGE_CACHE_MASK)) |
Juergen Gross2a374692014-11-03 14:01:55 +0100947 cachemode2protval(pcm));
Suresh Siddha5180da42012-10-08 16:28:29 -0700948
949 return 0;
950}
951
952int track_pfn_insert(struct vm_area_struct *vma, pgprot_t *prot,
Dan Williamsf25748e32016-01-15 16:56:43 -0800953 pfn_t pfn)
Suresh Siddha5180da42012-10-08 16:28:29 -0700954{
Juergen Gross2a374692014-11-03 14:01:55 +0100955 enum page_cache_mode pcm;
Suresh Siddha5180da42012-10-08 16:28:29 -0700956
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200957 if (!pat_enabled())
Suresh Siddha5180da42012-10-08 16:28:29 -0700958 return 0;
959
960 /* Set prot based on lookup */
Dan Williamsf25748e32016-01-15 16:56:43 -0800961 pcm = lookup_memtype(pfn_t_to_phys(pfn));
Matthew Wilcoxdd7b6842016-01-25 12:25:15 -0500962 *prot = __pgprot((pgprot_val(*prot) & (~_PAGE_CACHE_MASK)) |
Juergen Gross2a374692014-11-03 14:01:55 +0100963 cachemode2protval(pcm));
Venkatesh Pallipadi108763762009-07-10 09:57:40 -0700964
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800965 return 0;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800966}
967
968/*
Suresh Siddha5180da42012-10-08 16:28:29 -0700969 * untrack_pfn is called while unmapping a pfnmap for a region.
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800970 * untrack can be called for a specific region indicated by pfn and size or
Suresh Siddhab1a86e12012-10-08 16:28:23 -0700971 * can be for the entire vma (in which case pfn, size are zero).
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800972 */
Suresh Siddha5180da42012-10-08 16:28:29 -0700973void untrack_pfn(struct vm_area_struct *vma, unsigned long pfn,
974 unsigned long size)
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800975{
H. Peter Anvinc1c15b62008-12-23 10:10:40 -0800976 resource_size_t paddr;
Suresh Siddhab1a86e12012-10-08 16:28:23 -0700977 unsigned long prot;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800978
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -0700979 if (!(vma->vm_flags & VM_PAT))
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800980 return;
Suresh Siddhab1a86e12012-10-08 16:28:23 -0700981
982 /* free the chunk starting from pfn or the whole chunk */
983 paddr = (resource_size_t)pfn << PAGE_SHIFT;
984 if (!paddr && !size) {
985 if (follow_phys(vma, vma->vm_start, 0, &prot, &paddr)) {
986 WARN_ON_ONCE(1);
987 return;
988 }
989
990 size = vma->vm_end - vma->vm_start;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800991 }
Suresh Siddhab1a86e12012-10-08 16:28:23 -0700992 free_pfn_range(paddr, size);
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -0700993 vma->vm_flags &= ~VM_PAT;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800994}
995
Toshi Kanid9fe4fa2015-12-22 17:54:23 -0700996/*
997 * untrack_pfn_moved is called, while mremapping a pfnmap for a new region,
998 * with the old vma after its pfnmap page table has been removed. The new
999 * vma has a new pfnmap to the same pfn & cache type with VM_PAT set.
1000 */
1001void untrack_pfn_moved(struct vm_area_struct *vma)
1002{
1003 vma->vm_flags &= ~VM_PAT;
1004}
1005
venkatesh.pallipadi@intel.com2520bd32008-12-18 11:41:32 -08001006pgprot_t pgprot_writecombine(pgprot_t prot)
1007{
Borislav Petkov7202fdb2015-06-04 18:55:11 +02001008 return __pgprot(pgprot_val(prot) |
Juergen Grosse00c8cc2014-11-03 14:01:59 +01001009 cachemode2protval(_PAGE_CACHE_MODE_WC));
venkatesh.pallipadi@intel.com2520bd32008-12-18 11:41:32 -08001010}
Ingo Molnar92b9af92009-02-28 14:09:27 +01001011EXPORT_SYMBOL_GPL(pgprot_writecombine);
venkatesh.pallipadi@intel.com2520bd32008-12-18 11:41:32 -08001012
Toshi Kanid1b4bfb2015-06-04 18:55:18 +02001013pgprot_t pgprot_writethrough(pgprot_t prot)
1014{
1015 return __pgprot(pgprot_val(prot) |
1016 cachemode2protval(_PAGE_CACHE_MODE_WT));
1017}
1018EXPORT_SYMBOL_GPL(pgprot_writethrough);
1019
Andreas Herrmann012f09e2008-08-06 16:23:08 +02001020#if defined(CONFIG_DEBUG_FS) && defined(CONFIG_X86_PAT)
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001021
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001022static struct memtype *memtype_get_idx(loff_t pos)
1023{
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -08001024 struct memtype *print_entry;
1025 int ret;
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001026
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -08001027 print_entry = kzalloc(sizeof(struct memtype), GFP_KERNEL);
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001028 if (!print_entry)
1029 return NULL;
1030
1031 spin_lock(&memtype_lock);
Pallipadi, Venkatesh9e41a492010-02-10 15:26:07 -08001032 ret = rbt_memtype_copy_nth_element(print_entry, pos);
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001033 spin_unlock(&memtype_lock);
Ingo Molnarad2cde12008-09-30 13:20:45 +02001034
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -08001035 if (!ret) {
1036 return print_entry;
1037 } else {
1038 kfree(print_entry);
1039 return NULL;
1040 }
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001041}
1042
1043static void *memtype_seq_start(struct seq_file *seq, loff_t *pos)
1044{
1045 if (*pos == 0) {
1046 ++*pos;
Rasmus Villemoes37367082014-11-28 22:03:41 +01001047 seq_puts(seq, "PAT memtype list:\n");
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001048 }
1049
1050 return memtype_get_idx(*pos);
1051}
1052
1053static void *memtype_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1054{
1055 ++*pos;
1056 return memtype_get_idx(*pos);
1057}
1058
1059static void memtype_seq_stop(struct seq_file *seq, void *v)
1060{
1061}
1062
1063static int memtype_seq_show(struct seq_file *seq, void *v)
1064{
1065 struct memtype *print_entry = (struct memtype *)v;
1066
1067 seq_printf(seq, "%s @ 0x%Lx-0x%Lx\n", cattr_name(print_entry->type),
1068 print_entry->start, print_entry->end);
1069 kfree(print_entry);
Ingo Molnarad2cde12008-09-30 13:20:45 +02001070
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001071 return 0;
1072}
1073
Tobias Klauserd535e432009-09-04 15:53:09 +02001074static const struct seq_operations memtype_seq_ops = {
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001075 .start = memtype_seq_start,
1076 .next = memtype_seq_next,
1077 .stop = memtype_seq_stop,
1078 .show = memtype_seq_show,
1079};
1080
1081static int memtype_seq_open(struct inode *inode, struct file *file)
1082{
1083 return seq_open(file, &memtype_seq_ops);
1084}
1085
1086static const struct file_operations memtype_fops = {
1087 .open = memtype_seq_open,
1088 .read = seq_read,
1089 .llseek = seq_lseek,
1090 .release = seq_release,
1091};
1092
1093static int __init pat_memtype_list_init(void)
1094{
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +02001095 if (pat_enabled()) {
Xiaotian Fengdd4377b2009-11-26 19:53:48 +08001096 debugfs_create_file("pat_memtype_list", S_IRUSR,
1097 arch_debugfs_dir, NULL, &memtype_fops);
1098 }
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001099 return 0;
1100}
1101
1102late_initcall(pat_memtype_list_init);
1103
Andreas Herrmann012f09e2008-08-06 16:23:08 +02001104#endif /* CONFIG_DEBUG_FS && CONFIG_X86_PAT */