aboutsummaryrefslogtreecommitdiff
path: root/bl2
diff options
context:
space:
mode:
authorTamas Ban <tamas.ban@arm.com>2020-10-01 10:54:48 +0100
committerTamas Ban <tamas.ban@arm.com>2020-10-02 09:26:02 +0000
commit37aedb51b80af13ef03e53fb162c66488ec67bff (patch)
tree8ebc09dd0531558fc9d49408c25b92c62b5795be /bl2
parent1ff8dcbc5d45aa1bcc3c015d0160b2f78044b6ce (diff)
downloadtrusted-firmware-m-37aedb51b80af13ef03e53fb162c66488ec67bff.tar.gz
Build: Fix CC312 init skip issue on Musca-B1/S1
Accidentally the initialization of CC312 crypto accelerator was skipped on Musca boards. Therefore at execution the CPU stuck in an infinite loop. Signed-off-by: Tamas Ban <tamas.ban@arm.com> Change-Id: I29e8c8b1ace300a7d44efb1dcd1ffe86e1becb21
Diffstat (limited to 'bl2')
-rw-r--r--bl2/ext/mcuboot/bl2_main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/bl2/ext/mcuboot/bl2_main.c b/bl2/ext/mcuboot/bl2_main.c
index fcaab36fb0..d0f1577bc8 100644
--- a/bl2/ext/mcuboot/bl2_main.c
+++ b/bl2/ext/mcuboot/bl2_main.c
@@ -96,6 +96,7 @@ int main(void)
/* Perform platform specific initialization */
if (boot_platform_init() != 0) {
+ BOOT_LOG_ERR("Platform init failed");
while (1)
;
}