blob: 7d2d8171845bc933d473c855b48652014c3aea76 [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
Patrice Chotardd29531c2023-10-27 16:43:04 +020027if DEBUG_UART
28
29config DEBUG_UART_BOARD_INIT
30 default y
31
32# debug on USART2 by default
33config DEBUG_UART_BASE
34 default 0x400e0000
35
36endif
37
38source "board/st/stm32mp2/Kconfig"
39
40endif