aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/intel/common/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/intel/common/common.h')
-rw-r--r--src/cpu/intel/common/common.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/cpu/intel/common/common.h b/src/cpu/intel/common/common.h
index 57a5fe602c..df14668095 100644
--- a/src/cpu/intel/common/common.h
+++ b/src/cpu/intel/common/common.h
@@ -3,7 +3,7 @@
#ifndef _CPU_INTEL_COMMON_H
#define _CPU_INTEL_COMMON_H
-#include <stdint.h>
+#include <types.h>
void set_vmx_and_lock(void);
void set_feature_ctrl_vmx(void);
@@ -18,6 +18,11 @@ struct cppc_config;
void cpu_init_cppc_config(struct cppc_config *config, u32 version);
/*
+ * Returns true if CPU supports Hyper-Threading.
+ */
+bool intel_ht_supported(void);
+
+/*
* Returns true if it's not thread 0 on a hyperthreading enabled core.
*/
bool intel_ht_sibling(void);