From 7898594b7c96a0330cb7e0a77beb1caa31d58532 Mon Sep 17 00:00:00 2001 From: Filip Lewiński Date: Mon, 15 Apr 2024 16:46:04 +0200 Subject: util/intelp2m: add Meteor Lake support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Enables parsing Meteor Lake inteltool output into gpio.h pad macros. Change-Id: Iaebd51d587507e68c6f263b92dc61cb6c0411bf8 Signed-off-by: Filip Lewiński Reviewed-on: https://review.coreboot.org/c/coreboot/+/81916 Reviewed-by: Maxim Tested-by: build bot (Jenkins) Reviewed-by: Michał Kopeć --- util/intelp2m/parser/parser.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'util/intelp2m/parser/parser.go') diff --git a/util/intelp2m/parser/parser.go b/util/intelp2m/parser/parser.go index a6fa315e0e..b7b41412e5 100644 --- a/util/intelp2m/parser/parser.go +++ b/util/intelp2m/parser/parser.go @@ -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()] } -- cgit v1.2.3