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>
This commit is contained in:
parent
d3b85223fd
commit
ca82e6161a
|
@ -248,6 +248,7 @@ static enum ich_chipset ifd2_platform_to_chipset(const int pindex)
|
|||
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 @@ static int is_platform_ifd_2(void)
|
|||
PLATFORM_ADL,
|
||||
PLATFORM_SKLKBL,
|
||||
PLATFORM_IFD2,
|
||||
PLATFORM_MTL,
|
||||
};
|
||||
unsigned int i;
|
||||
|
||||
|
@ -1232,6 +1234,7 @@ static void lock_descriptor(const char *filename, char *image, int size)
|
|||
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 @@ int main(int argc, char *argv[])
|
|||
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);
|
||||
|
|
|
@ -61,6 +61,7 @@ enum platform {
|
|||
PLATFORM_ADL,
|
||||
PLATFORM_IFD2,
|
||||
PLATFORM_DNV,
|
||||
PLATFORM_MTL,
|
||||
};
|
||||
|
||||
#define LAYOUT_LINELEN 80
|
||||
|
|
Loading…
Reference in New Issue