diff options
Diffstat (limited to 'util/intelp2m/config')
-rw-r--r-- | util/intelp2m/config/config.go | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/util/intelp2m/config/config.go b/util/intelp2m/config/config.go index 7b491b1eb3..62242b916c 100644 --- a/util/intelp2m/config/config.go +++ b/util/intelp2m/config/config.go @@ -28,8 +28,9 @@ const ( LewisburgType uint8 = 1 ApolloType uint8 = 2 CannonType uint8 = 3 - AlderType uint8 = 4 - JasperType uint8 = 5 + TigerType uint8 = 4 + AlderType uint8 = 5 + JasperType uint8 = 6 ) var key uint8 = SunriseType @@ -39,6 +40,7 @@ var platform = map[string]uint8{ "lbg": LewisburgType, "apl": ApolloType, "cnl": CannonType, + "tgl": TigerType, "adl": AlderType, "jsl": JasperType, } @@ -67,6 +69,9 @@ func IsPlatformLewisburg() bool { func IsPlatformCannonLake() bool { return IsPlatform(CannonType) } +func IsPlatformTigerLake() bool { + return IsPlatform(TigerType) +} func IsPlatformAlderLakeH() bool { return IsPlatform(AlderType) } |