mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-14 22:16:03 +01:00
A valid memory location to stash bootstage information at will be architecture dependent. Move the existing defaults to the main Kconfig file for this option and set 0x0 as the default only for sandbox. Signed-off-by: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Rini <trini@konsulko.com>
41 lines
642 B
Plaintext
41 lines
642 B
Plaintext
if STM32MP25X
|
|
|
|
choice
|
|
prompt "STM32MP25x board select"
|
|
optional
|
|
|
|
config TARGET_ST_STM32MP25X
|
|
bool "STMicroelectronics STM32MP25x boards"
|
|
imply BOOTSTAGE
|
|
imply CMD_BOOTSTAGE
|
|
help
|
|
target the STMicroelectronics board with SOC STM32MP25x
|
|
managed by board/st/stm32mp2
|
|
The difference between board are managed with devicetree
|
|
|
|
endchoice
|
|
|
|
config TEXT_BASE
|
|
default 0x84000000
|
|
|
|
config PRE_CON_BUF_ADDR
|
|
default 0x84800000
|
|
|
|
config PRE_CON_BUF_SZ
|
|
default 4096
|
|
|
|
if DEBUG_UART
|
|
|
|
config DEBUG_UART_BOARD_INIT
|
|
default y
|
|
|
|
# debug on USART2 by default
|
|
config DEBUG_UART_BASE
|
|
default 0x400e0000
|
|
|
|
endif
|
|
|
|
source "board/st/stm32mp2/Kconfig"
|
|
|
|
endif
|