From: Pali Rohár Date: Fri, 6 May 2022 09:05:13 +0000 (+0200) Subject: arm: Add new config option ARCH_VERY_EARLY_INIT X-Git-Tag: v2022.07~51^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=948da7773e340fe76d4d1b9c635d724bf8661d30;p=platform%2Fkernel%2Fu-boot.git arm: Add new config option ARCH_VERY_EARLY_INIT When this option is set then ARM _main() function would call arch_very_early_init() function at the beginning. It would be before calling any other functions like debug_uart_init() and also before initializing C runtime environment. Signed-off-by: Pali Rohár Reviewed-by: Stefan Roese --- diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 0afec51..9898c7d 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -401,6 +401,12 @@ config SYS_ARM_CACHE_WRITEALLOC write is performed. endchoice +config ARCH_VERY_EARLY_INIT + bool + +config SPL_ARCH_VERY_EARLY_INIT + bool + config ARCH_CPU_INIT bool "Enable ARCH_CPU_INIT" help diff --git a/arch/arm/lib/crt0.S b/arch/arm/lib/crt0.S index ba31290..612a2d5 100644 --- a/arch/arm/lib/crt0.S +++ b/arch/arm/lib/crt0.S @@ -90,6 +90,11 @@ clbss_l:cmp r0, r1 /* while not at end of BSS */ ENTRY(_main) +/* Call arch_very_early_init before initializing C runtime environment. */ +#if CONFIG_IS_ENABLED(ARCH_VERY_EARLY_INIT) + bl arch_very_early_init +#endif + /* * Set up initial C runtime environment and call board_init_f(0). */