summaryrefslogtreecommitdiffstats
path: root/util/ifdtool
diff options
context:
space:
mode:
authorSubrata Banik <subrata.banik@intel.com>2020-03-14 15:01:42 +0530
committerSubrata Banik <subrata.banik@intel.com>2020-08-01 06:55:25 +0000
commit46f807324916f223282e5c8fee1bfe4595eeb1f2 (patch)
tree93b1be0683e9b42ceb87f5f7bd41fa13cf6d61d4 /util/ifdtool
parenta717e2f8968e799521e293b8f1ddacc14c8b9d89 (diff)
downloadcoreboot-46f807324916f223282e5c8fee1bfe4595eeb1f2.tar.gz
coreboot-46f807324916f223282e5c8fee1bfe4595eeb1f2.tar.bz2
coreboot-46f807324916f223282e5c8fee1bfe4595eeb1f2.zip
util/ifdtool: Add Alderlake platform support under IFDv2
Change-Id: Ief8ab6ad280d8a2625404c19d57cd2a24f23cf13 Signed-off-by: Subrata Banik <subrata.banik@intel.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39533 Reviewed-by: Wonkyu Kim <wonkyu.kim@intel.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/ifdtool')
-rw-r--r--util/ifdtool/ifdtool.c4
-rw-r--r--util/ifdtool/ifdtool.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/util/ifdtool/ifdtool.c b/util/ifdtool/ifdtool.c
index f64dc7eb8230..7f4753d13f61 100644
--- a/util/ifdtool/ifdtool.c
+++ b/util/ifdtool/ifdtool.c
@@ -210,6 +210,7 @@ static int is_platform_ifd_2(void)
PLATFORM_ICL,
PLATFORM_TGL,
PLATFORM_JSL,
+ PLATFORM_ADL,
};
unsigned int i;
@@ -1018,6 +1019,7 @@ static void lock_descriptor(const char *filename, char *image, int size)
case PLATFORM_SKLKBL:
case PLATFORM_TGL:
case PLATFORM_JSL:
+ case PLATFORM_ADL:
/* CPU/BIOS can read descriptor and BIOS. */
fmba->flmstr1 |= (1 << REGION_DESC) << rd_shift;
fmba->flmstr1 |= (1 << REGION_BIOS) << rd_shift;
@@ -1689,6 +1691,8 @@ int main(int argc, char *argv[])
platform = PLATFORM_SKLKBL;
} else if (!strcmp(optarg, "tgl")) {
platform = PLATFORM_TGL;
+ } else if (!strcmp(optarg, "adl")) {
+ platform = PLATFORM_ADL;
} else {
fprintf(stderr, "Unknown platform: %s\n", optarg);
exit(EXIT_FAILURE);
diff --git a/util/ifdtool/ifdtool.h b/util/ifdtool/ifdtool.h
index 3b16d4984aa0..840d7fe42cbc 100644
--- a/util/ifdtool/ifdtool.h
+++ b/util/ifdtool/ifdtool.h
@@ -48,6 +48,7 @@ enum platform {
PLATFORM_JSL,
PLATFORM_SKLKBL,
PLATFORM_TGL,
+ PLATFORM_ADL,
};
#define LAYOUT_LINELEN 80