[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] x86: also generate assembler usable equates for synthesized features
commit 06f083c826836a098f793db821845b313ad88a7f Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Tue Jun 21 12:01:18 2016 +0200 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Tue Jun 21 12:01:18 2016 +0200 x86: also generate assembler usable equates for synthesized features ... to make it possible to base alternative instruction patching upon such. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Tested-by: Dario Faggioli <dario.faggioli@xxxxxxxxxx> Reviewed-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- xen/arch/x86/sysctl.c | 3 ++- xen/include/asm-x86/cpufeature.h | 31 ++++++++++++++++--------------- xen/include/asm-x86/cpufeatureset.h | 8 +++++++- xen/include/asm-x86/cpuid.h | 5 +++-- xen/tools/gen-cpuid.py | 2 +- 5 files changed, 29 insertions(+), 20 deletions(-) diff --git a/xen/arch/x86/sysctl.c b/xen/arch/x86/sysctl.c index 9c75de6..14e7dc7 100644 --- a/xen/arch/x86/sysctl.c +++ b/xen/arch/x86/sysctl.c @@ -219,7 +219,8 @@ long arch_do_sysctl( } /* Clip the number of entries. */ - nr = min(sysctl->u.cpu_featureset.nr_features, FSCAPINTS); + nr = min_t(unsigned int, sysctl->u.cpu_featureset.nr_features, + FSCAPINTS); /* Look up requested featureset. */ if ( sysctl->u.cpu_featureset.index < ARRAY_SIZE(featureset_table) ) diff --git a/xen/include/asm-x86/cpufeature.h b/xen/include/asm-x86/cpufeature.h index 9c49206..dbdfc15 100644 --- a/xen/include/asm-x86/cpufeature.h +++ b/xen/include/asm-x86/cpufeature.h @@ -3,8 +3,23 @@ * * Defines x86 CPU feature bits */ +#if defined(XEN_CPUFEATURE) -#ifndef __ASM_I386_CPUFEATURE_H +/* Other features, Xen-defined mapping. */ +/* This range is used for feature bits which conflict or are synthesized */ +XEN_CPUFEATURE(CONSTANT_TSC, (FSCAPINTS+0)*32+ 0) /* TSC ticks at a constant rate */ +XEN_CPUFEATURE(NONSTOP_TSC, (FSCAPINTS+0)*32+ 1) /* TSC does not stop in C states */ +XEN_CPUFEATURE(ARAT, (FSCAPINTS+0)*32+ 2) /* Always running APIC timer */ +XEN_CPUFEATURE(ARCH_PERFMON, (FSCAPINTS+0)*32+ 3) /* Intel Architectural PerfMon */ +XEN_CPUFEATURE(TSC_RELIABLE, (FSCAPINTS+0)*32+ 4) /* TSC is known to be reliable */ +XEN_CPUFEATURE(XTOPOLOGY, (FSCAPINTS+0)*32+ 5) /* cpu topology enum extensions */ +XEN_CPUFEATURE(CPUID_FAULTING, (FSCAPINTS+0)*32+ 6) /* cpuid faulting */ +XEN_CPUFEATURE(CLFLUSH_MONITOR, (FSCAPINTS+0)*32+ 7) /* clflush reqd with monitor */ +XEN_CPUFEATURE(APERFMPERF, (FSCAPINTS+0)*32+ 8) /* APERFMPERF */ + +#define NCAPINTS (FSCAPINTS + 1) /* N 32-bit words worth of info */ + +#elif !defined(__ASM_I386_CPUFEATURE_H) #ifndef X86_FEATURES_ONLY #define __ASM_I386_CPUFEATURE_H #endif @@ -12,20 +27,6 @@ #include <xen/const.h> #include <asm/cpuid.h> -#define NCAPINTS (FSCAPINTS + 1) /* N 32-bit words worth of info */ - -/* Other features, Xen-defined mapping. */ -/* This range is used for feature bits which conflict or are synthesized */ -#define X86_FEATURE_CONSTANT_TSC ((FSCAPINTS+0)*32+ 0) /* TSC ticks at a constant rate */ -#define X86_FEATURE_NONSTOP_TSC ((FSCAPINTS+0)*32+ 1) /* TSC does not stop in C states */ -#define X86_FEATURE_ARAT ((FSCAPINTS+0)*32+ 2) /* Always running APIC timer */ -#define X86_FEATURE_ARCH_PERFMON ((FSCAPINTS+0)*32+ 3) /* Intel Architectural PerfMon */ -#define X86_FEATURE_TSC_RELIABLE ((FSCAPINTS+0)*32+ 4) /* TSC is known to be reliable */ -#define X86_FEATURE_XTOPOLOGY ((FSCAPINTS+0)*32+ 5) /* cpu topology enum extensions */ -#define X86_FEATURE_CPUID_FAULTING ((FSCAPINTS+0)*32+ 6) /* cpuid faulting */ -#define X86_FEATURE_CLFLUSH_MONITOR ((FSCAPINTS+0)*32+ 7) /* clflush reqd with monitor */ -#define X86_FEATURE_APERFMPERF ((FSCAPINTS+0)*32+ 8) /* APERFMPERF */ - #define cpufeat_word(idx) ((idx) / 32) #define cpufeat_bit(idx) ((idx) % 32) #define cpufeat_mask(idx) (_AC(1, U) << cpufeat_bit(idx)) diff --git a/xen/include/asm-x86/cpufeatureset.h b/xen/include/asm-x86/cpufeatureset.h index 22055d5..c54ff2b 100644 --- a/xen/include/asm-x86/cpufeatureset.h +++ b/xen/include/asm-x86/cpufeatureset.h @@ -3,19 +3,25 @@ #ifndef __ASSEMBLY__ +#include <xen/stringify.h> + #define XEN_CPUFEATURE(name, value) X86_FEATURE_##name = value, enum { #include <public/arch-x86/cpufeatureset.h> +#include <asm/cpufeature.h> }; #undef XEN_CPUFEATURE -#define XEN_CPUFEATURE(name, value) asm (".equ X86_FEATURE_" #name ", " #value); +#define XEN_CPUFEATURE(name, value) asm (".equ X86_FEATURE_" #name ", " \ + __stringify(value)); #include <public/arch-x86/cpufeatureset.h> +#include <asm/cpufeature.h> #else /* !__ASSEMBLY__ */ #define XEN_CPUFEATURE(name, value) .equ X86_FEATURE_##name, value #include <public/arch-x86/cpufeatureset.h> +#include <asm/cpufeature.h> #endif /* __ASSEMBLY__ */ diff --git a/xen/include/asm-x86/cpuid.h b/xen/include/asm-x86/cpuid.h index 9a21c25..8e3f639 100644 --- a/xen/include/asm-x86/cpuid.h +++ b/xen/include/asm-x86/cpuid.h @@ -1,12 +1,13 @@ #ifndef __X86_CPUID_H__ #define __X86_CPUID_H__ -#include <asm/cpufeatureset.h> #include <asm/cpuid-autogen.h> -#include <asm/percpu.h> #define FSCAPINTS FEATURESET_NR_ENTRIES +#include <asm/cpufeatureset.h> +#include <asm/percpu.h> + #define FEATURESET_1d 0 /* 0x00000001.edx */ #define FEATURESET_1c 1 /* 0x00000001.ecx */ #define FEATURESET_e1d 2 /* 0x80000001.edx */ diff --git a/xen/tools/gen-cpuid.py b/xen/tools/gen-cpuid.py index 92bbcdc..7c45eca 100755 --- a/xen/tools/gen-cpuid.py +++ b/xen/tools/gen-cpuid.py @@ -291,7 +291,7 @@ def write_results(state): state.output.write( """ -#define FEATURESET_NR_ENTRIES %sU +#define FEATURESET_NR_ENTRIES %s #define CPUID_COMMON_1D_FEATURES %s -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |