blob: f89e460c55a8b6303f6704e7785890e5b7e8bdd0 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Ingo Molnarad2cde12008-09-30 13:20:45 +020016#include <linux/mm.h>
17#include <linux/fs.h>
Venkatesh Pallipadi335ef892009-07-10 09:57:36 -070018#include <linux/rbtree.h>
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070019
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070020#include <asm/cacheflush.h>
Ingo Molnarad2cde12008-09-30 13:20:45 +020021#include <asm/processor.h>
22#include <asm/tlbflush.h>
Jack Steinerfd12a0d2009-11-19 14:23:41 -060023#include <asm/x86_init.h>
Ingo Molnarad2cde12008-09-30 13:20:45 +020024#include <asm/pgtable.h>
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070025#include <asm/fcntl.h>
Ingo Molnarad2cde12008-09-30 13:20:45 +020026#include <asm/e820.h>
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070027#include <asm/mtrr.h>
Ingo Molnarad2cde12008-09-30 13:20:45 +020028#include <asm/page.h>
29#include <asm/msr.h>
30#include <asm/pat.h>
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -070031#include <asm/io.h>
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070032
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -080033#include "pat_internal.h"
Juergen Grossbd809af2014-11-03 14:02:03 +010034#include "mm_internal.h"
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -080035
Luis R. Rodriguez9e765612015-05-26 10:28:11 +020036#undef pr_fmt
37#define pr_fmt(fmt) "" fmt
38
Borislav Petkov9dac6292015-06-04 18:55:09 +020039static bool boot_cpu_done;
40
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +020041static int __read_mostly __pat_enabled = IS_ENABLED(CONFIG_X86_PAT);
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070042
Marcin Slusarz1ee4bd92009-04-10 22:47:17 +020043static inline void pat_disable(const char *reason)
Thomas Gleixner8d4a4302008-05-08 09:18:43 +020044{
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +020045 __pat_enabled = 0;
Luis R. Rodriguez9e765612015-05-26 10:28:11 +020046 pr_info("x86/PAT: %s\n", reason);
Thomas Gleixner8d4a4302008-05-08 09:18:43 +020047}
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070048
Andrew Mortonbe524fb2008-05-29 00:01:28 -070049static int __init nopat(char *str)
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070050{
Thomas Gleixner8d4a4302008-05-08 09:18:43 +020051 pat_disable("PAT support disabled.");
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070052 return 0;
53}
54early_param("nopat", nopat);
55
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +020056bool pat_enabled(void)
57{
58 return !!__pat_enabled;
59}
Luis R. Rodriguezfbe71932015-05-26 10:28:16 +020060EXPORT_SYMBOL_GPL(pat_enabled);
Venki Pallipadi77b52b42008-05-05 19:09:10 -070061
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -080062int pat_debug_enable;
Ingo Molnarad2cde12008-09-30 13:20:45 +020063
Venki Pallipadi77b52b42008-05-05 19:09:10 -070064static int __init pat_debug_setup(char *str)
65{
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -080066 pat_debug_enable = 1;
Venki Pallipadi77b52b42008-05-05 19:09:10 -070067 return 0;
68}
69__setup("debugpat", pat_debug_setup);
70
Thomas Gleixner0dbcae82014-11-16 18:59:19 +010071#ifdef CONFIG_X86_PAT
72/*
73 * X86 PAT uses page flags WC and Uncached together to keep track of
74 * memory type of pages that have backing page struct. X86 PAT supports 3
75 * different memory types, _PAGE_CACHE_MODE_WB, _PAGE_CACHE_MODE_WC and
76 * _PAGE_CACHE_MODE_UC_MINUS and fourth state where page's memory type has not
77 * been changed from its default (value of -1 used to denote this).
78 * Note we do not support _PAGE_CACHE_MODE_UC here.
79 */
80
81#define _PGMT_DEFAULT 0
82#define _PGMT_WC (1UL << PG_arch_1)
83#define _PGMT_UC_MINUS (1UL << PG_uncached)
84#define _PGMT_WB (1UL << PG_uncached | 1UL << PG_arch_1)
85#define _PGMT_MASK (1UL << PG_uncached | 1UL << PG_arch_1)
86#define _PGMT_CLEAR_MASK (~_PGMT_MASK)
87
88static inline enum page_cache_mode get_page_memtype(struct page *pg)
89{
90 unsigned long pg_flags = pg->flags & _PGMT_MASK;
91
92 if (pg_flags == _PGMT_DEFAULT)
93 return -1;
94 else if (pg_flags == _PGMT_WC)
95 return _PAGE_CACHE_MODE_WC;
96 else if (pg_flags == _PGMT_UC_MINUS)
97 return _PAGE_CACHE_MODE_UC_MINUS;
98 else
99 return _PAGE_CACHE_MODE_WB;
100}
101
102static inline void set_page_memtype(struct page *pg,
103 enum page_cache_mode memtype)
104{
105 unsigned long memtype_flags;
106 unsigned long old_flags;
107 unsigned long new_flags;
108
109 switch (memtype) {
110 case _PAGE_CACHE_MODE_WC:
111 memtype_flags = _PGMT_WC;
112 break;
113 case _PAGE_CACHE_MODE_UC_MINUS:
114 memtype_flags = _PGMT_UC_MINUS;
115 break;
116 case _PAGE_CACHE_MODE_WB:
117 memtype_flags = _PGMT_WB;
118 break;
119 default:
120 memtype_flags = _PGMT_DEFAULT;
121 break;
122 }
123
124 do {
125 old_flags = pg->flags;
126 new_flags = (old_flags & _PGMT_CLEAR_MASK) | memtype_flags;
127 } while (cmpxchg(&pg->flags, old_flags, new_flags) != old_flags);
128}
129#else
130static inline enum page_cache_mode get_page_memtype(struct page *pg)
131{
132 return -1;
133}
134static inline void set_page_memtype(struct page *pg,
135 enum page_cache_mode memtype)
136{
137}
138#endif
139
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700140enum {
141 PAT_UC = 0, /* uncached */
142 PAT_WC = 1, /* Write combining */
143 PAT_WT = 4, /* Write Through */
144 PAT_WP = 5, /* Write Protected */
145 PAT_WB = 6, /* Write Back (default) */
146 PAT_UC_MINUS = 7, /* UC, but can be overriden by MTRR */
147};
148
Juergen Grossbd809af2014-11-03 14:02:03 +0100149#define CM(c) (_PAGE_CACHE_MODE_ ## c)
150
151static enum page_cache_mode pat_get_cache_mode(unsigned pat_val, char *msg)
152{
153 enum page_cache_mode cache;
154 char *cache_mode;
155
156 switch (pat_val) {
157 case PAT_UC: cache = CM(UC); cache_mode = "UC "; break;
158 case PAT_WC: cache = CM(WC); cache_mode = "WC "; break;
159 case PAT_WT: cache = CM(WT); cache_mode = "WT "; break;
160 case PAT_WP: cache = CM(WP); cache_mode = "WP "; break;
161 case PAT_WB: cache = CM(WB); cache_mode = "WB "; break;
162 case PAT_UC_MINUS: cache = CM(UC_MINUS); cache_mode = "UC- "; break;
163 default: cache = CM(WB); cache_mode = "WB "; break;
164 }
165
166 memcpy(msg, cache_mode, 4);
167
168 return cache;
169}
170
171#undef CM
172
173/*
174 * Update the cache mode to pgprot translation tables according to PAT
175 * configuration.
176 * Using lower indices is preferred, so we start with highest index.
177 */
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200178void pat_init_cache_modes(u64 pat)
Juergen Grossbd809af2014-11-03 14:02:03 +0100179{
Juergen Grossbd809af2014-11-03 14:02:03 +0100180 enum page_cache_mode cache;
181 char pat_msg[33];
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200182 int i;
Juergen Grossbd809af2014-11-03 14:02:03 +0100183
Juergen Grossbd809af2014-11-03 14:02:03 +0100184 pat_msg[32] = 0;
185 for (i = 7; i >= 0; i--) {
186 cache = pat_get_cache_mode((pat >> (i * 8)) & 7,
187 pat_msg + 4 * i);
188 update_cache_mode_entry(i, cache);
189 }
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200190 pr_info("x86/PAT: Configuration [0-7]: %s\n", pat_msg);
Juergen Grossbd809af2014-11-03 14:02:03 +0100191}
192
Andreas Herrmanncd7a4e92008-06-10 16:05:39 +0200193#define PAT(x, y) ((u64)PAT_ ## y << ((x)*8))
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700194
Borislav Petkov9dac6292015-06-04 18:55:09 +0200195static void pat_bsp_init(u64 pat)
196{
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200197 u64 tmp_pat;
198
Borislav Petkov9dac6292015-06-04 18:55:09 +0200199 if (!cpu_has_pat) {
200 pat_disable("PAT not supported by CPU.");
201 return;
202 }
203
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200204 if (!pat_enabled())
205 goto done;
206
207 rdmsrl(MSR_IA32_CR_PAT, tmp_pat);
208 if (!tmp_pat) {
Borislav Petkov9dac6292015-06-04 18:55:09 +0200209 pat_disable("PAT MSR is 0, disabled.");
210 return;
211 }
212
213 wrmsrl(MSR_IA32_CR_PAT, pat);
214
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200215done:
216 pat_init_cache_modes(pat);
Borislav Petkov9dac6292015-06-04 18:55:09 +0200217}
218
219static void pat_ap_init(u64 pat)
220{
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200221 if (!pat_enabled())
222 return;
223
Borislav Petkov9dac6292015-06-04 18:55:09 +0200224 if (!cpu_has_pat) {
225 /*
226 * If this happens we are on a secondary CPU, but switched to
227 * PAT on the boot CPU. We have no way to undo PAT.
228 */
229 panic("x86/PAT: PAT enabled, but not supported by secondary CPU\n");
230 }
231
232 wrmsrl(MSR_IA32_CR_PAT, pat);
233}
234
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700235void pat_init(void)
236{
237 u64 pat;
238
Borislav Petkov9cd25aa2015-06-04 18:55:10 +0200239 if (!pat_enabled()) {
240 /*
241 * No PAT. Emulate the PAT table that corresponds to the two
242 * cache bits, PWT (Write Through) and PCD (Cache Disable). This
243 * setup is the same as the BIOS default setup when the system
244 * has PAT but the "nopat" boot option has been specified. This
245 * emulated PAT table is used when MSR_IA32_CR_PAT returns 0.
246 *
247 * PTE encoding used:
248 *
249 * PCD
250 * |PWT PAT
251 * || slot
252 * 00 0 WB : _PAGE_CACHE_MODE_WB
253 * 01 1 WT : _PAGE_CACHE_MODE_WT
254 * 10 2 UC-: _PAGE_CACHE_MODE_UC_MINUS
255 * 11 3 UC : _PAGE_CACHE_MODE_UC
256 *
257 * NOTE: When WC or WP is used, it is redirected to UC- per
258 * the default setup in __cachemode2pte_tbl[].
259 */
260 pat = PAT(0, WB) | PAT(1, WT) | PAT(2, UC_MINUS) | PAT(3, UC) |
261 PAT(4, WB) | PAT(5, WT) | PAT(6, UC_MINUS) | PAT(7, UC);
262 } else {
263 /*
264 * PTE encoding used in Linux:
265 * PAT
266 * |PCD
267 * ||PWT
268 * |||
269 * 000 WB _PAGE_CACHE_WB
270 * 001 WC _PAGE_CACHE_WC
271 * 010 UC- _PAGE_CACHE_UC_MINUS
272 * 011 UC _PAGE_CACHE_UC
273 * PAT bit unused
274 */
275 pat = PAT(0, WB) | PAT(1, WC) | PAT(2, UC_MINUS) | PAT(3, UC) |
276 PAT(4, WB) | PAT(5, WC) | PAT(6, UC_MINUS) | PAT(7, UC);
277 }
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700278
Borislav Petkov9dac6292015-06-04 18:55:09 +0200279 if (!boot_cpu_done) {
280 pat_bsp_init(pat);
281 boot_cpu_done = true;
282 } else {
283 pat_ap_init(pat);
Juergen Gross9d34cfd2015-01-12 06:15:45 +0100284 }
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700285}
286
287#undef PAT
288
Pallipadi, Venkatesh9e41a492010-02-10 15:26:07 -0800289static DEFINE_SPINLOCK(memtype_lock); /* protects memtype accesses */
Venkatesh Pallipadi335ef892009-07-10 09:57:36 -0700290
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700291/*
292 * Does intersection of PAT memory type and MTRR memory type and returns
293 * the resulting memory type as PAT understands it.
294 * (Type in pat and mtrr will not have same value)
295 * The intersection is based on "Effective Memory Type" tables in IA-32
296 * SDM vol 3a
297 */
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100298static unsigned long pat_x_mtrr_type(u64 start, u64 end,
299 enum page_cache_mode req_type)
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700300{
Venki Pallipadic26421d2008-05-29 12:01:44 -0700301 /*
302 * Look for MTRR hint to get the effective type in case where PAT
303 * request is for WB.
304 */
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100305 if (req_type == _PAGE_CACHE_MODE_WB) {
Toshi Kanib73522e2015-05-26 10:28:10 +0200306 u8 mtrr_type, uniform;
Andreas Herrmanndd0c7c42008-06-18 15:38:57 +0200307
Toshi Kanib73522e2015-05-26 10:28:10 +0200308 mtrr_type = mtrr_type_lookup(start, end, &uniform);
Suresh Siddhab6ff32d2009-04-09 14:26:51 -0700309 if (mtrr_type != MTRR_TYPE_WRBACK)
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100310 return _PAGE_CACHE_MODE_UC_MINUS;
Suresh Siddhab6ff32d2009-04-09 14:26:51 -0700311
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100312 return _PAGE_CACHE_MODE_WB;
Andreas Herrmanndd0c7c42008-06-18 15:38:57 +0200313 }
314
315 return req_type;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700316}
317
John Dykstrafa835232012-05-25 16:12:46 -0500318struct pagerange_state {
319 unsigned long cur_pfn;
320 int ram;
321 int not_ram;
322};
323
324static int
325pagerange_is_ram_callback(unsigned long initial_pfn, unsigned long total_nr_pages, void *arg)
326{
327 struct pagerange_state *state = arg;
328
329 state->not_ram |= initial_pfn > state->cur_pfn;
330 state->ram |= total_nr_pages > 0;
331 state->cur_pfn = initial_pfn + total_nr_pages;
332
333 return state->ram && state->not_ram;
334}
335
Yasuaki Ishimatsu3709c852010-07-22 14:57:35 +0900336static int pat_pagerange_is_ram(resource_size_t start, resource_size_t end)
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800337{
John Dykstrafa835232012-05-25 16:12:46 -0500338 int ret = 0;
339 unsigned long start_pfn = start >> PAGE_SHIFT;
340 unsigned long end_pfn = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
341 struct pagerange_state state = {start_pfn, 0, 0};
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800342
John Dykstrafa835232012-05-25 16:12:46 -0500343 /*
344 * For legacy reasons, physical address range in the legacy ISA
345 * region is tracked as non-RAM. This will allow users of
346 * /dev/mem to map portions of legacy ISA region, even when
347 * some of those portions are listed(or not even listed) with
348 * different e820 types(RAM/reserved/..)
349 */
350 if (start_pfn < ISA_END_ADDRESS >> PAGE_SHIFT)
351 start_pfn = ISA_END_ADDRESS >> PAGE_SHIFT;
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800352
John Dykstrafa835232012-05-25 16:12:46 -0500353 if (start_pfn < end_pfn) {
354 ret = walk_system_ram_range(start_pfn, end_pfn - start_pfn,
355 &state, pagerange_is_ram_callback);
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800356 }
357
John Dykstrafa835232012-05-25 16:12:46 -0500358 return (ret > 0) ? -1 : (state.ram ? 1 : 0);
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800359}
360
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700361/*
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700362 * For RAM pages, we use page flags to mark the pages with appropriate type.
363 * Here we do two pass:
364 * - Find the memtype of all the pages in the range, look for any conflicts
365 * - In case of no conflicts, set the new memtype for pages in the range
Suresh Siddha9542ada2008-09-24 08:53:33 -0700366 */
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100367static int reserve_ram_pages_type(u64 start, u64 end,
368 enum page_cache_mode req_type,
369 enum page_cache_mode *new_type)
Suresh Siddha9542ada2008-09-24 08:53:33 -0700370{
371 struct page *page;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700372 u64 pfn;
373
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100374 if (req_type == _PAGE_CACHE_MODE_UC) {
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700375 /* We do not support strong UC */
376 WARN_ON_ONCE(1);
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100377 req_type = _PAGE_CACHE_MODE_UC_MINUS;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700378 }
379
380 for (pfn = (start >> PAGE_SHIFT); pfn < (end >> PAGE_SHIFT); ++pfn) {
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100381 enum page_cache_mode type;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700382
383 page = pfn_to_page(pfn);
384 type = get_page_memtype(page);
385 if (type != -1) {
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200386 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 -0700387 start, end - 1, type, req_type);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700388 if (new_type)
389 *new_type = type;
390
391 return -EBUSY;
392 }
393 }
394
395 if (new_type)
396 *new_type = req_type;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700397
398 for (pfn = (start >> PAGE_SHIFT); pfn < (end >> PAGE_SHIFT); ++pfn) {
399 page = pfn_to_page(pfn);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700400 set_page_memtype(page, req_type);
Suresh Siddha9542ada2008-09-24 08:53:33 -0700401 }
402 return 0;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700403}
404
405static int free_ram_pages_type(u64 start, u64 end)
406{
407 struct page *page;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700408 u64 pfn;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700409
410 for (pfn = (start >> PAGE_SHIFT); pfn < (end >> PAGE_SHIFT); ++pfn) {
411 page = pfn_to_page(pfn);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700412 set_page_memtype(page, -1);
Suresh Siddha9542ada2008-09-24 08:53:33 -0700413 }
414 return 0;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700415}
416
417/*
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700418 * req_type typically has one of the:
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100419 * - _PAGE_CACHE_MODE_WB
420 * - _PAGE_CACHE_MODE_WC
421 * - _PAGE_CACHE_MODE_UC_MINUS
422 * - _PAGE_CACHE_MODE_UC
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700423 *
Andreas Herrmannac979912008-06-20 22:01:49 +0200424 * If new_type is NULL, function will return an error if it cannot reserve the
425 * region with req_type. If new_type is non-NULL, function will return
426 * available type in new_type in case of no error. In case of any error
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700427 * it will return a negative return value.
428 */
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100429int reserve_memtype(u64 start, u64 end, enum page_cache_mode req_type,
430 enum page_cache_mode *new_type)
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700431{
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -0800432 struct memtype *new;
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100433 enum page_cache_mode actual_type;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700434 int is_range_ram;
Ingo Molnarad2cde12008-09-30 13:20:45 +0200435 int err = 0;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700436
Ingo Molnarad2cde12008-09-30 13:20:45 +0200437 BUG_ON(start >= end); /* end is exclusive */
Andreas Herrmann69e26be2008-06-20 22:03:06 +0200438
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200439 if (!pat_enabled()) {
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700440 /* This is identical to page table setting without PAT */
Borislav Petkov7202fdb2015-06-04 18:55:11 +0200441 if (new_type)
442 *new_type = req_type;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700443 return 0;
444 }
445
446 /* Low ISA region is always mapped WB in page table. No need to track */
H. Peter Anvin8a271382009-11-23 14:49:20 -0800447 if (x86_platform.is_untracked_pat_range(start, end)) {
Andreas Herrmannac979912008-06-20 22:01:49 +0200448 if (new_type)
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100449 *new_type = _PAGE_CACHE_MODE_WB;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700450 return 0;
451 }
452
Suresh Siddhab6ff32d2009-04-09 14:26:51 -0700453 /*
454 * Call mtrr_lookup to get the type hint. This is an
455 * optimization for /dev/mem mmap'ers into WB memory (BIOS
456 * tools and ACPI tools). Use WB request for WB memory and use
457 * UC_MINUS otherwise.
458 */
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100459 actual_type = pat_x_mtrr_type(start, end, req_type);
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700460
Suresh Siddha95971342009-01-13 10:21:30 -0800461 if (new_type)
462 *new_type = actual_type;
463
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800464 is_range_ram = pat_pagerange_is_ram(start, end);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700465 if (is_range_ram == 1) {
466
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700467 err = reserve_ram_pages_type(start, end, req_type, new_type);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700468
469 return err;
470 } else if (is_range_ram < 0) {
Suresh Siddha9542ada2008-09-24 08:53:33 -0700471 return -EINVAL;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700472 }
Suresh Siddha9542ada2008-09-24 08:53:33 -0700473
Venkatesh Pallipadi6a4f3b52010-06-10 17:45:01 -0700474 new = kzalloc(sizeof(struct memtype), GFP_KERNEL);
Andreas Herrmannac979912008-06-20 22:01:49 +0200475 if (!new)
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700476 return -ENOMEM;
477
Ingo Molnarad2cde12008-09-30 13:20:45 +0200478 new->start = start;
479 new->end = end;
480 new->type = actual_type;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700481
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700482 spin_lock(&memtype_lock);
483
Pallipadi, Venkatesh9e41a492010-02-10 15:26:07 -0800484 err = rbt_memtype_check_insert(new, new_type);
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700485 if (err) {
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200486 pr_info("x86/PAT: reserve_memtype failed [mem %#010Lx-%#010Lx], track %s, req %s\n",
487 start, end - 1,
488 cattr_name(new->type), cattr_name(req_type));
Andreas Herrmannac979912008-06-20 22:01:49 +0200489 kfree(new);
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700490 spin_unlock(&memtype_lock);
Ingo Molnarad2cde12008-09-30 13:20:45 +0200491
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700492 return err;
493 }
494
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700495 spin_unlock(&memtype_lock);
Andreas Herrmann3e9c83b2008-06-20 22:04:02 +0200496
Bjorn Helgaas365811d2012-05-29 15:06:29 -0700497 dprintk("reserve_memtype added [mem %#010Lx-%#010Lx], track %s, req %s, ret %s\n",
498 start, end - 1, cattr_name(new->type), cattr_name(req_type),
Andreas Herrmann3e9c83b2008-06-20 22:04:02 +0200499 new_type ? cattr_name(*new_type) : "-");
500
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700501 return err;
502}
503
504int free_memtype(u64 start, u64 end)
505{
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700506 int err = -EINVAL;
Suresh Siddha9542ada2008-09-24 08:53:33 -0700507 int is_range_ram;
Xiaotian Feng20413f22010-05-26 09:51:10 +0800508 struct memtype *entry;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700509
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200510 if (!pat_enabled())
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700511 return 0;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700512
513 /* Low ISA region is always mapped WB. No need to track */
H. Peter Anvin8a271382009-11-23 14:49:20 -0800514 if (x86_platform.is_untracked_pat_range(start, end))
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700515 return 0;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700516
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800517 is_range_ram = pat_pagerange_is_ram(start, end);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700518 if (is_range_ram == 1) {
519
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700520 err = free_ram_pages_type(start, end);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700521
522 return err;
523 } else if (is_range_ram < 0) {
Suresh Siddha9542ada2008-09-24 08:53:33 -0700524 return -EINVAL;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -0700525 }
Suresh Siddha9542ada2008-09-24 08:53:33 -0700526
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700527 spin_lock(&memtype_lock);
Xiaotian Feng20413f22010-05-26 09:51:10 +0800528 entry = rbt_memtype_erase(start, end);
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700529 spin_unlock(&memtype_lock);
530
Xiaotian Feng20413f22010-05-26 09:51:10 +0800531 if (!entry) {
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200532 pr_info("x86/PAT: %s:%d freeing invalid memtype [mem %#010Lx-%#010Lx]\n",
533 current->comm, current->pid, start, end - 1);
Xiaotian Feng20413f22010-05-26 09:51:10 +0800534 return -EINVAL;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700535 }
venkatesh.pallipadi@intel.com6997ab42008-03-18 17:00:25 -0700536
Xiaotian Feng20413f22010-05-26 09:51:10 +0800537 kfree(entry);
538
Bjorn Helgaas365811d2012-05-29 15:06:29 -0700539 dprintk("free_memtype request [mem %#010Lx-%#010Lx]\n", start, end - 1);
Ingo Molnarad2cde12008-09-30 13:20:45 +0200540
Xiaotian Feng20413f22010-05-26 09:51:10 +0800541 return 0;
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700542}
543
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700544
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700545/**
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700546 * lookup_memtype - Looksup the memory type for a physical address
547 * @paddr: physical address of which memory type needs to be looked up
548 *
549 * Only to be called when PAT is enabled
550 *
Juergen Gross2a374692014-11-03 14:01:55 +0100551 * Returns _PAGE_CACHE_MODE_WB, _PAGE_CACHE_MODE_WC, _PAGE_CACHE_MODE_UC_MINUS
552 * or _PAGE_CACHE_MODE_UC
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700553 */
Juergen Gross2a374692014-11-03 14:01:55 +0100554static enum page_cache_mode lookup_memtype(u64 paddr)
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700555{
Juergen Gross2a374692014-11-03 14:01:55 +0100556 enum page_cache_mode rettype = _PAGE_CACHE_MODE_WB;
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700557 struct memtype *entry;
558
H. Peter Anvin8a271382009-11-23 14:49:20 -0800559 if (x86_platform.is_untracked_pat_range(paddr, paddr + PAGE_SIZE))
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700560 return rettype;
561
562 if (pat_pagerange_is_ram(paddr, paddr + PAGE_SIZE)) {
563 struct page *page;
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700564 page = pfn_to_page(paddr >> PAGE_SHIFT);
565 rettype = get_page_memtype(page);
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700566 /*
567 * -1 from get_page_memtype() implies RAM page is in its
568 * default state and not reserved, and hence of type WB
569 */
570 if (rettype == -1)
Juergen Gross2a374692014-11-03 14:01:55 +0100571 rettype = _PAGE_CACHE_MODE_WB;
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700572
573 return rettype;
574 }
575
576 spin_lock(&memtype_lock);
577
Pallipadi, Venkatesh9e41a492010-02-10 15:26:07 -0800578 entry = rbt_memtype_lookup(paddr);
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700579 if (entry != NULL)
580 rettype = entry->type;
581 else
Juergen Gross2a374692014-11-03 14:01:55 +0100582 rettype = _PAGE_CACHE_MODE_UC_MINUS;
Venkatesh Pallipadi637b86e2009-07-10 09:57:39 -0700583
584 spin_unlock(&memtype_lock);
585 return rettype;
586}
587
588/**
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700589 * io_reserve_memtype - Request a memory type mapping for a region of memory
590 * @start: start (physical address) of the region
591 * @end: end (physical address) of the region
592 * @type: A pointer to memtype, with requested type. On success, requested
593 * or any other compatible type that was available for the region is returned
594 *
595 * On success, returns 0
596 * On failure, returns non-zero
597 */
598int io_reserve_memtype(resource_size_t start, resource_size_t end,
Juergen Gross49a3b3c2014-11-03 14:01:54 +0100599 enum page_cache_mode *type)
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700600{
H. Peter Anvinb8551922009-08-26 17:17:51 -0700601 resource_size_t size = end - start;
Juergen Gross49a3b3c2014-11-03 14:01:54 +0100602 enum page_cache_mode req_type = *type;
603 enum page_cache_mode new_type;
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700604 int ret;
605
H. Peter Anvinb8551922009-08-26 17:17:51 -0700606 WARN_ON_ONCE(iomem_map_sanity_check(start, size));
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700607
608 ret = reserve_memtype(start, end, req_type, &new_type);
609 if (ret)
610 goto out_err;
611
H. Peter Anvinb8551922009-08-26 17:17:51 -0700612 if (!is_new_memtype_allowed(start, size, req_type, new_type))
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700613 goto out_free;
614
H. Peter Anvinb8551922009-08-26 17:17:51 -0700615 if (kernel_map_sync_memtype(start, size, new_type) < 0)
Venkatesh Pallipadi9fd126bc2009-07-10 09:57:34 -0700616 goto out_free;
617
618 *type = new_type;
619 return 0;
620
621out_free:
622 free_memtype(start, end);
623 ret = -EBUSY;
624out_err:
625 return ret;
626}
627
628/**
629 * io_free_memtype - Release a memory type mapping for a region of memory
630 * @start: start (physical address) of the region
631 * @end: end (physical address) of the region
632 */
633void io_free_memtype(resource_size_t start, resource_size_t end)
634{
635 free_memtype(start, end);
636}
637
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700638pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
639 unsigned long size, pgprot_t vma_prot)
640{
641 return vma_prot;
642}
643
Ingo Molnard0926332008-07-18 00:26:59 +0200644#ifdef CONFIG_STRICT_DEVMEM
Pavel Machek1f40a8b2014-12-28 17:15:24 +0100645/* This check is done in drivers/char/mem.c in case of STRICT_DEVMEM */
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700646static inline int range_is_allowed(unsigned long pfn, unsigned long size)
647{
648 return 1;
649}
650#else
Ravikiran G Thirumalai9e41bff2008-10-30 13:59:21 -0700651/* This check is needed to avoid cache aliasing when PAT is enabled */
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700652static inline int range_is_allowed(unsigned long pfn, unsigned long size)
653{
654 u64 from = ((u64)pfn) << PAGE_SHIFT;
655 u64 to = from + size;
656 u64 cursor = from;
657
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200658 if (!pat_enabled())
Ravikiran G Thirumalai9e41bff2008-10-30 13:59:21 -0700659 return 1;
660
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700661 while (cursor < to) {
662 if (!devmem_is_allowed(pfn)) {
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200663 pr_info("x86/PAT: Program %s tried to access /dev/mem between [mem %#010Lx-%#010Lx], PAT prevents it\n",
664 current->comm, from, to - 1);
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700665 return 0;
666 }
667 cursor += PAGE_SIZE;
668 pfn++;
669 }
670 return 1;
671}
Ingo Molnard0926332008-07-18 00:26:59 +0200672#endif /* CONFIG_STRICT_DEVMEM */
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700673
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700674int phys_mem_access_prot_allowed(struct file *file, unsigned long pfn,
675 unsigned long size, pgprot_t *vma_prot)
676{
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100677 enum page_cache_mode pcm = _PAGE_CACHE_MODE_WB;
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700678
Venki Pallipadi0124cec2008-04-26 11:32:12 -0700679 if (!range_is_allowed(pfn, size))
680 return 0;
681
Christoph Hellwig6b2f3d12009-10-27 11:05:28 +0100682 if (file->f_flags & O_DSYNC)
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100683 pcm = _PAGE_CACHE_MODE_UC_MINUS;
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700684
685#ifdef CONFIG_X86_32
686 /*
687 * On the PPro and successors, the MTRRs are used to set
688 * memory types for physical addresses outside main memory,
689 * so blindly setting UC or PWT on those pages is wrong.
690 * For Pentiums and earlier, the surround logic should disable
691 * caching for the high addresses through the KEN pin, but
692 * we maintain the tradition of paranoia in this code.
693 */
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200694 if (!pat_enabled() &&
Andreas Herrmanncd7a4e92008-06-10 16:05:39 +0200695 !(boot_cpu_has(X86_FEATURE_MTRR) ||
696 boot_cpu_has(X86_FEATURE_K6_MTRR) ||
697 boot_cpu_has(X86_FEATURE_CYRIX_ARR) ||
698 boot_cpu_has(X86_FEATURE_CENTAUR_MCR)) &&
699 (pfn << PAGE_SHIFT) >= __pa(high_memory)) {
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100700 pcm = _PAGE_CACHE_MODE_UC;
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700701 }
702#endif
703
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700704 *vma_prot = __pgprot((pgprot_val(*vma_prot) & ~_PAGE_CACHE_MASK) |
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100705 cachemode2protval(pcm));
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700706 return 1;
707}
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700708
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800709/*
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800710 * Change the memory type for the physial address range in kernel identity
711 * mapping space if that range is a part of identity map.
712 */
Juergen Grossb14097b2014-11-03 14:01:58 +0100713int kernel_map_sync_memtype(u64 base, unsigned long size,
714 enum page_cache_mode pcm)
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800715{
716 unsigned long id_sz;
717
Dave Hansena25b9312013-01-22 13:24:30 -0800718 if (base > __pa(high_memory-1))
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800719 return 0;
720
Dave Hansen60f583d2013-03-07 08:31:51 -0800721 /*
722 * some areas in the middle of the kernel identity range
723 * are not mapped, like the PCI space.
724 */
725 if (!page_is_ram(base >> PAGE_SHIFT))
726 return 0;
727
Dave Hansena25b9312013-01-22 13:24:30 -0800728 id_sz = (__pa(high_memory-1) <= base + size) ?
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800729 __pa(high_memory) - base :
730 size;
731
Juergen Grossb14097b2014-11-03 14:01:58 +0100732 if (ioremap_change_attr((unsigned long)__va(base), id_sz, pcm) < 0) {
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200733 pr_info("x86/PAT: %s:%d ioremap_change_attr failed %s for [mem %#010Lx-%#010Lx]\n",
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800734 current->comm, current->pid,
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100735 cattr_name(pcm),
Bjorn Helgaas365811d2012-05-29 15:06:29 -0700736 base, (unsigned long long)(base + size-1));
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800737 return -EINVAL;
738 }
739 return 0;
740}
741
742/*
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800743 * Internal interface to reserve a range of physical memory with prot.
744 * Reserved non RAM regions only and after successful reserve_memtype,
745 * this func also keeps identity mapping (if any) in sync with this new prot.
746 */
venkatesh.pallipadi@intel.comcdecff62009-01-09 16:13:12 -0800747static int reserve_pfn_range(u64 paddr, unsigned long size, pgprot_t *vma_prot,
748 int strict_prot)
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800749{
750 int is_ram = 0;
Venkatesh Pallipadi7880f742009-02-24 17:35:13 -0800751 int ret;
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100752 enum page_cache_mode want_pcm = pgprot2cachemode(*vma_prot);
753 enum page_cache_mode pcm = want_pcm;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800754
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800755 is_ram = pat_pagerange_is_ram(paddr, paddr + size);
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800756
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800757 /*
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700758 * reserve_pfn_range() for RAM pages. We do not refcount to keep
759 * track of number of mappings of RAM pages. We can assert that
760 * the type requested matches the type of first page in the range.
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800761 */
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700762 if (is_ram) {
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200763 if (!pat_enabled())
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700764 return 0;
765
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100766 pcm = lookup_memtype(paddr);
767 if (want_pcm != pcm) {
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200768 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 -0700769 current->comm, current->pid,
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100770 cattr_name(want_pcm),
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700771 (unsigned long long)paddr,
Bjorn Helgaas365811d2012-05-29 15:06:29 -0700772 (unsigned long long)(paddr + size - 1),
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100773 cattr_name(pcm));
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700774 *vma_prot = __pgprot((pgprot_val(*vma_prot) &
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100775 (~_PAGE_CACHE_MASK)) |
776 cachemode2protval(pcm));
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700777 }
Pallipadi, Venkatesh4bb9c5c2009-03-12 17:45:27 -0700778 return 0;
Venkatesh Pallipadid886c732009-07-10 09:57:41 -0700779 }
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800780
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100781 ret = reserve_memtype(paddr, paddr + size, want_pcm, &pcm);
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800782 if (ret)
783 return ret;
784
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100785 if (pcm != want_pcm) {
Suresh Siddha1adcaaf2009-08-17 13:23:50 -0700786 if (strict_prot ||
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100787 !is_new_memtype_allowed(paddr, size, want_pcm, pcm)) {
venkatesh.pallipadi@intel.comcdecff62009-01-09 16:13:12 -0800788 free_memtype(paddr, paddr + size);
Luis R. Rodriguez9e765612015-05-26 10:28:11 +0200789 pr_err("x86/PAT: %s:%d map pfn expected mapping type %s for [mem %#010Lx-%#010Lx], got %s\n",
790 current->comm, current->pid,
791 cattr_name(want_pcm),
792 (unsigned long long)paddr,
793 (unsigned long long)(paddr + size - 1),
794 cattr_name(pcm));
venkatesh.pallipadi@intel.comcdecff62009-01-09 16:13:12 -0800795 return -EINVAL;
796 }
797 /*
798 * We allow returning different type than the one requested in
799 * non strict case.
800 */
801 *vma_prot = __pgprot((pgprot_val(*vma_prot) &
802 (~_PAGE_CACHE_MASK)) |
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100803 cachemode2protval(pcm));
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800804 }
805
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100806 if (kernel_map_sync_memtype(paddr, size, pcm) < 0) {
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800807 free_memtype(paddr, paddr + size);
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800808 return -EINVAL;
809 }
810 return 0;
811}
812
813/*
814 * Internal interface to free a range of physical memory.
815 * Frees non RAM regions only.
816 */
817static void free_pfn_range(u64 paddr, unsigned long size)
818{
819 int is_ram;
820
Suresh Siddhabe03d9e2009-02-11 11:20:23 -0800821 is_ram = pat_pagerange_is_ram(paddr, paddr + size);
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800822 if (is_ram == 0)
823 free_memtype(paddr, paddr + size);
824}
825
826/*
Suresh Siddha5180da42012-10-08 16:28:29 -0700827 * track_pfn_copy is called when vma that is covering the pfnmap gets
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800828 * copied through copy_page_range().
829 *
830 * If the vma has a linear pfn mapping for the entire range, we get the prot
831 * from pte and reserve the entire vma range with single reserve_pfn_range call.
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800832 */
Suresh Siddha5180da42012-10-08 16:28:29 -0700833int track_pfn_copy(struct vm_area_struct *vma)
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800834{
H. Peter Anvinc1c15b62008-12-23 10:10:40 -0800835 resource_size_t paddr;
venkatesh.pallipadi@intel.com982d7892008-12-19 13:47:28 -0800836 unsigned long prot;
Pallipadi, Venkatesh4b065042009-04-08 15:37:16 -0700837 unsigned long vma_size = vma->vm_end - vma->vm_start;
venkatesh.pallipadi@intel.comcdecff62009-01-09 16:13:12 -0800838 pgprot_t pgprot;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800839
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -0700840 if (vma->vm_flags & VM_PAT) {
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800841 /*
venkatesh.pallipadi@intel.com982d7892008-12-19 13:47:28 -0800842 * reserve the whole chunk covered by vma. We need the
843 * starting address and protection from pte.
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800844 */
Pallipadi, Venkatesh4b065042009-04-08 15:37:16 -0700845 if (follow_phys(vma, vma->vm_start, 0, &prot, &paddr)) {
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800846 WARN_ON_ONCE(1);
venkatesh.pallipadi@intel.com982d7892008-12-19 13:47:28 -0800847 return -EINVAL;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800848 }
venkatesh.pallipadi@intel.comcdecff62009-01-09 16:13:12 -0800849 pgprot = __pgprot(prot);
850 return reserve_pfn_range(paddr, vma_size, &pgprot, 1);
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800851 }
852
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800853 return 0;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800854}
855
856/*
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800857 * prot is passed in as a parameter for the new mapping. If the vma has a
858 * linear pfn mapping for the entire range reserve the entire vma range with
859 * single reserve_pfn_range call.
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800860 */
Suresh Siddha5180da42012-10-08 16:28:29 -0700861int track_pfn_remap(struct vm_area_struct *vma, pgprot_t *prot,
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -0700862 unsigned long pfn, unsigned long addr, unsigned long size)
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800863{
Suresh Siddhab1a86e12012-10-08 16:28:23 -0700864 resource_size_t paddr = (resource_size_t)pfn << PAGE_SHIFT;
Juergen Gross2a374692014-11-03 14:01:55 +0100865 enum page_cache_mode pcm;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800866
Suresh Siddhab1a86e12012-10-08 16:28:23 -0700867 /* reserve the whole chunk starting from paddr */
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -0700868 if (addr == vma->vm_start && size == (vma->vm_end - vma->vm_start)) {
869 int ret;
870
871 ret = reserve_pfn_range(paddr, size, prot, 0);
872 if (!ret)
873 vma->vm_flags |= VM_PAT;
874 return ret;
875 }
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800876
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200877 if (!pat_enabled())
Venkatesh Pallipadi108763762009-07-10 09:57:40 -0700878 return 0;
879
Suresh Siddha5180da42012-10-08 16:28:29 -0700880 /*
881 * For anything smaller than the vma size we set prot based on the
882 * lookup.
883 */
Juergen Gross2a374692014-11-03 14:01:55 +0100884 pcm = lookup_memtype(paddr);
Suresh Siddha5180da42012-10-08 16:28:29 -0700885
886 /* Check memtype for the remaining pages */
887 while (size > PAGE_SIZE) {
888 size -= PAGE_SIZE;
889 paddr += PAGE_SIZE;
Juergen Gross2a374692014-11-03 14:01:55 +0100890 if (pcm != lookup_memtype(paddr))
Suresh Siddha5180da42012-10-08 16:28:29 -0700891 return -EINVAL;
892 }
893
894 *prot = __pgprot((pgprot_val(vma->vm_page_prot) & (~_PAGE_CACHE_MASK)) |
Juergen Gross2a374692014-11-03 14:01:55 +0100895 cachemode2protval(pcm));
Suresh Siddha5180da42012-10-08 16:28:29 -0700896
897 return 0;
898}
899
900int track_pfn_insert(struct vm_area_struct *vma, pgprot_t *prot,
901 unsigned long pfn)
902{
Juergen Gross2a374692014-11-03 14:01:55 +0100903 enum page_cache_mode pcm;
Suresh Siddha5180da42012-10-08 16:28:29 -0700904
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200905 if (!pat_enabled())
Suresh Siddha5180da42012-10-08 16:28:29 -0700906 return 0;
907
908 /* Set prot based on lookup */
Juergen Gross2a374692014-11-03 14:01:55 +0100909 pcm = lookup_memtype((resource_size_t)pfn << PAGE_SHIFT);
Venkatesh Pallipadi108763762009-07-10 09:57:40 -0700910 *prot = __pgprot((pgprot_val(vma->vm_page_prot) & (~_PAGE_CACHE_MASK)) |
Juergen Gross2a374692014-11-03 14:01:55 +0100911 cachemode2protval(pcm));
Venkatesh Pallipadi108763762009-07-10 09:57:40 -0700912
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800913 return 0;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800914}
915
916/*
Suresh Siddha5180da42012-10-08 16:28:29 -0700917 * untrack_pfn is called while unmapping a pfnmap for a region.
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800918 * untrack can be called for a specific region indicated by pfn and size or
Suresh Siddhab1a86e12012-10-08 16:28:23 -0700919 * can be for the entire vma (in which case pfn, size are zero).
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800920 */
Suresh Siddha5180da42012-10-08 16:28:29 -0700921void untrack_pfn(struct vm_area_struct *vma, unsigned long pfn,
922 unsigned long size)
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800923{
H. Peter Anvinc1c15b62008-12-23 10:10:40 -0800924 resource_size_t paddr;
Suresh Siddhab1a86e12012-10-08 16:28:23 -0700925 unsigned long prot;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800926
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -0700927 if (!(vma->vm_flags & VM_PAT))
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800928 return;
Suresh Siddhab1a86e12012-10-08 16:28:23 -0700929
930 /* free the chunk starting from pfn or the whole chunk */
931 paddr = (resource_size_t)pfn << PAGE_SHIFT;
932 if (!paddr && !size) {
933 if (follow_phys(vma, vma->vm_start, 0, &prot, &paddr)) {
934 WARN_ON_ONCE(1);
935 return;
936 }
937
938 size = vma->vm_end - vma->vm_start;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800939 }
Suresh Siddhab1a86e12012-10-08 16:28:23 -0700940 free_pfn_range(paddr, size);
Konstantin Khlebnikovb3b9c292012-10-08 16:28:34 -0700941 vma->vm_flags &= ~VM_PAT;
venkatesh.pallipadi@intel.com58993292008-12-18 11:41:30 -0800942}
943
venkatesh.pallipadi@intel.com2520bd32008-12-18 11:41:32 -0800944pgprot_t pgprot_writecombine(pgprot_t prot)
945{
Borislav Petkov7202fdb2015-06-04 18:55:11 +0200946 return __pgprot(pgprot_val(prot) |
Juergen Grosse00c8cc2014-11-03 14:01:59 +0100947 cachemode2protval(_PAGE_CACHE_MODE_WC));
venkatesh.pallipadi@intel.com2520bd32008-12-18 11:41:32 -0800948}
Ingo Molnar92b9af92009-02-28 14:09:27 +0100949EXPORT_SYMBOL_GPL(pgprot_writecombine);
venkatesh.pallipadi@intel.com2520bd32008-12-18 11:41:32 -0800950
Andreas Herrmann012f09e2008-08-06 16:23:08 +0200951#if defined(CONFIG_DEBUG_FS) && defined(CONFIG_X86_PAT)
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -0700952
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -0700953static struct memtype *memtype_get_idx(loff_t pos)
954{
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -0800955 struct memtype *print_entry;
956 int ret;
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -0700957
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -0800958 print_entry = kzalloc(sizeof(struct memtype), GFP_KERNEL);
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -0700959 if (!print_entry)
960 return NULL;
961
962 spin_lock(&memtype_lock);
Pallipadi, Venkatesh9e41a492010-02-10 15:26:07 -0800963 ret = rbt_memtype_copy_nth_element(print_entry, pos);
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -0700964 spin_unlock(&memtype_lock);
Ingo Molnarad2cde12008-09-30 13:20:45 +0200965
venkatesh.pallipadi@intel.combe5a0c12010-02-10 11:57:06 -0800966 if (!ret) {
967 return print_entry;
968 } else {
969 kfree(print_entry);
970 return NULL;
971 }
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -0700972}
973
974static void *memtype_seq_start(struct seq_file *seq, loff_t *pos)
975{
976 if (*pos == 0) {
977 ++*pos;
Rasmus Villemoes37367082014-11-28 22:03:41 +0100978 seq_puts(seq, "PAT memtype list:\n");
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -0700979 }
980
981 return memtype_get_idx(*pos);
982}
983
984static void *memtype_seq_next(struct seq_file *seq, void *v, loff_t *pos)
985{
986 ++*pos;
987 return memtype_get_idx(*pos);
988}
989
990static void memtype_seq_stop(struct seq_file *seq, void *v)
991{
992}
993
994static int memtype_seq_show(struct seq_file *seq, void *v)
995{
996 struct memtype *print_entry = (struct memtype *)v;
997
998 seq_printf(seq, "%s @ 0x%Lx-0x%Lx\n", cattr_name(print_entry->type),
999 print_entry->start, print_entry->end);
1000 kfree(print_entry);
Ingo Molnarad2cde12008-09-30 13:20:45 +02001001
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001002 return 0;
1003}
1004
Tobias Klauserd535e432009-09-04 15:53:09 +02001005static const struct seq_operations memtype_seq_ops = {
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001006 .start = memtype_seq_start,
1007 .next = memtype_seq_next,
1008 .stop = memtype_seq_stop,
1009 .show = memtype_seq_show,
1010};
1011
1012static int memtype_seq_open(struct inode *inode, struct file *file)
1013{
1014 return seq_open(file, &memtype_seq_ops);
1015}
1016
1017static const struct file_operations memtype_fops = {
1018 .open = memtype_seq_open,
1019 .read = seq_read,
1020 .llseek = seq_lseek,
1021 .release = seq_release,
1022};
1023
1024static int __init pat_memtype_list_init(void)
1025{
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +02001026 if (pat_enabled()) {
Xiaotian Fengdd4377b2009-11-26 19:53:48 +08001027 debugfs_create_file("pat_memtype_list", S_IRUSR,
1028 arch_debugfs_dir, NULL, &memtype_fops);
1029 }
venkatesh.pallipadi@intel.comfec09622008-07-18 16:08:14 -07001030 return 0;
1031}
1032
1033late_initcall(pat_memtype_list_init);
1034
Andreas Herrmann012f09e2008-08-06 16:23:08 +02001035#endif /* CONFIG_DEBUG_FS && CONFIG_X86_PAT */