util/intelp2m: add Meteor Lake support

Enables parsing Meteor Lake inteltool output into gpio.h pad macros.

Change-Id: Iaebd51d587507e68c6f263b92dc61cb6c0411bf8
Signed-off-by: Filip Lewiński <filip.lewinski@3mdeb.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/81916
Reviewed-by: Maxim <max.senia.poliak@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Michał Kopeć <michal.kopec@3mdeb.com>
This commit is contained in:
Filip Lewiński
2024-04-15 16:46:04 +02:00
committed by Martin L Roth
parent c42e28f077
commit 7898594b7c
5 changed files with 149 additions and 1 deletions

View File

@ -14,6 +14,7 @@ import (
"review.coreboot.org/coreboot.git/util/intelp2m/platforms/tgl"
"review.coreboot.org/coreboot.git/util/intelp2m/platforms/adl"
"review.coreboot.org/coreboot.git/util/intelp2m/platforms/jsl"
"review.coreboot.org/coreboot.git/util/intelp2m/platforms/mtl"
"review.coreboot.org/coreboot.git/util/intelp2m/config"
)
@ -154,6 +155,7 @@ func (parser *ParserData) PlatformSpecificInterfaceSet() {
config.TigerType : tgl.PlatformSpecific{},
config.AlderType : adl.PlatformSpecific{},
config.JasperType : jsl.PlatformSpecific{},
config.MeteorType : mtl.PlatformSpecific{},
}
parser.platform = platform[config.PlatformGet()]
}