soc/intel: Add TGL-H CPUID

Change-Id: I5a76bcbd6661648a9284d683eb360ec956a9f9a6
This commit is contained in:
Jeremy Soller 2021-06-17 13:24:52 -06:00 committed by Tim Crawford
parent 805b903073
commit e5fbcd5c8e
3 changed files with 3 additions and 0 deletions

View File

@ -75,6 +75,7 @@ static const struct cpu_device_id cpu_table[] = {
{ X86_VENDOR_INTEL, CPUID_COMETLAKE_H_S_10_2_Q0 },
{ X86_VENDOR_INTEL, CPUID_TIGERLAKE_A0 },
{ X86_VENDOR_INTEL, CPUID_TIGERLAKE_B0 },
{ X86_VENDOR_INTEL, CPUID_TIGERLAKE_R0 },
{ X86_VENDOR_INTEL, CPUID_ELKHARTLAKE_A0 },
{ X86_VENDOR_INTEL, CPUID_ELKHARTLAKE_B0 },
{ X86_VENDOR_INTEL, CPUID_JASPERLAKE_A0 },

View File

@ -43,6 +43,7 @@
#define CPUID_COMETLAKE_H_S_10_2_Q0 0xa0655
#define CPUID_TIGERLAKE_A0 0x806c0
#define CPUID_TIGERLAKE_B0 0x806c1
#define CPUID_TIGERLAKE_R0 0x806d1
#define CPUID_ELKHARTLAKE_A0 0x90660
#define CPUID_ELKHARTLAKE_B0 0x90661
#define CPUID_ALDERLAKE_S_A0 0x90670

View File

@ -25,6 +25,7 @@ static struct {
} cpu_table[] = {
{ CPUID_TIGERLAKE_A0, "Tigerlake A0" },
{ CPUID_TIGERLAKE_B0, "Tigerlake B0" },
{ CPUID_TIGERLAKE_R0, "Tigerlake R0" },
};
static struct {