util/ifdtool: Add Jasperlake platform support under IFDv2

Change-Id: I4963ab249a8e0b31c014e92edf1e0a4a4f638084
Signed-off-by: rkanabar <ronak.kanabar@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/37111
Reviewed-by: Subrata Banik <subrata.banik@intel.com>
Reviewed-by: V Sowmya <v.sowmya@intel.com>
Reviewed-by: Aamir Bohra <aamir.bohra@intel.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
rkanabar 2019-08-30 11:40:08 +05:30 committed by Subrata Banik
parent 0bb83469ed
commit d64b04609d
2 changed files with 4 additions and 0 deletions

View File

@ -217,6 +217,7 @@ static int is_platform_ifd_2(void)
PLATFORM_CNL, PLATFORM_CNL,
PLATFORM_ICL, PLATFORM_ICL,
PLATFORM_TGL, PLATFORM_TGL,
PLATFORM_JSL,
}; };
unsigned int i; unsigned int i;
@ -1637,6 +1638,8 @@ int main(int argc, char *argv[])
platform = PLATFORM_GLK; platform = PLATFORM_GLK;
} else if (!strcmp(optarg, "icl")) { } else if (!strcmp(optarg, "icl")) {
platform = PLATFORM_ICL; platform = PLATFORM_ICL;
} else if (!strcmp(optarg, "jsl")) {
platform = PLATFORM_JSL;
} else if (!strcmp(optarg, "sklkbl")) { } else if (!strcmp(optarg, "sklkbl")) {
platform = PLATFORM_SKLKBL; platform = PLATFORM_SKLKBL;
} else if (!strcmp(optarg, "tgl")) { } else if (!strcmp(optarg, "tgl")) {

View File

@ -57,6 +57,7 @@ enum platform {
PLATFORM_CNL, PLATFORM_CNL,
PLATFORM_GLK, PLATFORM_GLK,
PLATFORM_ICL, PLATFORM_ICL,
PLATFORM_JSL,
PLATFORM_SKLKBL, PLATFORM_SKLKBL,
PLATFORM_TGL, PLATFORM_TGL,
}; };