blob: 2c0f691f8b54e5c79f4006430c29c9f215d341d5 [file] [log] [blame]
Patrice Chotardd29531c2023-10-27 16:43:04 +02001if STM32MP25X
2
3choice
4 prompt "STM32MP25x board select"
5 optional
6
7config TARGET_ST_STM32MP25X
8 bool "STMicroelectronics STM32MP25x boards"
9 imply BOOTSTAGE
10 imply CMD_BOOTSTAGE
11 help
12 target the STMicroelectronics board with SOC STM32MP25x
13 managed by board/st/stm32mp2
14 The difference between board are managed with devicetree
15
16endchoice
17
18config TEXT_BASE
19 default 0x84000000
20
21config PRE_CON_BUF_ADDR
22 default 0x84800000
23
24config PRE_CON_BUF_SZ
25 default 4096
26
27config BOOTSTAGE_STASH_ADDR
28 default 0x87000000
29
30if DEBUG_UART
31
32config DEBUG_UART_BOARD_INIT
33 default y
34
35# debug on USART2 by default
36config DEBUG_UART_BASE
37 default 0x400e0000
38
39endif
40
41source "board/st/stm32mp2/Kconfig"
42
43endif