diff options
author | Simon Glass <sjg@chromium.org> | 2021-03-26 16:17:30 +1300 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2021-04-06 16:33:19 +1200 |
commit | 48f45455bf1955ca1b2ba89bda256af2803a7126 (patch) | |
tree | 798d913285fb2c37801ab8cb2ffeb0e723341371 /common | |
parent | 7570d9bb47be24d9d73518742703f32126af8113 (diff) | |
download | u-boot-48f45455bf1955ca1b2ba89bda256af2803a7126.tar.gz u-boot-48f45455bf1955ca1b2ba89bda256af2803a7126.tar.bz2 u-boot-48f45455bf1955ca1b2ba89bda256af2803a7126.zip |
Convert CONFIG_MISC_INIT_F to Kconfig
This converts the following to Kconfig:
CONFIG_MISC_INIT_F
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'common')
-rw-r--r-- | common/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig index 482f123534..0e36dfd236 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -527,6 +527,12 @@ config LAST_STAGE_INIT U-Boot calls last_stage_init() before the command-line interpreter is started. +config MISC_INIT_F + bool "Execute pre-relocation misc init" + help + Enabling this option calls the 'misc_init_f' function in the init + sequence just before DRAM is inited. + config MISC_INIT_R bool "Execute Misc Init" default y if ARCH_KEYSTONE || ARCH_SUNXI || MPC85xx |