Add bit definition for Indirect Target Selection (ITS_NO) bit 62, to allow ITS_NO to be added directly to a CPU model in the future.
Cc: Pawan Gupta <[email protected]> Signed-off-by: Jon Kohler <[email protected]> --- target/i386/cpu.h | 1 + 1 file changed, 1 insertion(+) diff --git a/target/i386/cpu.h b/target/i386/cpu.h index cee1f692a1..93f466fb2b 100644 --- a/target/i386/cpu.h +++ b/target/i386/cpu.h @@ -1245,6 +1245,7 @@ uint64_t x86_cpu_get_supported_feature_word(X86CPU *cpu, FeatureWord w); #define MSR_ARCH_CAP_PBRSB_NO (1U << 24) #define MSR_ARCH_CAP_GDS_NO (1U << 26) #define MSR_ARCH_CAP_RFDS_NO (1U << 27) +#define MSR_ARCH_CAP_ITS_NO (1U << 62) #define MSR_CORE_CAP_SPLIT_LOCK_DETECT (1U << 5) -- 2.43.0
