summaryrefslogtreecommitdiff
path: root/util/intelp2m/config/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'util/intelp2m/config/config.go')
-rw-r--r--util/intelp2m/config/config.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/util/intelp2m/config/config.go b/util/intelp2m/config/config.go
index 62242b916c..051c5803b4 100644
--- a/util/intelp2m/config/config.go
+++ b/util/intelp2m/config/config.go
@@ -31,6 +31,7 @@ const (
TigerType uint8 = 4
AlderType uint8 = 5
JasperType uint8 = 6
+ MeteorType uint8 = 7
)
var key uint8 = SunriseType
@@ -43,6 +44,7 @@ var platform = map[string]uint8{
"tgl": TigerType,
"adl": AlderType,
"jsl": JasperType,
+ "mtl": MeteorType,
}
func PlatformSet(name string) int {
if platformType, valid := platform[name]; valid {
@@ -75,6 +77,9 @@ func IsPlatformTigerLake() bool {
func IsPlatformAlderLakeH() bool {
return IsPlatform(AlderType)
}
+func IsPlatformMeteorLake() bool {
+ return IsPlatform(MeteorType)
+}
var InputRegDumpFile *os.File = nil
var OutputGenFile *os.File = nil