446cf2
commit c712401bc641b66d9bd558884751d8979e2e0e96
446cf2
Author: H.J. Lu <hjl.tools@gmail.com>
446cf2
Date:   Thu Oct 8 08:38:03 2020 -0700
446cf2
446cf2
    <sys/platform/x86.h>: Add Intel HRESET support
446cf2
    
446cf2
    Add Intel HRESET support to <sys/platform/x86.h>.
446cf2
446cf2
diff --git a/manual/platform.texi b/manual/platform.texi
446cf2
index 283f255679643d3e..1e44525552f5bda5 100644
446cf2
--- a/manual/platform.texi
446cf2
+++ b/manual/platform.texi
446cf2
@@ -346,6 +346,9 @@ extensions.
446cf2
 @item
446cf2
 @code{HTT} -- Max APIC IDs reserved field is Valid.
446cf2
 
446cf2
+@item
446cf2
+@code{HRESET} -- History reset.
446cf2
+
446cf2
 @item
446cf2
 @code{HYBRID} -- Hybrid processor.
446cf2
 
446cf2
diff --git a/sysdeps/x86/sys/platform/x86.h b/sysdeps/x86/sys/platform/x86.h
446cf2
index 0942ad7a7f7d4ce2..357c6f1c5605d82d 100644
446cf2
--- a/sysdeps/x86/sys/platform/x86.h
446cf2
+++ b/sysdeps/x86/sys/platform/x86.h
446cf2
@@ -313,6 +313,7 @@ extern const struct cpu_features *__x86_get_cpu_features (unsigned int)
446cf2
 /* EAX.  */
446cf2
 #define bit_cpu_AVX_VNNI	(1u << 4)
446cf2
 #define bit_cpu_AVX512_BF16	(1u << 5)
446cf2
+#define bit_cpu_HRESET		(1u << 22)
446cf2
 
446cf2
 /* COMMON_CPUID_INDEX_19.  */
446cf2
 
446cf2
@@ -533,6 +534,7 @@ extern const struct cpu_features *__x86_get_cpu_features (unsigned int)
446cf2
 /* EAX.  */
446cf2
 #define index_cpu_AVX_VNNI	COMMON_CPUID_INDEX_7_ECX_1
446cf2
 #define index_cpu_AVX512_BF16	COMMON_CPUID_INDEX_7_ECX_1
446cf2
+#define index_cpu_HRESET	COMMON_CPUID_INDEX_7_ECX_1
446cf2
 
446cf2
 /* COMMON_CPUID_INDEX_19.  */
446cf2
 
446cf2
@@ -753,6 +755,7 @@ extern const struct cpu_features *__x86_get_cpu_features (unsigned int)
446cf2
 /* EAX.  */
446cf2
 #define reg_AVX_VNNI		eax
446cf2
 #define reg_AVX512_BF16		eax
446cf2
+#define reg_HRESET		eax
446cf2
 
446cf2
 /* COMMON_CPUID_INDEX_19.  */
446cf2
 
446cf2
diff --git a/sysdeps/x86/tst-get-cpu-features.c b/sysdeps/x86/tst-get-cpu-features.c
446cf2
index 8894d9f08ac36633..1516af1d461a801b 100644
446cf2
--- a/sysdeps/x86/tst-get-cpu-features.c
446cf2
+++ b/sysdeps/x86/tst-get-cpu-features.c
446cf2
@@ -221,6 +221,7 @@ do_test (void)
446cf2
   CHECK_CPU_FEATURE (WBNOINVD);
446cf2
   CHECK_CPU_FEATURE (AVX_VNNI);
446cf2
   CHECK_CPU_FEATURE (AVX512_BF16);
446cf2
+  CHECK_CPU_FEATURE (HRESET);
446cf2
   CHECK_CPU_FEATURE (AESKLE);
446cf2
   CHECK_CPU_FEATURE (WIDE_KL);
446cf2