[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen staging] x86/pat: Simplify host PAT handling
commit b4a049acf658e516d10765dbe26a4582860c9df6 Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> AuthorDate: Thu May 24 14:09:49 2018 +0100 Commit: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> CommitDate: Thu Jun 28 11:31:00 2018 +0100 x86/pat: Simplify host PAT handling With the removal of the 32bit hypervisor build, host_pat is a constant value. Drop the variable and the redundant cpu_has_pat predicate, and use a define instead. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Reviewed-by: Jan Beulich <jbeulich@xxxxxxxx> Reviewed-by: Roger Pau Monné <roger.pau@xxxxxxxxxx> --- xen/arch/x86/acpi/suspend.c | 3 +-- xen/arch/x86/cpu/common.c | 9 +-------- xen/arch/x86/hvm/mtrr.c | 2 +- xen/include/asm-x86/cpufeature.h | 1 - xen/include/asm-x86/processor.h | 7 ++++++- 5 files changed, 9 insertions(+), 13 deletions(-) diff --git a/xen/arch/x86/acpi/suspend.c b/xen/arch/x86/acpi/suspend.c index 044bd81594..eecf357a9e 100644 --- a/xen/arch/x86/acpi/suspend.c +++ b/xen/arch/x86/acpi/suspend.c @@ -95,8 +95,7 @@ void restore_rest_processor_state(void) /* Reload FPU state on next FPU use. */ stts(); - if (cpu_has_pat) - wrmsrl(MSR_IA32_CR_PAT, host_pat); + wrmsrl(MSR_IA32_CR_PAT, XEN_MSR_PAT); mtrr_bp_restore(); } diff --git a/xen/arch/x86/cpu/common.c b/xen/arch/x86/cpu/common.c index 528aff1811..3548b12323 100644 --- a/xen/arch/x86/cpu/common.c +++ b/xen/arch/x86/cpu/common.c @@ -47,12 +47,6 @@ unsigned int paddr_bits __read_mostly = 36; unsigned int hap_paddr_bits __read_mostly = 36; unsigned int vaddr_bits __read_mostly = VADDR_BITS; -/* - * Default host IA32_CR_PAT value to cover all memory types. - * BIOS usually sets it to 0x07040600070406. - */ -u64 host_pat = 0x050100070406; - static unsigned int cleared_caps[NCAPINTS]; static unsigned int forced_caps[NCAPINTS]; @@ -814,8 +808,7 @@ void cpu_init(void) if (opt_cpu_info) printk("Initializing CPU#%d\n", cpu); - if (cpu_has_pat) - wrmsrl(MSR_IA32_CR_PAT, host_pat); + wrmsrl(MSR_IA32_CR_PAT, XEN_MSR_PAT); /* Install correct page table. */ write_ptbase(current); diff --git a/xen/arch/x86/hvm/mtrr.c b/xen/arch/x86/hvm/mtrr.c index a61cc1e6dc..c78e5c17ad 100644 --- a/xen/arch/x86/hvm/mtrr.c +++ b/xen/arch/x86/hvm/mtrr.c @@ -125,7 +125,7 @@ static int __init hvm_mtrr_pat_init(void) { for ( j = 0; j < PAT_TYPE_NUMS; j++ ) { - if ( pat_cr_2_paf(host_pat, j) == i ) + if ( pat_cr_2_paf(XEN_MSR_PAT, j) == i ) { pat_entry_tbl[i] = j; break; diff --git a/xen/include/asm-x86/cpufeature.h b/xen/include/asm-x86/cpufeature.h index 2cf8f7ea2a..2b1f03c70e 100644 --- a/xen/include/asm-x86/cpufeature.h +++ b/xen/include/asm-x86/cpufeature.h @@ -37,7 +37,6 @@ #define cpu_has_sep boot_cpu_has(X86_FEATURE_SEP) #define cpu_has_mtrr 1 #define cpu_has_pge 1 -#define cpu_has_pat 1 #define cpu_has_pse36 boot_cpu_has(X86_FEATURE_PSE36) #define cpu_has_clflush boot_cpu_has(X86_FEATURE_CLFLUSH) #define cpu_has_mmx 1 diff --git a/xen/include/asm-x86/processor.h b/xen/include/asm-x86/processor.h index 9924cdf1f3..ac1577c61e 100644 --- a/xen/include/asm-x86/processor.h +++ b/xen/include/asm-x86/processor.h @@ -97,6 +97,12 @@ X86_EFLAGS_NT|X86_EFLAGS_DF|X86_EFLAGS_IF| \ X86_EFLAGS_TF) +/* + * Host IA32_CR_PAT value to cover all memory types. This is not the default + * MSR_PAT value, and is an ABI with PV guests. + */ +#define XEN_MSR_PAT 0x050100070406ul + #ifndef __ASSEMBLY__ struct domain; @@ -145,7 +151,6 @@ extern bool probe_cpuid_faulting(void); extern void ctxt_switch_levelling(const struct vcpu *next); extern void (*ctxt_switch_masking)(const struct vcpu *next); -extern u64 host_pat; extern bool_t opt_cpu_info; extern u32 cpuid_ext_features; extern u64 trampoline_misc_enable_off; -- generated by git-patchbot for /home/xen/git/xen.git#staging _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |