Commit f43ba3da8737949cd867eebfab1b3488802d764b

Authored by Andrew F. Davis
Committed by Lokesh Vutla
1 parent e70996a45e

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 <afd@ti.com>

Showing 2 changed files with 2 additions and 0 deletions Side-by-side Diff

... ... @@ -167,6 +167,7 @@
167 167 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
168 168 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
169 169 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
  170 + { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",},
170 171 { -1, "", "", },
171 172 };
172 173  
... ... @@ -282,6 +282,7 @@
282 282 IH_TYPE_VYBRIDIMAGE, /* VYBRID .vyb Image */
283 283 IH_TYPE_TEE, /* Trusted Execution Environment OS Image */
284 284 IH_TYPE_FIRMWARE_IVT, /* Firmware Image with HABv4 IVT */
  285 + IH_TYPE_PMMC, /* TI Power Management Micro-Controller Firmware */
285 286  
286 287 IH_TYPE_COUNT, /* Number of image types */
287 288 };