This patch defines macros CPUINFO_features and CPUINFO_FEATURE_OFFSET.
CPUINFO_features can be used as the base of the offset for cpu features,
while CPUINFO_FEATURE_OFFSET is used to define the right offset for
specific CPU feature.
Signed-off-by: Feng Wu <feng.wu@intel.com>
Some further cleanup (both to the patch and to surrounding code).
Signed-off-by: Jan Beulich <jbeulich@suse.com>
#include <asm/fixmap.h>
#include <asm/page.h>
#include <asm/msr.h>
+#include <asm/cpufeature.h>
.text
.code32
mov $0x80000001,%eax
cpuid
1: mov %edx,sym_phys(cpuid_ext_features)
- mov %edx,sym_phys(boot_cpu_data)+CPUINFO86_ext_features
+ mov %edx,sym_phys(boot_cpu_data)+CPUINFO_FEATURE_OFFSET(X86_FEATURE_LM)
/* Check for availability of long mode. */
- bt $29,%edx
+ bt $X86_FEATURE_LM & 0x1f,%edx
jnc bad_cpu
/* Stash TSC to calculate a good approximation of time-since-boot */
OFFSET(IRQSTAT_softirq_pending, irq_cpustat_t, __softirq_pending);
BLANK();
- OFFSET(CPUINFO86_ext_features, struct cpuinfo_x86, x86_capability[1]);
+ OFFSET(CPUINFO_features, struct cpuinfo_x86, x86_capability);
BLANK();
OFFSET(MB_flags, multiboot_info_t, flags);
#define ASSERT_NOT_IN_ATOMIC
#endif
+#define CPUINFO_FEATURE_OFFSET(feature) \
+ ((((feature) >> 3) & ~3) + CPUINFO_features)
+
#else
#ifdef __clang__ /* clang's builtin assember can't do .subsection */
#ifndef __ASM_I386_CPUFEATURE_H
#define __ASM_I386_CPUFEATURE_H
+#ifndef __ASSEMBLY__
#include <xen/bitops.h>
+#endif
#define NCAPINTS 8 /* N 32-bit words worth of info */
#define X86_FEATURE_ADX (7*32+19) /* ADCX, ADOX instructions */
#define X86_FEATURE_SMAP (7*32+20) /* Supervisor Mode Access Prevention */
+#ifndef __ASSEMBLY__
#define cpu_has(c, bit) test_bit(bit, (c)->x86_capability)
#define boot_cpu_has(bit) test_bit(bit, boot_cpu_data.x86_capability)
#define cpufeat_mask(idx) (1u << ((idx) & 31))
#define cpu_has_vmx boot_cpu_has(X86_FEATURE_VMXE)
#define cpu_has_cpuid_faulting boot_cpu_has(X86_FEATURE_CPUID_FAULTING)
+#endif
#endif /* __ASM_I386_CPUFEATURE_H */