diff options
author | Yann Gautier <yann.gautier@foss.st.com> | 2022-06-09 17:34:30 +0200 |
---|---|---|
committer | Yann Gautier <yann.gautier@st.com> | 2022-09-23 15:17:43 +0200 |
commit | 00606df01201fcad509ea9ddff89d5f176bee793 (patch) | |
tree | 76afb0b8f3446246e47858a62a5c4663990f3ac6 /plat/st | |
parent | 484e846a03a1af5f88e2e28835b6349cc5977935 (diff) | |
download | arm-trusted-firmware-00606df01201fcad509ea9ddff89d5f176bee793.tar.gz |
feat(st): add trace for early console
When the early console is configured with STM32MP_EARLY_CONSOLE,
display a message indicating it is enabled.
Signed-off-by: Yann Gautier <yann.gautier@foss.st.com>
Change-Id: Iafdfa5afef27eba823d707841853a8a46de0b42d
Diffstat (limited to 'plat/st')
-rw-r--r-- | plat/st/common/stm32mp_common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plat/st/common/stm32mp_common.c b/plat/st/common/stm32mp_common.c index d922d3c84..9a955a64a 100644 --- a/plat/st/common/stm32mp_common.c +++ b/plat/st/common/stm32mp_common.c @@ -276,6 +276,7 @@ void stm32mp_setup_early_console(void) { plat_crash_console_init(); set_console(STM32MP_DEBUG_USART_BASE, STM32MP_DEBUG_USART_CLK_FRQ); + NOTICE("Early console setup\n"); } #endif /* STM32MP_EARLY_CONSOLE */ |