Merge pull request #1781 from dtwlin/m2

spd: trusty: trusty_setup should bail on unknown image
This commit is contained in:
Antonio Niño Díaz 2019-01-25 10:30:36 +00:00 committed by GitHub
commit a1d1d24b78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -420,7 +420,8 @@ static int32_t trusty_setup(void)
} else if (instr >> 8 == 0xd53810U || instr >> 16 == 0x9400U) {
INFO("trusty: Found 64 bit image\n");
} else {
NOTICE("trusty: Found unknown image, 0x%x\n", instr);
ERROR("trusty: Found unknown image, 0x%x\n", instr);
return -1;
}
SET_PARAM_HEAD(ep_info, PARAM_EP, VERSION_1, SECURE | EP_ST_ENABLE);