Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/61274 )
Change subject: util/ifdtool: Add Meteor Lake platform support under IFDv2 ......................................................................
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 --- M util/ifdtool/ifdtool.c M util/ifdtool/ifdtool.h 2 files changed, 6 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Tim Wawrzynczak: Looks good to me, approved Edward O'Callaghan: Looks good to me, but someone else must approve
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); diff --git a/util/ifdtool/ifdtool.h b/util/ifdtool/ifdtool.h index 67f31c3..1ee76f1 100644 --- a/util/ifdtool/ifdtool.h +++ b/util/ifdtool/ifdtool.h @@ -61,6 +61,7 @@ PLATFORM_ADL, PLATFORM_IFD2, PLATFORM_DNV, + PLATFORM_MTL, };
#define LAYOUT_LINELEN 80