Merge "feat(stm32mp1): only fuse monotonic counter on closed devices" into integration

This commit is contained in:
Madhukar Pappireddy 2024-01-30 15:40:49 +01:00 committed by TrustedFirmware Code Review
commit 84f9abecca

View file

@ -367,7 +367,9 @@ skip_console_init:
print_reset_reason();
#if STM32MP15
update_monotonic_counter();
if (stm32mp_check_closed_device() == STM32MP_CHIP_SEC_CLOSED) {
update_monotonic_counter();
}
#endif
stm32mp1_syscfg_enable_io_compensation_finish();