diff options
author | danh-arm <dan.handley@arm.com> | 2015-08-21 15:28:30 +0100 |
---|---|---|
committer | danh-arm <dan.handley@arm.com> | 2015-08-21 15:28:30 +0100 |
commit | 468f808cb8967ffe69505a67c03405f1b1dc7bc6 (patch) | |
tree | 8956592be5bf742a2a5f9d04af826ca3ec784482 /include | |
parent | 42ed52d24ed51f7f8384398f1dd30b65304fc36e (diff) | |
parent | fedbc0497bb0407fc1d55430eae1938712f1afe8 (diff) |
Merge pull request #368 from jcastillo-arm/jc/genfw/1126
TBB: abort boot if BL3-2 cannot be authenticated
Diffstat (limited to 'include')
-rw-r--r-- | include/common/bl_common.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/common/bl_common.h b/include/common/bl_common.h index b1a9c8f6..66244ca9 100644 --- a/include/common/bl_common.h +++ b/include/common/bl_common.h @@ -202,6 +202,15 @@ typedef struct bl31_params { image_info_t *bl33_image_info; } bl31_params_t; +/* + * load_auth_image() return values + */ +enum { + LOAD_SUCCESS, /* Load + authentication success */ + LOAD_ERR, /* Load error */ + LOAD_AUTH_ERR /* Authentication error */ +}; + /* * Compile time assertions related to the 'entry_point_info' structure to |