blob: 7b86ce1612fda201bbd9453a2c67214bcc1a2302 [file] [log] [blame]
Patrick Delaunay85b53972018-03-12 10:46:10 +01001if ARCH_STM32MP
2
3config SPL
4 select SPL_BOARD_INIT
5 select SPL_CLK
6 select SPL_DM
7 select SPL_DM_SEQ_ALIAS
Patrick Delaunay636279a2018-07-09 15:17:21 +02008 select SPL_DRIVERS_MISC_SUPPORT
Patrick Delaunay85b53972018-03-12 10:46:10 +01009 select SPL_FRAMEWORK
10 select SPL_GPIO_SUPPORT
11 select SPL_LIBCOMMON_SUPPORT
12 select SPL_LIBGENERIC_SUPPORT
13 select SPL_OF_CONTROL
14 select SPL_OF_TRANSLATE
15 select SPL_PINCTRL
16 select SPL_REGMAP
Ley Foon Tan9caf7122018-06-14 18:45:19 +080017 select SPL_DM_RESET
Patrick Delaunay85b53972018-03-12 10:46:10 +010018 select SPL_SERIAL_SUPPORT
Patrick Delaunayfbe54572019-07-30 19:16:36 +020019 select SPL_SPI_LOAD
Patrick Delaunay85b53972018-03-12 10:46:10 +010020 select SPL_SYSCON
Patrick Delaunay8bbadde2019-07-30 19:16:33 +020021 select SPL_WATCHDOG_SUPPORT if WATCHDOG
Patrick Delaunayf8600202019-04-18 17:32:47 +020022 imply BOOTSTAGE_STASH if SPL_BOOTSTAGE
23 imply SPL_BOOTSTAGE if BOOTSTAGE
Patrick Delaunayaa4e6852019-02-27 17:01:14 +010024 imply SPL_DISPLAY_PRINT
Patrick Delaunay85b53972018-03-12 10:46:10 +010025 imply SPL_LIBDISK_SUPPORT
26
27config SYS_SOC
28 default "stm32mp"
29
Patrick Delaunay7e517c62019-04-18 17:32:36 +020030config SYS_MALLOC_LEN
31 default 0x2000000
32
Patrick Delaunay088b6762019-04-18 17:32:37 +020033config ENV_SIZE
Patrice Chotardd83bba42019-05-07 18:40:47 +020034 default 0x2000
Patrick Delaunay088b6762019-04-18 17:32:37 +020035
Patrick Delaunay310aa8a2020-01-13 15:17:42 +010036config STM32MP15x
37 bool "Support STMicroelectronics STM32MP15x Soc"
Patrick Delaunayf8fe21d2020-04-01 09:07:33 +020038 select ARCH_SUPPORT_PSCI if !TFABOOT
39 select ARM_SMCCC if TFABOOT
Lokesh Vutla81b1a672018-04-26 18:21:26 +053040 select CPU_V7A
Patrick Delaunayf8fe21d2020-04-01 09:07:33 +020041 select CPU_V7_HAS_NONSEC if !TFABOOT
Patrick Delaunaye0207372018-04-16 10:13:24 +020042 select CPU_V7_HAS_VIRT
Patrick Delaunayde98cbf2019-07-02 13:26:07 +020043 select OF_BOARD_SETUP
Patrick Delaunay85b53972018-03-12 10:46:10 +010044 select PINCTRL_STM32
Patrick Delaunayb139a5b2018-07-09 15:17:20 +020045 select STM32_RCC
Patrick Delaunay85b53972018-03-12 10:46:10 +010046 select STM32_RESET
Patrick Delaunay4368e562019-07-30 19:16:25 +020047 select STM32_SERIAL
Andre Przywara7b169252018-04-12 04:24:46 +030048 select SYS_ARCH_TIMER
Patrick Delaunayf8fe21d2020-04-01 09:07:33 +020049 imply SYSRESET_PSCI if TFABOOT
50 imply SYSRESET_SYSCON if !TFABOOT
Patrick Delaunay310aa8a2020-01-13 15:17:42 +010051 help
52 support of STMicroelectronics SOC STM32MP15x family
53 STM32MP157, STM32MP153 or STM32MP151
54 STMicroelectronics MPU with core ARMv7
55 dual core A7 for STM32MP157/3, monocore for STM32MP151
56 target all the STMicroelectronics board with SOC STM32MP1 family
57
58choice
59 prompt "STM32MP15x board select"
60 optional
61
62config TARGET_ST_STM32MP15x
63 bool "STMicroelectronics STM32MP15x boards"
64 select STM32MP15x
Patrick Delaunay9c07f4a2019-04-18 17:32:45 +020065 imply BOOTCOUNT_LIMIT
66 imply CMD_BOOTCOUNT
Patrick Delaunayf97beae2019-12-03 09:38:58 +010067 imply CMD_CLS if CMD_BMP
Patrick Delaunay28a46092019-07-30 19:16:26 +020068 imply DISABLE_CONSOLE
Patrick Delaunayfcb49912019-07-30 19:16:23 +020069 imply PRE_CONSOLE_BUFFER
Patrick Delaunay887d9e42019-07-30 19:16:22 +020070 imply SILENT_CONSOLE
Patrick Delaunay85b53972018-03-12 10:46:10 +010071 help
Patrick Delaunay310aa8a2020-01-13 15:17:42 +010072 target the STMicroelectronics board with SOC STM32MP15x
73 managed by board/st/stm32mp1:
74 Evalulation board (EV1) or Discovery board (DK1 and DK2).
75 The difference between board are managed with devicetree
76
Marek Vasut5ff05292020-01-24 18:39:16 +010077config TARGET_DH_STM32MP1_PDK2
78 bool "DH STM32MP1 PDK2"
79 select STM32MP15x
80 imply BOOTCOUNT_LIMIT
81 imply CMD_BOOTCOUNT
82 help
83 Target the DH PDK2 development kit with STM32MP15x SoM.
84
Patrick Delaunay310aa8a2020-01-13 15:17:42 +010085endchoice
Patrick Delaunay85b53972018-03-12 10:46:10 +010086
Patrick Delaunayff215a42019-07-02 13:26:06 +020087config STM32MP1_OPTEE
88 bool "Support trusted boot with TF-A and OP-TEE"
Patrick Delaunayf8fe21d2020-04-01 09:07:33 +020089 depends on TFABOOT
Patrick Delaunayff215a42019-07-02 13:26:06 +020090 default n
91 help
92 Say Y here to enable boot with TF-A and OP-TEE
93 Trusted boot chain is :
94 BootRom => TF-A.stm32 (clock & DDR) => OP-TEE => U-Boot.stm32
95 OP-TEE monitor provides ST SMC to access to secure resources
Patrick Delaunay5d061412019-02-12 11:44:39 +010096
Patrick Delaunay85b53972018-03-12 10:46:10 +010097config SYS_TEXT_BASE
Patrick Delaunay85b53972018-03-12 10:46:10 +010098 default 0xC0100000
Patrick Delaunay85b53972018-03-12 10:46:10 +010099
Patrick Delaunay6d3cbf32019-02-27 17:01:15 +0100100config NR_DRAM_BANKS
101 default 1
102
Patrick Delaunayfc69c682018-03-20 10:54:54 +0100103config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION_MMC2
104 hex "Partition on MMC2 to use to load U-Boot from"
105 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
106 default 1
107 help
108 Partition on the second MMC to load U-Boot from when the MMC is being
109 used in raw mode
110
Patrick Delaunay43f214c2019-07-05 17:20:15 +0200111config STM32_ETZPC
112 bool "STM32 Extended TrustZone Protection"
Patrick Delaunay3a6e3872020-03-10 16:05:43 +0100113 depends on STM32MP15x
Patrick Delaunay43f214c2019-07-05 17:20:15 +0200114 default y
115 help
116 Say y to enable STM32 Extended TrustZone Protection
117
Patrick Delaunay109d13f2019-07-05 17:20:17 +0200118config CMD_STM32KEY
119 bool "command stm32key to fuse public key hash"
120 default y
121 depends on CMD_FUSE
122 help
123 fuse public key hash in corresponding fuse used to authenticate
124 binary.
125
Patrick Delaunayfcb49912019-07-30 19:16:23 +0200126
127config PRE_CON_BUF_ADDR
128 default 0xC02FF000
129
130config PRE_CON_BUF_SZ
131 default 4096
132
Patrick Delaunayf8600202019-04-18 17:32:47 +0200133config BOOTSTAGE_STASH_ADDR
134 default 0xC3000000
135
Patrick Delaunay9c07f4a2019-04-18 17:32:45 +0200136if BOOTCOUNT_LIMIT
137config SYS_BOOTCOUNT_SINGLEWORD
138 default y
139
140# TAMP_BOOTCOUNT = TAMP_BACKUP_REGISTER(21)
141config SYS_BOOTCOUNT_ADDR
142 default 0x5C00A154
143endif
144
Patrick Delaunay82168e82018-05-17 14:50:46 +0200145if DEBUG_UART
146
147config DEBUG_UART_BOARD_INIT
148 default y
149
150# debug on UART4 by default
151config DEBUG_UART_BASE
152 default 0x40010000
153
154# clock source is HSI on reset
155config DEBUG_UART_CLOCK
156 default 64000000
157endif
158
Patrick Delaunay6d3cbf32019-02-27 17:01:15 +0100159source "board/st/stm32mp1/Kconfig"
Marek Vasut5ff05292020-01-24 18:39:16 +0100160source "board/dhelectronics/dh_stm32mp1/Kconfig"
Patrick Delaunay6d3cbf32019-02-27 17:01:15 +0100161
Patrick Delaunay85b53972018-03-12 10:46:10 +0100162endif