2008-03-19 00:00:14 +00:00
|
|
|
/*
|
|
|
|
* Handle caching attributes in page tables (PAT)
|
|
|
|
*
|
|
|
|
* Authors: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
|
|
|
|
* Suresh B Siddha <suresh.b.siddha@intel.com>
|
|
|
|
*
|
|
|
|
* Loosely based on earlier PAT patchset from Eric Biederman and Andi Kleen.
|
|
|
|
*/
|
|
|
|
|
2008-09-30 11:20:45 +00:00
|
|
|
#include <linux/seq_file.h>
|
|
|
|
#include <linux/bootmem.h>
|
|
|
|
#include <linux/debugfs.h>
|
2008-03-19 00:00:14 +00:00
|
|
|
#include <linux/kernel.h>
|
2009-02-28 13:09:27 +00:00
|
|
|
#include <linux/module.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/slab.h>
|
2008-09-30 11:20:45 +00:00
|
|
|
#include <linux/mm.h>
|
2008-03-19 00:00:14 +00:00
|
|
|
#include <linux/fs.h>
|
2009-07-10 16:57:36 +00:00
|
|
|
#include <linux/rbtree.h>
|
2008-03-19 00:00:14 +00:00
|
|
|
|
2008-09-30 11:20:45 +00:00
|
|
|
#include <asm/cacheflush.h>
|
2008-03-19 00:00:14 +00:00
|
|
|
#include <asm/processor.h>
|
2008-09-30 11:20:45 +00:00
|
|
|
#include <asm/tlbflush.h>
|
2009-11-19 20:23:41 +00:00
|
|
|
#include <asm/x86_init.h>
|
2008-03-19 00:00:14 +00:00
|
|
|
#include <asm/pgtable.h>
|
|
|
|
#include <asm/fcntl.h>
|
2008-09-30 11:20:45 +00:00
|
|
|
#include <asm/e820.h>
|
2008-03-19 00:00:14 +00:00
|
|
|
#include <asm/mtrr.h>
|
2008-09-30 11:20:45 +00:00
|
|
|
#include <asm/page.h>
|
|
|
|
#include <asm/msr.h>
|
|
|
|
#include <asm/pat.h>
|
2008-03-19 00:00:21 +00:00
|
|
|
#include <asm/io.h>
|
2008-03-19 00:00:14 +00:00
|
|
|
|
2010-02-10 19:57:06 +00:00
|
|
|
#include "pat_internal.h"
|
|
|
|
|
2008-05-08 07:18:43 +00:00
|
|
|
#ifdef CONFIG_X86_PAT
|
2008-06-10 14:06:21 +00:00
|
|
|
int __read_mostly pat_enabled = 1;
|
2008-03-19 00:00:14 +00:00
|
|
|
|
2009-04-10 20:47:17 +00:00
|
|
|
static inline void pat_disable(const char *reason)
|
2008-03-19 00:00:14 +00:00
|
|
|
{
|
2008-06-10 14:06:21 +00:00
|
|
|
pat_enabled = 0;
|
2008-05-08 07:18:43 +00:00
|
|
|
printk(KERN_INFO "%s\n", reason);
|
2008-03-19 00:00:14 +00:00
|
|
|
}
|
|
|
|
|
2008-05-29 07:01:28 +00:00
|
|
|
static int __init nopat(char *str)
|
2008-03-19 00:00:14 +00:00
|
|
|
{
|
2008-05-08 07:18:43 +00:00
|
|
|
pat_disable("PAT support disabled.");
|
2008-03-19 00:00:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2008-05-08 07:18:43 +00:00
|
|
|
early_param("nopat", nopat);
|
2009-01-23 00:17:05 +00:00
|
|
|
#else
|
|
|
|
static inline void pat_disable(const char *reason)
|
|
|
|
{
|
|
|
|
(void)reason;
|
|
|
|
}
|
2008-05-08 07:18:43 +00:00
|
|
|
#endif
|
|
|
|
|
2008-05-06 02:09:10 +00:00
|
|
|
|
2010-02-10 19:57:06 +00:00
|
|
|
int pat_debug_enable;
|
2008-09-30 11:20:45 +00:00
|
|
|
|
2008-05-06 02:09:10 +00:00
|
|
|
static int __init pat_debug_setup(char *str)
|
|
|
|
{
|
2010-02-10 19:57:06 +00:00
|
|
|
pat_debug_enable = 1;
|
2008-05-06 02:09:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
__setup("debugpat", pat_debug_setup);
|
|
|
|
|
2008-05-08 07:18:43 +00:00
|
|
|
static u64 __read_mostly boot_pat_state;
|
2008-03-19 00:00:14 +00:00
|
|
|
|
|
|
|
enum {
|
|
|
|
PAT_UC = 0, /* uncached */
|
|
|
|
PAT_WC = 1, /* Write combining */
|
|
|
|
PAT_WT = 4, /* Write Through */
|
|
|
|
PAT_WP = 5, /* Write Protected */
|
|
|
|
PAT_WB = 6, /* Write Back (default) */
|
|
|
|
PAT_UC_MINUS = 7, /* UC, but can be overriden by MTRR */
|
|
|
|
};
|
|
|
|
|
2008-06-10 14:05:39 +00:00
|
|
|
#define PAT(x, y) ((u64)PAT_ ## y << ((x)*8))
|
2008-03-19 00:00:14 +00:00
|
|
|
|
|
|
|
void pat_init(void)
|
|
|
|
{
|
|
|
|
u64 pat;
|
2009-09-23 22:35:35 +00:00
|
|
|
bool boot_cpu = !boot_pat_state;
|
2008-03-19 00:00:14 +00:00
|
|
|
|
2008-06-10 14:06:21 +00:00
|
|
|
if (!pat_enabled)
|
2008-03-19 00:00:14 +00:00
|
|
|
return;
|
|
|
|
|
2009-01-23 00:17:05 +00:00
|
|
|
if (!cpu_has_pat) {
|
|
|
|
if (!boot_pat_state) {
|
|
|
|
pat_disable("PAT not supported by CPU.");
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* If this happens we are on a secondary CPU, but
|
|
|
|
* switched to PAT on the boot CPU. We have no way to
|
|
|
|
* undo PAT.
|
|
|
|
*/
|
|
|
|
printk(KERN_ERR "PAT enabled, "
|
|
|
|
"but not supported by secondary CPU\n");
|
|
|
|
BUG();
|
|
|
|
}
|
2008-05-08 07:18:43 +00:00
|
|
|
}
|
2008-03-19 00:00:14 +00:00
|
|
|
|
|
|
|
/* Set PWT to Write-Combining. All other bits stay the same */
|
|
|
|
/*
|
|
|
|
* PTE encoding used in Linux:
|
|
|
|
* PAT
|
|
|
|
* |PCD
|
|
|
|
* ||PWT
|
|
|
|
* |||
|
|
|
|
* 000 WB _PAGE_CACHE_WB
|
|
|
|
* 001 WC _PAGE_CACHE_WC
|
|
|
|
* 010 UC- _PAGE_CACHE_UC_MINUS
|
|
|
|
* 011 UC _PAGE_CACHE_UC
|
|
|
|
* PAT bit unused
|
|
|
|
*/
|
2008-06-10 14:05:39 +00:00
|
|
|
pat = PAT(0, WB) | PAT(1, WC) | PAT(2, UC_MINUS) | PAT(3, UC) |
|
|
|
|
PAT(4, WB) | PAT(5, WC) | PAT(6, UC_MINUS) | PAT(7, UC);
|
2008-03-19 00:00:14 +00:00
|
|
|
|
|
|
|
/* Boot CPU check */
|
2008-05-08 07:18:43 +00:00
|
|
|
if (!boot_pat_state)
|
2008-03-19 00:00:14 +00:00
|
|
|
rdmsrl(MSR_IA32_CR_PAT, boot_pat_state);
|
|
|
|
|
|
|
|
wrmsrl(MSR_IA32_CR_PAT, pat);
|
2009-09-23 22:35:35 +00:00
|
|
|
|
|
|
|
if (boot_cpu)
|
|
|
|
printk(KERN_INFO "x86 PAT enabled: cpu %d, old 0x%Lx, new 0x%Lx\n",
|
|
|
|
smp_processor_id(), boot_pat_state, pat);
|
2008-03-19 00:00:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#undef PAT
|
|
|
|
|
2010-02-10 23:26:07 +00:00
|
|
|
static DEFINE_SPINLOCK(memtype_lock); /* protects memtype accesses */
|
2009-07-10 16:57:36 +00:00
|
|
|
|
2008-03-19 00:00:14 +00:00
|
|
|
/*
|
|
|
|
* Does intersection of PAT memory type and MTRR memory type and returns
|
|
|
|
* the resulting memory type as PAT understands it.
|
|
|
|
* (Type in pat and mtrr will not have same value)
|
|
|
|
* The intersection is based on "Effective Memory Type" tables in IA-32
|
|
|
|
* SDM vol 3a
|
|
|
|
*/
|
2008-06-16 17:42:43 +00:00
|
|
|
static unsigned long pat_x_mtrr_type(u64 start, u64 end, unsigned long req_type)
|
2008-03-19 00:00:14 +00:00
|
|
|
{
|
x86: fix Xorg crash with xf86MapVidMem error
Clarify the usage of mtrr_lookup() in PAT code, and to make PAT code
resilient to mtrr lookup problems.
Specifically, pat_x_mtrr_type() is restructured to highlight, under what
conditions we look for mtrr hint. pat_x_mtrr_type() uses a default type
when there are any errors in mtrr lookup (still maintaining the pat
consistency). And, reserve_memtype() highlights its usage ot mtrr_lookup
for request type of '-1' and also defaults in a sane way on any mtrr
lookup failure.
pat.c looks at mtrr type of a range to get a hint on what mapping type
to request when user/API: (1) hasn't specified any type (/dev/mem
mapping) and we do not want to take performance hit by always mapping
UC_MINUS. This will be the case for /dev/mem mappings used to map BIOS
area or ACPI region which are WB'able. In this case, as long as MTRR is
not WB, PAT will request UC_MINUS for such mappings.
(2) user/API requests WB mapping while in reality MTRR may have UC or
WC. In this case, PAT can map as WB (without checking MTRR) and still
effective type will be UC or WC. But, a subsequent request to map same
region as UC or WC may fail, as the region will get trackked as WB in
PAT list. Looking at MTRR hint helps us to track based on effective type
rather than what user requested. Again, here mtrr_lookup is only used as
hint and we fallback to WB mapping (as requested by user) as default.
In both cases, after using the mtrr hint, we still go through the
memtype list to make sure there are no inconsistencies among multiple
users.
Signed-off-by: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
Signed-off-by: Suresh Siddha <suresh.b.siddha@intel.com>
Tested-by: Rufus & Azrael <rufus-azrael@numericable.fr>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-05-29 19:01:44 +00:00
|
|
|
/*
|
|
|
|
* Look for MTRR hint to get the effective type in case where PAT
|
|
|
|
* request is for WB.
|
|
|
|
*/
|
2008-06-18 13:38:57 +00:00
|
|
|
if (req_type == _PAGE_CACHE_WB) {
|
|
|
|
u8 mtrr_type;
|
|
|
|
|
|
|
|
mtrr_type = mtrr_type_lookup(start, end);
|
2009-04-09 21:26:51 +00:00
|
|
|
if (mtrr_type != MTRR_TYPE_WRBACK)
|
|
|
|
return _PAGE_CACHE_UC_MINUS;
|
|
|
|
|
|
|
|
return _PAGE_CACHE_WB;
|
2008-06-18 13:38:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return req_type;
|
2008-03-19 00:00:14 +00:00
|
|
|
}
|
|
|
|
|
2012-05-25 21:12:46 +00:00
|
|
|
struct pagerange_state {
|
|
|
|
unsigned long cur_pfn;
|
|
|
|
int ram;
|
|
|
|
int not_ram;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
|
|
|
pagerange_is_ram_callback(unsigned long initial_pfn, unsigned long total_nr_pages, void *arg)
|
|
|
|
{
|
|
|
|
struct pagerange_state *state = arg;
|
|
|
|
|
|
|
|
state->not_ram |= initial_pfn > state->cur_pfn;
|
|
|
|
state->ram |= total_nr_pages > 0;
|
|
|
|
state->cur_pfn = initial_pfn + total_nr_pages;
|
|
|
|
|
|
|
|
return state->ram && state->not_ram;
|
|
|
|
}
|
|
|
|
|
2010-07-22 05:57:35 +00:00
|
|
|
static int pat_pagerange_is_ram(resource_size_t start, resource_size_t end)
|
2009-02-11 19:20:23 +00:00
|
|
|
{
|
2012-05-25 21:12:46 +00:00
|
|
|
int ret = 0;
|
|
|
|
unsigned long start_pfn = start >> PAGE_SHIFT;
|
|
|
|
unsigned long end_pfn = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
|
|
|
|
struct pagerange_state state = {start_pfn, 0, 0};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For legacy reasons, physical address range in the legacy ISA
|
|
|
|
* region is tracked as non-RAM. This will allow users of
|
|
|
|
* /dev/mem to map portions of legacy ISA region, even when
|
|
|
|
* some of those portions are listed(or not even listed) with
|
|
|
|
* different e820 types(RAM/reserved/..)
|
|
|
|
*/
|
|
|
|
if (start_pfn < ISA_END_ADDRESS >> PAGE_SHIFT)
|
|
|
|
start_pfn = ISA_END_ADDRESS >> PAGE_SHIFT;
|
|
|
|
|
|
|
|
if (start_pfn < end_pfn) {
|
|
|
|
ret = walk_system_ram_range(start_pfn, end_pfn - start_pfn,
|
|
|
|
&state, pagerange_is_ram_callback);
|
2009-02-11 19:20:23 +00:00
|
|
|
}
|
|
|
|
|
2012-05-25 21:12:46 +00:00
|
|
|
return (ret > 0) ? -1 : (state.ram ? 1 : 0);
|
2009-02-11 19:20:23 +00:00
|
|
|
}
|
|
|
|
|
2008-09-24 15:53:33 +00:00
|
|
|
/*
|
2009-07-10 16:57:38 +00:00
|
|
|
* For RAM pages, we use page flags to mark the pages with appropriate type.
|
|
|
|
* Here we do two pass:
|
|
|
|
* - Find the memtype of all the pages in the range, look for any conflicts
|
|
|
|
* - In case of no conflicts, set the new memtype for pages in the range
|
2008-09-24 15:53:33 +00:00
|
|
|
*/
|
|
|
|
static int reserve_ram_pages_type(u64 start, u64 end, unsigned long req_type,
|
2008-09-30 11:20:45 +00:00
|
|
|
unsigned long *new_type)
|
2008-09-24 15:53:33 +00:00
|
|
|
{
|
|
|
|
struct page *page;
|
2009-07-10 16:57:38 +00:00
|
|
|
u64 pfn;
|
|
|
|
|
|
|
|
if (req_type == _PAGE_CACHE_UC) {
|
|
|
|
/* We do not support strong UC */
|
|
|
|
WARN_ON_ONCE(1);
|
|
|
|
req_type = _PAGE_CACHE_UC_MINUS;
|
|
|
|
}
|
2008-09-24 15:53:33 +00:00
|
|
|
|
|
|
|
for (pfn = (start >> PAGE_SHIFT); pfn < (end >> PAGE_SHIFT); ++pfn) {
|
2009-07-10 16:57:38 +00:00
|
|
|
unsigned long type;
|
2008-09-24 15:53:33 +00:00
|
|
|
|
2009-07-10 16:57:38 +00:00
|
|
|
page = pfn_to_page(pfn);
|
|
|
|
type = get_page_memtype(page);
|
|
|
|
if (type != -1) {
|
2012-05-29 22:06:29 +00:00
|
|
|
printk(KERN_INFO "reserve_ram_pages_type failed [mem %#010Lx-%#010Lx], track 0x%lx, req 0x%lx\n",
|
|
|
|
start, end - 1, type, req_type);
|
2009-07-10 16:57:38 +00:00
|
|
|
if (new_type)
|
|
|
|
*new_type = type;
|
|
|
|
|
|
|
|
return -EBUSY;
|
|
|
|
}
|
2008-09-24 15:53:33 +00:00
|
|
|
}
|
|
|
|
|
2009-07-10 16:57:38 +00:00
|
|
|
if (new_type)
|
|
|
|
*new_type = req_type;
|
|
|
|
|
|
|
|
for (pfn = (start >> PAGE_SHIFT); pfn < (end >> PAGE_SHIFT); ++pfn) {
|
2008-09-24 15:53:33 +00:00
|
|
|
page = pfn_to_page(pfn);
|
2009-07-10 16:57:38 +00:00
|
|
|
set_page_memtype(page, req_type);
|
2008-09-24 15:53:33 +00:00
|
|
|
}
|
2009-07-10 16:57:38 +00:00
|
|
|
return 0;
|
2008-09-24 15:53:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int free_ram_pages_type(u64 start, u64 end)
|
|
|
|
{
|
|
|
|
struct page *page;
|
2009-07-10 16:57:38 +00:00
|
|
|
u64 pfn;
|
2008-09-24 15:53:33 +00:00
|
|
|
|
|
|
|
for (pfn = (start >> PAGE_SHIFT); pfn < (end >> PAGE_SHIFT); ++pfn) {
|
|
|
|
page = pfn_to_page(pfn);
|
2009-07-10 16:57:38 +00:00
|
|
|
set_page_memtype(page, -1);
|
2008-09-24 15:53:33 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-03-19 00:00:21 +00:00
|
|
|
/*
|
|
|
|
* req_type typically has one of the:
|
|
|
|
* - _PAGE_CACHE_WB
|
|
|
|
* - _PAGE_CACHE_WC
|
|
|
|
* - _PAGE_CACHE_UC_MINUS
|
|
|
|
* - _PAGE_CACHE_UC
|
|
|
|
*
|
2008-06-20 20:01:49 +00:00
|
|
|
* If new_type is NULL, function will return an error if it cannot reserve the
|
|
|
|
* region with req_type. If new_type is non-NULL, function will return
|
|
|
|
* available type in new_type in case of no error. In case of any error
|
2008-03-19 00:00:21 +00:00
|
|
|
* it will return a negative return value.
|
|
|
|
*/
|
2008-03-19 00:00:14 +00:00
|
|
|
int reserve_memtype(u64 start, u64 end, unsigned long req_type,
|
2008-09-30 11:20:45 +00:00
|
|
|
unsigned long *new_type)
|
2008-03-19 00:00:14 +00:00
|
|
|
{
|
2010-02-10 19:57:06 +00:00
|
|
|
struct memtype *new;
|
2008-03-19 00:00:14 +00:00
|
|
|
unsigned long actual_type;
|
2008-09-24 15:53:33 +00:00
|
|
|
int is_range_ram;
|
2008-09-30 11:20:45 +00:00
|
|
|
int err = 0;
|
2008-03-19 00:00:14 +00:00
|
|
|
|
2008-09-30 11:20:45 +00:00
|
|
|
BUG_ON(start >= end); /* end is exclusive */
|
2008-06-20 20:03:06 +00:00
|
|
|
|
2008-06-10 14:06:21 +00:00
|
|
|
if (!pat_enabled) {
|
2008-03-19 00:00:21 +00:00
|
|
|
/* This is identical to page table setting without PAT */
|
2008-06-20 20:01:49 +00:00
|
|
|
if (new_type) {
|
2009-11-10 09:23:07 +00:00
|
|
|
if (req_type == _PAGE_CACHE_WC)
|
2009-07-10 16:57:32 +00:00
|
|
|
*new_type = _PAGE_CACHE_UC_MINUS;
|
2008-06-20 20:01:49 +00:00
|
|
|
else
|
|
|
|
*new_type = req_type & _PAGE_CACHE_MASK;
|
2008-03-19 00:00:21 +00:00
|
|
|
}
|
2008-03-19 00:00:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Low ISA region is always mapped WB in page table. No need to track */
|
2009-11-23 22:49:20 +00:00
|
|
|
if (x86_platform.is_untracked_pat_range(start, end)) {
|
2008-06-20 20:01:49 +00:00
|
|
|
if (new_type)
|
|
|
|
*new_type = _PAGE_CACHE_WB;
|
2008-03-19 00:00:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-04-09 21:26:51 +00:00
|
|
|
/*
|
|
|
|
* Call mtrr_lookup to get the type hint. This is an
|
|
|
|
* optimization for /dev/mem mmap'ers into WB memory (BIOS
|
|
|
|
* tools and ACPI tools). Use WB request for WB memory and use
|
|
|
|
* UC_MINUS otherwise.
|
|
|
|
*/
|
|
|
|
actual_type = pat_x_mtrr_type(start, end, req_type & _PAGE_CACHE_MASK);
|
2008-03-19 00:00:14 +00:00
|
|
|
|
2009-01-13 18:21:30 +00:00
|
|
|
if (new_type)
|
|
|
|
*new_type = actual_type;
|
|
|
|
|
2009-02-11 19:20:23 +00:00
|
|
|
is_range_ram = pat_pagerange_is_ram(start, end);
|
2009-07-10 16:57:38 +00:00
|
|
|
if (is_range_ram == 1) {
|
|
|
|
|
|
|
|
err = reserve_ram_pages_type(start, end, req_type, new_type);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
} else if (is_range_ram < 0) {
|
2008-09-24 15:53:33 +00:00
|
|
|
return -EINVAL;
|
2009-07-10 16:57:38 +00:00
|
|
|
}
|
2008-09-24 15:53:33 +00:00
|
|
|
|
2010-06-11 00:45:01 +00:00
|
|
|
new = kzalloc(sizeof(struct memtype), GFP_KERNEL);
|
2008-06-20 20:01:49 +00:00
|
|
|
if (!new)
|
2008-03-19 00:00:14 +00:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2008-09-30 11:20:45 +00:00
|
|
|
new->start = start;
|
|
|
|
new->end = end;
|
|
|
|
new->type = actual_type;
|
2008-03-19 00:00:14 +00:00
|
|
|
|
|
|
|
spin_lock(&memtype_lock);
|
|
|
|
|
2010-02-10 23:26:07 +00:00
|
|
|
err = rbt_memtype_check_insert(new, new_type);
|
2008-03-19 00:00:14 +00:00
|
|
|
if (err) {
|
2012-05-29 22:06:29 +00:00
|
|
|
printk(KERN_INFO "reserve_memtype failed [mem %#010Lx-%#010Lx], track %s, req %s\n",
|
|
|
|
start, end - 1,
|
|
|
|
cattr_name(new->type), cattr_name(req_type));
|
2008-06-20 20:01:49 +00:00
|
|
|
kfree(new);
|
2008-03-19 00:00:14 +00:00
|
|
|
spin_unlock(&memtype_lock);
|
2008-09-30 11:20:45 +00:00
|
|
|
|
2008-03-19 00:00:14 +00:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
spin_unlock(&memtype_lock);
|
2008-06-20 20:04:02 +00:00
|
|
|
|
2012-05-29 22:06:29 +00:00
|
|
|
dprintk("reserve_memtype added [mem %#010Lx-%#010Lx], track %s, req %s, ret %s\n",
|
|
|
|
start, end - 1, cattr_name(new->type), cattr_name(req_type),
|
2008-06-20 20:04:02 +00:00
|
|
|
new_type ? cattr_name(*new_type) : "-");
|
|
|
|
|
2008-03-19 00:00:14 +00:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
int free_memtype(u64 start, u64 end)
|
|
|
|
{
|
|
|
|
int err = -EINVAL;
|
2008-09-24 15:53:33 +00:00
|
|
|
int is_range_ram;
|
2010-05-26 01:51:10 +00:00
|
|
|
struct memtype *entry;
|
2008-03-19 00:00:14 +00:00
|
|
|
|
2008-06-20 20:03:06 +00:00
|
|
|
if (!pat_enabled)
|
2008-03-19 00:00:14 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Low ISA region is always mapped WB. No need to track */
|
2009-11-23 22:49:20 +00:00
|
|
|
if (x86_platform.is_untracked_pat_range(start, end))
|
2008-03-19 00:00:14 +00:00
|
|
|
return 0;
|
|
|
|
|
2009-02-11 19:20:23 +00:00
|
|
|
is_range_ram = pat_pagerange_is_ram(start, end);
|
2009-07-10 16:57:38 +00:00
|
|
|
if (is_range_ram == 1) {
|
|
|
|
|
|
|
|
err = free_ram_pages_type(start, end);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
} else if (is_range_ram < 0) {
|
2008-09-24 15:53:33 +00:00
|
|
|
return -EINVAL;
|
2009-07-10 16:57:38 +00:00
|
|
|
}
|
2008-09-24 15:53:33 +00:00
|
|
|
|
2008-03-19 00:00:14 +00:00
|
|
|
spin_lock(&memtype_lock);
|
2010-05-26 01:51:10 +00:00
|
|
|
entry = rbt_memtype_erase(start, end);
|
2008-03-19 00:00:14 +00:00
|
|
|
spin_unlock(&memtype_lock);
|
|
|
|
|
2010-05-26 01:51:10 +00:00
|
|
|
if (!entry) {
|
2012-05-29 22:06:29 +00:00
|
|
|
printk(KERN_INFO "%s:%d freeing invalid memtype [mem %#010Lx-%#010Lx]\n",
|
|
|
|
current->comm, current->pid, start, end - 1);
|
2010-05-26 01:51:10 +00:00
|
|
|
return -EINVAL;
|
2008-03-19 00:00:14 +00:00
|
|
|
}
|
2008-03-19 00:00:25 +00:00
|
|
|
|
2010-05-26 01:51:10 +00:00
|
|
|
kfree(entry);
|
|
|
|
|
2012-05-29 22:06:29 +00:00
|
|
|
dprintk("free_memtype request [mem %#010Lx-%#010Lx]\n", start, end - 1);
|
2008-09-30 11:20:45 +00:00
|
|
|
|
2010-05-26 01:51:10 +00:00
|
|
|
return 0;
|
2008-03-19 00:00:14 +00:00
|
|
|
}
|
|
|
|
|
2008-03-19 00:00:20 +00:00
|
|
|
|
2009-07-10 16:57:39 +00:00
|
|
|
/**
|
|
|
|
* lookup_memtype - Looksup the memory type for a physical address
|
|
|
|
* @paddr: physical address of which memory type needs to be looked up
|
|
|
|
*
|
|
|
|
* Only to be called when PAT is enabled
|
|
|
|
*
|
|
|
|
* Returns _PAGE_CACHE_WB, _PAGE_CACHE_WC, _PAGE_CACHE_UC_MINUS or
|
|
|
|
* _PAGE_CACHE_UC
|
|
|
|
*/
|
|
|
|
static unsigned long lookup_memtype(u64 paddr)
|
|
|
|
{
|
|
|
|
int rettype = _PAGE_CACHE_WB;
|
|
|
|
struct memtype *entry;
|
|
|
|
|
2009-11-23 22:49:20 +00:00
|
|
|
if (x86_platform.is_untracked_pat_range(paddr, paddr + PAGE_SIZE))
|
2009-07-10 16:57:39 +00:00
|
|
|
return rettype;
|
|
|
|
|
|
|
|
if (pat_pagerange_is_ram(paddr, paddr + PAGE_SIZE)) {
|
|
|
|
struct page *page;
|
|
|
|
page = pfn_to_page(paddr >> PAGE_SHIFT);
|
|
|
|
rettype = get_page_memtype(page);
|
|
|
|
/*
|
|
|
|
* -1 from get_page_memtype() implies RAM page is in its
|
|
|
|
* default state and not reserved, and hence of type WB
|
|
|
|
*/
|
|
|
|
if (rettype == -1)
|
|
|
|
rettype = _PAGE_CACHE_WB;
|
|
|
|
|
|
|
|
return rettype;
|
|
|
|
}
|
|
|
|
|
|
|
|
spin_lock(&memtype_lock);
|
|
|
|
|
2010-02-10 23:26:07 +00:00
|
|
|
entry = rbt_memtype_lookup(paddr);
|
2009-07-10 16:57:39 +00:00
|
|
|
if (entry != NULL)
|
|
|
|
rettype = entry->type;
|
|
|
|
else
|
|
|
|
rettype = _PAGE_CACHE_UC_MINUS;
|
|
|
|
|
|
|
|
spin_unlock(&memtype_lock);
|
|
|
|
return rettype;
|
|
|
|
}
|
|
|
|
|
2009-07-10 16:57:34 +00:00
|
|
|
/**
|
|
|
|
* io_reserve_memtype - Request a memory type mapping for a region of memory
|
|
|
|
* @start: start (physical address) of the region
|
|
|
|
* @end: end (physical address) of the region
|
|
|
|
* @type: A pointer to memtype, with requested type. On success, requested
|
|
|
|
* or any other compatible type that was available for the region is returned
|
|
|
|
*
|
|
|
|
* On success, returns 0
|
|
|
|
* On failure, returns non-zero
|
|
|
|
*/
|
|
|
|
int io_reserve_memtype(resource_size_t start, resource_size_t end,
|
|
|
|
unsigned long *type)
|
|
|
|
{
|
2009-08-27 00:17:51 +00:00
|
|
|
resource_size_t size = end - start;
|
2009-07-10 16:57:34 +00:00
|
|
|
unsigned long req_type = *type;
|
|
|
|
unsigned long new_type;
|
|
|
|
int ret;
|
|
|
|
|
2009-08-27 00:17:51 +00:00
|
|
|
WARN_ON_ONCE(iomem_map_sanity_check(start, size));
|
2009-07-10 16:57:34 +00:00
|
|
|
|
|
|
|
ret = reserve_memtype(start, end, req_type, &new_type);
|
|
|
|
if (ret)
|
|
|
|
goto out_err;
|
|
|
|
|
2009-08-27 00:17:51 +00:00
|
|
|
if (!is_new_memtype_allowed(start, size, req_type, new_type))
|
2009-07-10 16:57:34 +00:00
|
|
|
goto out_free;
|
|
|
|
|
2009-08-27 00:17:51 +00:00
|
|
|
if (kernel_map_sync_memtype(start, size, new_type) < 0)
|
2009-07-10 16:57:34 +00:00
|
|
|
goto out_free;
|
|
|
|
|
|
|
|
*type = new_type;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
out_free:
|
|
|
|
free_memtype(start, end);
|
|
|
|
ret = -EBUSY;
|
|
|
|
out_err:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* io_free_memtype - Release a memory type mapping for a region of memory
|
|
|
|
* @start: start (physical address) of the region
|
|
|
|
* @end: end (physical address) of the region
|
|
|
|
*/
|
|
|
|
void io_free_memtype(resource_size_t start, resource_size_t end)
|
|
|
|
{
|
|
|
|
free_memtype(start, end);
|
|
|
|
}
|
|
|
|
|
2008-03-19 00:00:20 +00:00
|
|
|
pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
|
|
|
|
unsigned long size, pgprot_t vma_prot)
|
|
|
|
{
|
|
|
|
return vma_prot;
|
|
|
|
}
|
|
|
|
|
2008-07-17 22:26:59 +00:00
|
|
|
#ifdef CONFIG_STRICT_DEVMEM
|
|
|
|
/* This check is done in drivers/char/mem.c in case of STRICT_DEVMEM*/
|
2008-04-26 18:32:12 +00:00
|
|
|
static inline int range_is_allowed(unsigned long pfn, unsigned long size)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#else
|
2008-10-30 20:59:21 +00:00
|
|
|
/* This check is needed to avoid cache aliasing when PAT is enabled */
|
2008-04-26 18:32:12 +00:00
|
|
|
static inline int range_is_allowed(unsigned long pfn, unsigned long size)
|
|
|
|
{
|
|
|
|
u64 from = ((u64)pfn) << PAGE_SHIFT;
|
|
|
|
u64 to = from + size;
|
|
|
|
u64 cursor = from;
|
|
|
|
|
2008-10-30 20:59:21 +00:00
|
|
|
if (!pat_enabled)
|
|
|
|
return 1;
|
|
|
|
|
2008-04-26 18:32:12 +00:00
|
|
|
while (cursor < to) {
|
|
|
|
if (!devmem_is_allowed(pfn)) {
|
2012-05-29 22:06:29 +00:00
|
|
|
printk(KERN_INFO "Program %s tried to access /dev/mem between [mem %#010Lx-%#010Lx]\n",
|
|
|
|
current->comm, from, to - 1);
|
2008-04-26 18:32:12 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
cursor += PAGE_SIZE;
|
|
|
|
pfn++;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
2008-07-17 22:26:59 +00:00
|
|
|
#endif /* CONFIG_STRICT_DEVMEM */
|
2008-04-26 18:32:12 +00:00
|
|
|
|
2008-03-19 00:00:20 +00:00
|
|
|
int phys_mem_access_prot_allowed(struct file *file, unsigned long pfn,
|
|
|
|
unsigned long size, pgprot_t *vma_prot)
|
|
|
|
{
|
2009-04-09 21:26:52 +00:00
|
|
|
unsigned long flags = _PAGE_CACHE_WB;
|
2008-03-19 00:00:20 +00:00
|
|
|
|
2008-04-26 18:32:12 +00:00
|
|
|
if (!range_is_allowed(pfn, size))
|
|
|
|
return 0;
|
|
|
|
|
2009-10-27 10:05:28 +00:00
|
|
|
if (file->f_flags & O_DSYNC)
|
2008-08-20 23:45:52 +00:00
|
|
|
flags = _PAGE_CACHE_UC_MINUS;
|
2008-03-19 00:00:20 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_X86_32
|
|
|
|
/*
|
|
|
|
* On the PPro and successors, the MTRRs are used to set
|
|
|
|
* memory types for physical addresses outside main memory,
|
|
|
|
* so blindly setting UC or PWT on those pages is wrong.
|
|
|
|
* For Pentiums and earlier, the surround logic should disable
|
|
|
|
* caching for the high addresses through the KEN pin, but
|
|
|
|
* we maintain the tradition of paranoia in this code.
|
|
|
|
*/
|
2008-06-10 14:06:21 +00:00
|
|
|
if (!pat_enabled &&
|
2008-06-10 14:05:39 +00:00
|
|
|
!(boot_cpu_has(X86_FEATURE_MTRR) ||
|
|
|
|
boot_cpu_has(X86_FEATURE_K6_MTRR) ||
|
|
|
|
boot_cpu_has(X86_FEATURE_CYRIX_ARR) ||
|
|
|
|
boot_cpu_has(X86_FEATURE_CENTAUR_MCR)) &&
|
|
|
|
(pfn << PAGE_SHIFT) >= __pa(high_memory)) {
|
2008-03-19 00:00:21 +00:00
|
|
|
flags = _PAGE_CACHE_UC;
|
2008-03-19 00:00:20 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-03-19 00:00:21 +00:00
|
|
|
*vma_prot = __pgprot((pgprot_val(*vma_prot) & ~_PAGE_CACHE_MASK) |
|
|
|
|
flags);
|
2008-03-19 00:00:20 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2008-03-19 00:00:21 +00:00
|
|
|
|
2009-02-25 01:35:13 +00:00
|
|
|
/*
|
|
|
|
* Change the memory type for the physial address range in kernel identity
|
|
|
|
* mapping space if that range is a part of identity map.
|
|
|
|
*/
|
|
|
|
int kernel_map_sync_memtype(u64 base, unsigned long size, unsigned long flags)
|
|
|
|
{
|
|
|
|
unsigned long id_sz;
|
|
|
|
|
2013-01-22 21:24:30 +00:00
|
|
|
if (base > __pa(high_memory-1))
|
2009-02-25 01:35:13 +00:00
|
|
|
return 0;
|
|
|
|
|
2013-03-07 16:31:51 +00:00
|
|
|
/*
|
|
|
|
* some areas in the middle of the kernel identity range
|
|
|
|
* are not mapped, like the PCI space.
|
|
|
|
*/
|
|
|
|
if (!page_is_ram(base >> PAGE_SHIFT))
|
|
|
|
return 0;
|
|
|
|
|
2013-01-22 21:24:30 +00:00
|
|
|
id_sz = (__pa(high_memory-1) <= base + size) ?
|
2009-02-25 01:35:13 +00:00
|
|
|
__pa(high_memory) - base :
|
|
|
|
size;
|
|
|
|
|
|
|
|
if (ioremap_change_attr((unsigned long)__va(base), id_sz, flags) < 0) {
|
2012-05-29 22:06:29 +00:00
|
|
|
printk(KERN_INFO "%s:%d ioremap_change_attr failed %s "
|
|
|
|
"for [mem %#010Lx-%#010Lx]\n",
|
2009-02-25 01:35:13 +00:00
|
|
|
current->comm, current->pid,
|
|
|
|
cattr_name(flags),
|
2012-05-29 22:06:29 +00:00
|
|
|
base, (unsigned long long)(base + size-1));
|
2009-02-25 01:35:13 +00:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-12-18 19:41:30 +00:00
|
|
|
/*
|
|
|
|
* Internal interface to reserve a range of physical memory with prot.
|
|
|
|
* Reserved non RAM regions only and after successful reserve_memtype,
|
|
|
|
* this func also keeps identity mapping (if any) in sync with this new prot.
|
|
|
|
*/
|
2009-01-10 00:13:12 +00:00
|
|
|
static int reserve_pfn_range(u64 paddr, unsigned long size, pgprot_t *vma_prot,
|
|
|
|
int strict_prot)
|
2008-12-18 19:41:30 +00:00
|
|
|
{
|
|
|
|
int is_ram = 0;
|
2009-02-25 01:35:13 +00:00
|
|
|
int ret;
|
2009-01-10 00:13:12 +00:00
|
|
|
unsigned long want_flags = (pgprot_val(*vma_prot) & _PAGE_CACHE_MASK);
|
2009-04-09 21:26:52 +00:00
|
|
|
unsigned long flags = want_flags;
|
2008-12-18 19:41:30 +00:00
|
|
|
|
2009-02-11 19:20:23 +00:00
|
|
|
is_ram = pat_pagerange_is_ram(paddr, paddr + size);
|
2008-12-18 19:41:30 +00:00
|
|
|
|
2009-02-11 19:20:23 +00:00
|
|
|
/*
|
2009-07-10 16:57:41 +00:00
|
|
|
* reserve_pfn_range() for RAM pages. We do not refcount to keep
|
|
|
|
* track of number of mappings of RAM pages. We can assert that
|
|
|
|
* the type requested matches the type of first page in the range.
|
2009-02-11 19:20:23 +00:00
|
|
|
*/
|
2009-07-10 16:57:41 +00:00
|
|
|
if (is_ram) {
|
|
|
|
if (!pat_enabled)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
flags = lookup_memtype(paddr);
|
|
|
|
if (want_flags != flags) {
|
2012-05-29 22:06:29 +00:00
|
|
|
printk(KERN_WARNING "%s:%d map pfn RAM range req %s for [mem %#010Lx-%#010Lx], got %s\n",
|
2009-07-10 16:57:41 +00:00
|
|
|
current->comm, current->pid,
|
|
|
|
cattr_name(want_flags),
|
|
|
|
(unsigned long long)paddr,
|
2012-05-29 22:06:29 +00:00
|
|
|
(unsigned long long)(paddr + size - 1),
|
2009-07-10 16:57:41 +00:00
|
|
|
cattr_name(flags));
|
|
|
|
*vma_prot = __pgprot((pgprot_val(*vma_prot) &
|
|
|
|
(~_PAGE_CACHE_MASK)) |
|
|
|
|
flags);
|
|
|
|
}
|
2009-03-13 00:45:27 +00:00
|
|
|
return 0;
|
2009-07-10 16:57:41 +00:00
|
|
|
}
|
2008-12-18 19:41:30 +00:00
|
|
|
|
|
|
|
ret = reserve_memtype(paddr, paddr + size, want_flags, &flags);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if (flags != want_flags) {
|
x86, pat: Allow ISA memory range uncacheable mapping requests
Max Vozeler reported:
> Bug 13877 - bogl-term broken with CONFIG_X86_PAT=y, works with =n
>
> strace of bogl-term:
> 814 mmap2(NULL, 65536, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0)
> = -1 EAGAIN (Resource temporarily unavailable)
> 814 write(2, "bogl: mmaping /dev/fb0: Resource temporarily unavailable\n",
> 57) = 57
PAT code maps the ISA memory range as WB in the PAT attribute, so that
fixed range MTRR registers define the actual memory type (UC/WC/WT etc).
But the upper level is_new_memtype_allowed() API checks are failing,
as the request here is for UC and the return tracked type is WB (Tracked type is
WB as MTRR type for this legacy range potentially will be different for each
4k page).
Fix is_new_memtype_allowed() by always succeeding the ISA address range
checks, as the null PAT (WB) and def MTRR fixed range register settings
satisfy the memory type needs of the applications that map the ISA address
range.
Reported-and-Tested-by: Max Vozeler <xam@debian.org>
Signed-off-by: Suresh Siddha <suresh.b.siddha@intel.com>
Signed-off-by: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
2009-08-17 20:23:50 +00:00
|
|
|
if (strict_prot ||
|
|
|
|
!is_new_memtype_allowed(paddr, size, want_flags, flags)) {
|
2009-01-10 00:13:12 +00:00
|
|
|
free_memtype(paddr, paddr + size);
|
|
|
|
printk(KERN_ERR "%s:%d map pfn expected mapping type %s"
|
2012-05-29 22:06:29 +00:00
|
|
|
" for [mem %#010Lx-%#010Lx], got %s\n",
|
2009-01-10 00:13:12 +00:00
|
|
|
current->comm, current->pid,
|
|
|
|
cattr_name(want_flags),
|
|
|
|
(unsigned long long)paddr,
|
2012-05-29 22:06:29 +00:00
|
|
|
(unsigned long long)(paddr + size - 1),
|
2009-01-10 00:13:12 +00:00
|
|
|
cattr_name(flags));
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* We allow returning different type than the one requested in
|
|
|
|
* non strict case.
|
|
|
|
*/
|
|
|
|
*vma_prot = __pgprot((pgprot_val(*vma_prot) &
|
|
|
|
(~_PAGE_CACHE_MASK)) |
|
|
|
|
flags);
|
2008-12-18 19:41:30 +00:00
|
|
|
}
|
|
|
|
|
2009-02-25 01:35:13 +00:00
|
|
|
if (kernel_map_sync_memtype(paddr, size, flags) < 0) {
|
2008-12-18 19:41:30 +00:00
|
|
|
free_memtype(paddr, paddr + size);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Internal interface to free a range of physical memory.
|
|
|
|
* Frees non RAM regions only.
|
|
|
|
*/
|
|
|
|
static void free_pfn_range(u64 paddr, unsigned long size)
|
|
|
|
{
|
|
|
|
int is_ram;
|
|
|
|
|
2009-02-11 19:20:23 +00:00
|
|
|
is_ram = pat_pagerange_is_ram(paddr, paddr + size);
|
2008-12-18 19:41:30 +00:00
|
|
|
if (is_ram == 0)
|
|
|
|
free_memtype(paddr, paddr + size);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2012-10-08 23:28:29 +00:00
|
|
|
* track_pfn_copy is called when vma that is covering the pfnmap gets
|
2008-12-18 19:41:30 +00:00
|
|
|
* copied through copy_page_range().
|
|
|
|
*
|
|
|
|
* If the vma has a linear pfn mapping for the entire range, we get the prot
|
|
|
|
* from pte and reserve the entire vma range with single reserve_pfn_range call.
|
|
|
|
*/
|
2012-10-08 23:28:29 +00:00
|
|
|
int track_pfn_copy(struct vm_area_struct *vma)
|
2008-12-18 19:41:30 +00:00
|
|
|
{
|
2008-12-23 18:10:40 +00:00
|
|
|
resource_size_t paddr;
|
2008-12-19 21:47:28 +00:00
|
|
|
unsigned long prot;
|
2009-04-08 22:37:16 +00:00
|
|
|
unsigned long vma_size = vma->vm_end - vma->vm_start;
|
2009-01-10 00:13:12 +00:00
|
|
|
pgprot_t pgprot;
|
2008-12-18 19:41:30 +00:00
|
|
|
|
2012-10-08 23:28:34 +00:00
|
|
|
if (vma->vm_flags & VM_PAT) {
|
2008-12-18 19:41:30 +00:00
|
|
|
/*
|
2008-12-19 21:47:28 +00:00
|
|
|
* reserve the whole chunk covered by vma. We need the
|
|
|
|
* starting address and protection from pte.
|
2008-12-18 19:41:30 +00:00
|
|
|
*/
|
2009-04-08 22:37:16 +00:00
|
|
|
if (follow_phys(vma, vma->vm_start, 0, &prot, &paddr)) {
|
2008-12-18 19:41:30 +00:00
|
|
|
WARN_ON_ONCE(1);
|
2008-12-19 21:47:28 +00:00
|
|
|
return -EINVAL;
|
2008-12-18 19:41:30 +00:00
|
|
|
}
|
2009-01-10 00:13:12 +00:00
|
|
|
pgprot = __pgprot(prot);
|
|
|
|
return reserve_pfn_range(paddr, vma_size, &pgprot, 1);
|
2008-12-18 19:41:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* prot is passed in as a parameter for the new mapping. If the vma has a
|
|
|
|
* linear pfn mapping for the entire range reserve the entire vma range with
|
|
|
|
* single reserve_pfn_range call.
|
|
|
|
*/
|
2012-10-08 23:28:29 +00:00
|
|
|
int track_pfn_remap(struct vm_area_struct *vma, pgprot_t *prot,
|
2012-10-08 23:28:34 +00:00
|
|
|
unsigned long pfn, unsigned long addr, unsigned long size)
|
2008-12-18 19:41:30 +00:00
|
|
|
{
|
2012-10-08 23:28:23 +00:00
|
|
|
resource_size_t paddr = (resource_size_t)pfn << PAGE_SHIFT;
|
2009-07-10 16:57:40 +00:00
|
|
|
unsigned long flags;
|
2008-12-18 19:41:30 +00:00
|
|
|
|
2012-10-08 23:28:23 +00:00
|
|
|
/* reserve the whole chunk starting from paddr */
|
2012-10-08 23:28:34 +00:00
|
|
|
if (addr == vma->vm_start && size == (vma->vm_end - vma->vm_start)) {
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = reserve_pfn_range(paddr, size, prot, 0);
|
|
|
|
if (!ret)
|
|
|
|
vma->vm_flags |= VM_PAT;
|
|
|
|
return ret;
|
|
|
|
}
|
2008-12-18 19:41:30 +00:00
|
|
|
|
2009-07-10 16:57:40 +00:00
|
|
|
if (!pat_enabled)
|
|
|
|
return 0;
|
|
|
|
|
2012-10-08 23:28:29 +00:00
|
|
|
/*
|
|
|
|
* For anything smaller than the vma size we set prot based on the
|
|
|
|
* lookup.
|
|
|
|
*/
|
2012-10-08 23:28:23 +00:00
|
|
|
flags = lookup_memtype(paddr);
|
2012-10-08 23:28:29 +00:00
|
|
|
|
|
|
|
/* Check memtype for the remaining pages */
|
|
|
|
while (size > PAGE_SIZE) {
|
|
|
|
size -= PAGE_SIZE;
|
|
|
|
paddr += PAGE_SIZE;
|
|
|
|
if (flags != lookup_memtype(paddr))
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
*prot = __pgprot((pgprot_val(vma->vm_page_prot) & (~_PAGE_CACHE_MASK)) |
|
|
|
|
flags);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int track_pfn_insert(struct vm_area_struct *vma, pgprot_t *prot,
|
|
|
|
unsigned long pfn)
|
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
if (!pat_enabled)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Set prot based on lookup */
|
|
|
|
flags = lookup_memtype((resource_size_t)pfn << PAGE_SHIFT);
|
2009-07-10 16:57:40 +00:00
|
|
|
*prot = __pgprot((pgprot_val(vma->vm_page_prot) & (~_PAGE_CACHE_MASK)) |
|
|
|
|
flags);
|
|
|
|
|
2008-12-18 19:41:30 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2012-10-08 23:28:29 +00:00
|
|
|
* untrack_pfn is called while unmapping a pfnmap for a region.
|
2008-12-18 19:41:30 +00:00
|
|
|
* untrack can be called for a specific region indicated by pfn and size or
|
2012-10-08 23:28:23 +00:00
|
|
|
* can be for the entire vma (in which case pfn, size are zero).
|
2008-12-18 19:41:30 +00:00
|
|
|
*/
|
2012-10-08 23:28:29 +00:00
|
|
|
void untrack_pfn(struct vm_area_struct *vma, unsigned long pfn,
|
|
|
|
unsigned long size)
|
2008-12-18 19:41:30 +00:00
|
|
|
{
|
2008-12-23 18:10:40 +00:00
|
|
|
resource_size_t paddr;
|
2012-10-08 23:28:23 +00:00
|
|
|
unsigned long prot;
|
2008-12-18 19:41:30 +00:00
|
|
|
|
2012-10-08 23:28:34 +00:00
|
|
|
if (!(vma->vm_flags & VM_PAT))
|
2008-12-18 19:41:30 +00:00
|
|
|
return;
|
2012-10-08 23:28:23 +00:00
|
|
|
|
|
|
|
/* free the chunk starting from pfn or the whole chunk */
|
|
|
|
paddr = (resource_size_t)pfn << PAGE_SHIFT;
|
|
|
|
if (!paddr && !size) {
|
|
|
|
if (follow_phys(vma, vma->vm_start, 0, &prot, &paddr)) {
|
|
|
|
WARN_ON_ONCE(1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
size = vma->vm_end - vma->vm_start;
|
2008-12-18 19:41:30 +00:00
|
|
|
}
|
2012-10-08 23:28:23 +00:00
|
|
|
free_pfn_range(paddr, size);
|
2012-10-08 23:28:34 +00:00
|
|
|
vma->vm_flags &= ~VM_PAT;
|
2008-12-18 19:41:30 +00:00
|
|
|
}
|
|
|
|
|
2008-12-18 19:41:32 +00:00
|
|
|
pgprot_t pgprot_writecombine(pgprot_t prot)
|
|
|
|
{
|
|
|
|
if (pat_enabled)
|
|
|
|
return __pgprot(pgprot_val(prot) | _PAGE_CACHE_WC);
|
|
|
|
else
|
|
|
|
return pgprot_noncached(prot);
|
|
|
|
}
|
2009-02-28 13:09:27 +00:00
|
|
|
EXPORT_SYMBOL_GPL(pgprot_writecombine);
|
2008-12-18 19:41:32 +00:00
|
|
|
|
2008-08-06 14:23:08 +00:00
|
|
|
#if defined(CONFIG_DEBUG_FS) && defined(CONFIG_X86_PAT)
|
2008-07-18 23:08:14 +00:00
|
|
|
|
|
|
|
static struct memtype *memtype_get_idx(loff_t pos)
|
|
|
|
{
|
2010-02-10 19:57:06 +00:00
|
|
|
struct memtype *print_entry;
|
|
|
|
int ret;
|
2008-07-18 23:08:14 +00:00
|
|
|
|
2010-02-10 19:57:06 +00:00
|
|
|
print_entry = kzalloc(sizeof(struct memtype), GFP_KERNEL);
|
2008-07-18 23:08:14 +00:00
|
|
|
if (!print_entry)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
spin_lock(&memtype_lock);
|
2010-02-10 23:26:07 +00:00
|
|
|
ret = rbt_memtype_copy_nth_element(print_entry, pos);
|
2008-07-18 23:08:14 +00:00
|
|
|
spin_unlock(&memtype_lock);
|
2008-09-30 11:20:45 +00:00
|
|
|
|
2010-02-10 19:57:06 +00:00
|
|
|
if (!ret) {
|
|
|
|
return print_entry;
|
|
|
|
} else {
|
|
|
|
kfree(print_entry);
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-07-18 23:08:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void *memtype_seq_start(struct seq_file *seq, loff_t *pos)
|
|
|
|
{
|
|
|
|
if (*pos == 0) {
|
|
|
|
++*pos;
|
|
|
|
seq_printf(seq, "PAT memtype list:\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
return memtype_get_idx(*pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *memtype_seq_next(struct seq_file *seq, void *v, loff_t *pos)
|
|
|
|
{
|
|
|
|
++*pos;
|
|
|
|
return memtype_get_idx(*pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void memtype_seq_stop(struct seq_file *seq, void *v)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static int memtype_seq_show(struct seq_file *seq, void *v)
|
|
|
|
{
|
|
|
|
struct memtype *print_entry = (struct memtype *)v;
|
|
|
|
|
|
|
|
seq_printf(seq, "%s @ 0x%Lx-0x%Lx\n", cattr_name(print_entry->type),
|
|
|
|
print_entry->start, print_entry->end);
|
|
|
|
kfree(print_entry);
|
2008-09-30 11:20:45 +00:00
|
|
|
|
2008-07-18 23:08:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-09-04 13:53:09 +00:00
|
|
|
static const struct seq_operations memtype_seq_ops = {
|
2008-07-18 23:08:14 +00:00
|
|
|
.start = memtype_seq_start,
|
|
|
|
.next = memtype_seq_next,
|
|
|
|
.stop = memtype_seq_stop,
|
|
|
|
.show = memtype_seq_show,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int memtype_seq_open(struct inode *inode, struct file *file)
|
|
|
|
{
|
|
|
|
return seq_open(file, &memtype_seq_ops);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct file_operations memtype_fops = {
|
|
|
|
.open = memtype_seq_open,
|
|
|
|
.read = seq_read,
|
|
|
|
.llseek = seq_lseek,
|
|
|
|
.release = seq_release,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int __init pat_memtype_list_init(void)
|
|
|
|
{
|
2009-11-26 11:53:48 +00:00
|
|
|
if (pat_enabled) {
|
|
|
|
debugfs_create_file("pat_memtype_list", S_IRUSR,
|
|
|
|
arch_debugfs_dir, NULL, &memtype_fops);
|
|
|
|
}
|
2008-07-18 23:08:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
late_initcall(pat_memtype_list_init);
|
|
|
|
|
2008-08-06 14:23:08 +00:00
|
|
|
#endif /* CONFIG_DEBUG_FS && CONFIG_X86_PAT */
|