mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 17:44:19 +00:00
feat(st): disable authentication based on part_number
STM32MP15xA and STM32MP15xD chip part numbers don't support the secure boot. All functions linked to secure boot must not be used and signed binaries are not allowed on such chip. Signed-off-by: Lionel Debieve <lionel.debieve@st.com> Change-Id: I5b85f322f5eb3b64415e1819bd00fb2c99f20695
This commit is contained in:
parent
884a65064a
commit
49abdfd8ce
4 changed files with 34 additions and 4 deletions
|
@ -21,6 +21,7 @@ uint16_t stm32mp_get_boot_itf_selected(void);
|
|||
|
||||
bool stm32mp_is_single_core(void);
|
||||
bool stm32mp_is_closed_device(void);
|
||||
bool stm32mp_is_auth_supported(void);
|
||||
|
||||
/* Return the base address of the DDR controller */
|
||||
uintptr_t stm32mp_ddrctrl_base(void);
|
||||
|
|
|
@ -46,6 +46,11 @@ int stm32mp_auth_image(boot_api_image_header_t *header, uintptr_t buffer)
|
|||
INFO("Check signature on Open device\n");
|
||||
}
|
||||
|
||||
if (auth_ops == NULL) {
|
||||
ERROR("Device doesn't support image authentication\n");
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
|
||||
ret = mmap_add_dynamic_region(STM32MP_ROM_BASE, STM32MP_ROM_BASE,
|
||||
STM32MP_ROM_SIZE_2MB_ALIGNED, MT_CODE | MT_SECURE);
|
||||
if (ret != 0) {
|
||||
|
|
|
@ -333,11 +333,14 @@ skip_console_init:
|
|||
|
||||
stm32_iwdg_refresh();
|
||||
|
||||
stm32mp1_auth_ops.check_key = boot_context->bootrom_ecdsa_check_key;
|
||||
stm32mp1_auth_ops.verify_signature =
|
||||
boot_context->bootrom_ecdsa_verify_signature;
|
||||
if (stm32mp_is_auth_supported()) {
|
||||
stm32mp1_auth_ops.check_key =
|
||||
boot_context->bootrom_ecdsa_check_key;
|
||||
stm32mp1_auth_ops.verify_signature =
|
||||
boot_context->bootrom_ecdsa_verify_signature;
|
||||
|
||||
stm32mp_init_auth(&stm32mp1_auth_ops);
|
||||
stm32mp_init_auth(&stm32mp1_auth_ops);
|
||||
}
|
||||
|
||||
stm32mp1_arch_security_setup();
|
||||
|
||||
|
|
|
@ -443,6 +443,27 @@ bool stm32mp_is_closed_device(void)
|
|||
return (value & CFG0_CLOSED_DEVICE) == CFG0_CLOSED_DEVICE;
|
||||
}
|
||||
|
||||
/* Return true when device supports secure boot */
|
||||
bool stm32mp_is_auth_supported(void)
|
||||
{
|
||||
bool supported = false;
|
||||
|
||||
switch (get_part_number()) {
|
||||
case STM32MP151C_PART_NB:
|
||||
case STM32MP151F_PART_NB:
|
||||
case STM32MP153C_PART_NB:
|
||||
case STM32MP153F_PART_NB:
|
||||
case STM32MP157C_PART_NB:
|
||||
case STM32MP157F_PART_NB:
|
||||
supported = true;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return supported;
|
||||
}
|
||||
|
||||
uint32_t stm32_iwdg_get_instance(uintptr_t base)
|
||||
{
|
||||
switch (base) {
|
||||
|
|
Loading…
Add table
Reference in a new issue