From: Patrick Delaunay Date: Fri, 2 Aug 2019 13:07:19 +0000 (+0200) Subject: image: add new "copro" image type X-Git-Tag: v2019.10-rc4~31^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e7fabe75aec1380f7e2bd440a8477f0f15db528b;p=platform%2Fkernel%2Fu-boot.git image: add new "copro" image type Define new image type for coprocessor images. It is used in FIT to identify the files loaded with remoteproc command (elf or bin). Signed-off-by: Loic Pallardy Signed-off-by: Patrick Delaunay Reviewed-by: Simon Glass --- diff --git a/common/image.c b/common/image.c index 645584b..179eef0 100644 --- a/common/image.c +++ b/common/image.c @@ -176,6 +176,7 @@ static const table_entry_t uimage_type[] = { { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",}, { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" }, { IH_TYPE_MTKIMAGE, "mtk_image", "MediaTek BootROM loadable Image" }, + { IH_TYPE_COPRO, "copro", "Coprocessor Image"}, { -1, "", "", }, }; diff --git a/include/image.h b/include/image.h index 404b733..c1065c0 100644 --- a/include/image.h +++ b/include/image.h @@ -284,6 +284,7 @@ enum { IH_TYPE_MTKIMAGE, /* MediaTek BootROM loadable Image */ IH_TYPE_IMX8MIMAGE, /* Freescale IMX8MBoot Image */ IH_TYPE_IMX8IMAGE, /* Freescale IMX8Boot Image */ + IH_TYPE_COPRO, /* Coprocessor Image for remoteproc*/ IH_TYPE_COUNT, /* Number of image types */ };