Tool/software:
Hi TI expert,
I'm using the MCU SDK: mcu_plus_sdk_am64x_10_00_00_20.
I have some questions for secure boot on AM64, I want to enable authenticaiton and encryption both for SBL and RTOS App.
Following screenshot shows the authentication steps while secure boot.
If I enable the secure boot, and generated a secure image of SBL(with x509 certificate), RBL(First bootloader) will do all steps for me, right? including steps 3&4(in yellow)?
But for application's secure boot, how can I enable all the steps? will the Bootloader driver's API(Bootloader_socAuthImage) do those?
will it 'load whole app images' -->'cacluate its hash'--->'compare with x509's hash'?
and what about the 'Step 4', when will be executed in Bootloader driver?
Hello,
If I enable the secure boot, and generated a secure image of SBL(with x509 certificate), RBL(First bootloader) will do all steps for me, right? including steps 3&4(in yellow)?
Yes, the ROM would authenticate and decrypt the SBL image (if encrypted).
But for application's secure boot, how can I enable all the steps? will the Bootloader driver's API(Bootloader_socAuthImage) do those?
This API requests the SYSFW for authentication of the image. The SYSFW would do the authentication and decrypt the image (if encrypted) as well.
Please have a look at the following guide as well:
Regards,
Prashant
Hi Prashant,
thanks a lot.
as you mentioned "API(Bootloader_socAuthImage) would do the authentication and decrypt the image (if encrypted) as well".
I'm curious about how it was achieved. Since after reading SBL code, I saw, after 'Bootloader_socAuthImage', '
I'm curious about how it was achieved. Since after reading SBL code, I saw, after 'Bootloader_socAuthImage', '
As I mentioned, this API requests the SYSFW, running on the DMSC core, for authentication of the image. If the SYSFW returns ACK, it means the image is authenticated and optionally decrypted successfully.