io_fip: add BL30 to FIP name to uuid table

BL30 needs an entry in the table in io_fip.c.  I made it #ifdef'd so
that ports that don't use a BL30 won't break.

Signed-off-by: Ryan Harkin <ryan.harkin@linaro.org>
This commit is contained in:
Ryan Harkin 2014-02-19 09:38:24 +00:00 committed by Sandrine Bailleux
parent ff956f179e
commit 4d5a115e2d
1 changed files with 3 additions and 0 deletions

View File

@ -64,6 +64,9 @@ typedef struct {
static plat_fip_name_uuid name_uuid[] = {
{BL2_IMAGE_NAME, UUID_TRUSTED_BOOT_FIRMWARE_BL2},
#ifdef BL30_IMAGE_NAME
{BL30_IMAGE_NAME, UUID_SCP_FIRMWARE_BL30},
#endif
{BL31_IMAGE_NAME, UUID_EL3_RUNTIME_FIRMWARE_BL31},
{BL32_IMAGE_NAME, UUID_SECURE_PAYLOAD_BL32},
{BL33_IMAGE_NAME, UUID_NON_TRUSTED_FIRMWARE_BL33},