util/ifdtool: Add Meteor Lake platform support under IFDv2

BUG=b:224325352
TEST=Able to build ifdtool.

Signed-off-by: Subrata Banik <subratabanik@google.com>
Change-Id: I3564efa27d0271286435284e745458aada987008
Reviewed-on: https://review.coreboot.org/c/coreboot/+/61274
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
diff --git a/util/ifdtool/ifdtool.c b/util/ifdtool/ifdtool.c
index a5c0b69..bc62b48 100644
--- a/util/ifdtool/ifdtool.c
+++ b/util/ifdtool/ifdtool.c
@@ -248,6 +248,7 @@
 	case PLATFORM_TGL:
 	case PLATFORM_ADL:
 	case PLATFORM_IFD2:
+	case PLATFORM_MTL:
 		return CHIPSET_500_600_SERIES_TIGER_ALDER_POINT;
 	case PLATFORM_ICL:
 		return CHIPSET_400_SERIES_ICE_POINT;
@@ -281,6 +282,7 @@
 		PLATFORM_ADL,
 		PLATFORM_SKLKBL,
 		PLATFORM_IFD2,
+		PLATFORM_MTL,
 	};
 	unsigned int i;
 
@@ -1232,6 +1234,7 @@
 	case PLATFORM_EHL:
 	case PLATFORM_ADL:
 	case PLATFORM_IFD2:
+	case PLATFORM_MTL:
 		/* CPU/BIOS can read descriptor and BIOS. */
 		fmba->flmstr1 |= (1 << REGION_DESC) << rd_shift;
 		fmba->flmstr1 |= (1 << REGION_BIOS) << rd_shift;
@@ -1974,6 +1977,8 @@
 				platform = PLATFORM_ADL;
 			} else if (!strcmp(optarg, "ifd2")) {
 				platform = PLATFORM_IFD2;
+			} else if (!strcmp(optarg, "mtl")) {
+				platform = PLATFORM_MTL;
 			} else {
 				fprintf(stderr, "Unknown platform: %s\n", optarg);
 				exit(EXIT_FAILURE);