From: Andrew F. Davis Date: Mon, 31 Jul 2017 15:58:20 +0000 (-0500) Subject: image: Add TI PMMC image type X-Git-Tag: v2017.11-rc1~159 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6442c9643e82966ae8fff391bab3fcc763662564;p=u-boot image: Add TI PMMC image type Add a new image type representing TI Power Management Micro-Controller (PMMC) Firmware image type. Signed-off-by: Andrew F. Davis --- diff --git a/common/image.c b/common/image.c index a058eb85e1..332b5f2843 100644 --- a/common/image.c +++ b/common/image.c @@ -167,6 +167,7 @@ static const table_entry_t uimage_type[] = { { IH_TYPE_FPGA, "fpga", "FPGA Image" }, { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",}, { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" }, + { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",}, { -1, "", "", }, }; diff --git a/include/image.h b/include/image.h index 1f4bfda2f3..339f79c6dc 100644 --- a/include/image.h +++ b/include/image.h @@ -269,6 +269,7 @@ enum { IH_TYPE_VYBRIDIMAGE, /* VYBRID .vyb Image */ IH_TYPE_TEE, /* Trusted Execution Environment OS Image */ IH_TYPE_FIRMWARE_IVT, /* Firmware Image with HABv4 IVT */ + IH_TYPE_PMMC, /* TI Power Management Micro-Controller Firmware */ IH_TYPE_COUNT, /* Number of image types */ };