blob: ea7d57477b5a8aee47de4dc8b27996cec5ca1824 [file] [log] [blame]
Patrick Delaunay2514c2d2018-03-12 10:46:10 +01001if ARCH_STM32MP
2
3config SPL
Patrick Delaunay2514c2d2018-03-12 10:46:10 +01004 select SPL_CLK
5 select SPL_DM
6 select SPL_DM_SEQ_ALIAS
Patrick Delaunaybc061342018-07-09 15:17:21 +02007 select SPL_DRIVERS_MISC_SUPPORT
Patrick Delaunay2514c2d2018-03-12 10:46:10 +01008 select SPL_FRAMEWORK
9 select SPL_GPIO_SUPPORT
10 select SPL_LIBCOMMON_SUPPORT
11 select SPL_LIBGENERIC_SUPPORT
12 select SPL_OF_CONTROL
13 select SPL_OF_TRANSLATE
14 select SPL_PINCTRL
15 select SPL_REGMAP
Ley Foon Tanbfc6bae2018-06-14 18:45:19 +080016 select SPL_DM_RESET
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010017 select SPL_SERIAL_SUPPORT
Patrick Delaunay49ef8e12019-07-30 19:16:36 +020018 select SPL_SPI_LOAD
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010019 select SPL_SYSCON
Patrick Delaunay9cd8b9f2019-07-30 19:16:33 +020020 select SPL_WATCHDOG_SUPPORT if WATCHDOG
Patrick Delaunay27a986d2019-04-18 17:32:47 +020021 imply BOOTSTAGE_STASH if SPL_BOOTSTAGE
22 imply SPL_BOOTSTAGE if BOOTSTAGE
Patrick Delaunay006ea182019-02-27 17:01:14 +010023 imply SPL_DISPLAY_PRINT
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010024 imply SPL_LIBDISK_SUPPORT
25
26config SYS_SOC
27 default "stm32mp"
28
Patrick Delaunayef84ddd2019-04-18 17:32:36 +020029config SYS_MALLOC_LEN
30 default 0x2000000
31
Patrick Delaunay579a3e72019-04-18 17:32:37 +020032config ENV_SIZE
Patrice Chotard1538e1a2019-05-07 18:40:47 +020033 default 0x2000
Patrick Delaunay579a3e72019-04-18 17:32:37 +020034
Patrick Delaunay84625482020-01-13 15:17:42 +010035config STM32MP15x
36 bool "Support STMicroelectronics STM32MP15x Soc"
Patrick Delaunay654706b2020-04-01 09:07:33 +020037 select ARCH_SUPPORT_PSCI if !TFABOOT
38 select ARM_SMCCC if TFABOOT
Lokesh Vutlaacf15002018-04-26 18:21:26 +053039 select CPU_V7A
Patrick Delaunay654706b2020-04-01 09:07:33 +020040 select CPU_V7_HAS_NONSEC if !TFABOOT
Patrick Delaunay41c79772018-04-16 10:13:24 +020041 select CPU_V7_HAS_VIRT
Patrick Delaunaye81f8d12019-07-02 13:26:07 +020042 select OF_BOARD_SETUP
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010043 select PINCTRL_STM32
Patrick Delaunayd090cba2018-07-09 15:17:20 +020044 select STM32_RCC
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010045 select STM32_RESET
Patrick Delaunay16a07222019-07-30 19:16:25 +020046 select STM32_SERIAL
Andre Przywara7842b6a2018-04-12 04:24:46 +030047 select SYS_ARCH_TIMER
Patrick Delaunay654706b2020-04-01 09:07:33 +020048 imply SYSRESET_PSCI if TFABOOT
49 imply SYSRESET_SYSCON if !TFABOOT
Patrick Delaunay84625482020-01-13 15:17:42 +010050 help
51 support of STMicroelectronics SOC STM32MP15x family
52 STM32MP157, STM32MP153 or STM32MP151
53 STMicroelectronics MPU with core ARMv7
54 dual core A7 for STM32MP157/3, monocore for STM32MP151
55 target all the STMicroelectronics board with SOC STM32MP1 family
56
57choice
58 prompt "STM32MP15x board select"
59 optional
60
61config TARGET_ST_STM32MP15x
62 bool "STMicroelectronics STM32MP15x boards"
63 select STM32MP15x
Patrick Delaunay34199822019-04-18 17:32:45 +020064 imply BOOTCOUNT_LIMIT
Patrick Delaunay15ac0c72020-03-10 10:15:03 +010065 imply BOOTSTAGE
Patrick Delaunay34199822019-04-18 17:32:45 +020066 imply CMD_BOOTCOUNT
Patrick Delaunay15ac0c72020-03-10 10:15:03 +010067 imply CMD_BOOTSTAGE
Patrick Delaunayeee15802019-12-03 09:38:58 +010068 imply CMD_CLS if CMD_BMP
Patrick Delaunaya67d9582019-07-30 19:16:26 +020069 imply DISABLE_CONSOLE
Patrick Delaunay67551982019-07-30 19:16:23 +020070 imply PRE_CONSOLE_BUFFER
Patrick Delaunayc50c9282019-07-30 19:16:22 +020071 imply SILENT_CONSOLE
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010072 help
Patrick Delaunay84625482020-01-13 15:17:42 +010073 target the STMicroelectronics board with SOC STM32MP15x
74 managed by board/st/stm32mp1:
75 Evalulation board (EV1) or Discovery board (DK1 and DK2).
76 The difference between board are managed with devicetree
77
Marek Vasut19953732020-01-24 18:39:16 +010078config TARGET_DH_STM32MP1_PDK2
79 bool "DH STM32MP1 PDK2"
80 select STM32MP15x
81 imply BOOTCOUNT_LIMIT
82 imply CMD_BOOTCOUNT
83 help
84 Target the DH PDK2 development kit with STM32MP15x SoM.
85
Patrick Delaunay84625482020-01-13 15:17:42 +010086endchoice
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010087
88config SYS_TEXT_BASE
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010089 default 0xC0100000
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010090
Patrick Delaunay45ccdb62019-02-27 17:01:15 +010091config NR_DRAM_BANKS
92 default 1
93
Patrick Delaunay11dfd1a2018-03-20 10:54:54 +010094config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION_MMC2
95 hex "Partition on MMC2 to use to load U-Boot from"
96 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
97 default 1
98 help
99 Partition on the second MMC to load U-Boot from when the MMC is being
100 used in raw mode
101
Patrick Delaunayc60f3b32019-07-05 17:20:15 +0200102config STM32_ETZPC
103 bool "STM32 Extended TrustZone Protection"
Patrick Delaunay7a02e4d2020-03-10 16:05:43 +0100104 depends on STM32MP15x
Patrick Delaunayc60f3b32019-07-05 17:20:15 +0200105 default y
106 help
107 Say y to enable STM32 Extended TrustZone Protection
108
Patrick Delaunay954bd1a2020-03-18 09:24:49 +0100109config CMD_STM32PROG
110 bool "command stm32prog for STM32CudeProgrammer"
111 select DFU
112 select DFU_RAM
113 select DFU_VIRT
Patrick Delaunayaff4c5d2020-03-18 09:24:51 +0100114 select PARTITION_TYPE_GUID
115 imply CMD_GPT if MMC
Patrick Delaunayeb845d62020-03-18 09:24:54 +0100116 imply CMD_MTD if MTD
Patrick Delaunayaff4c5d2020-03-18 09:24:51 +0100117 imply DFU_MMC if MMC
Patrick Delaunayeb845d62020-03-18 09:24:54 +0100118 imply DFU_MTD if MTD
Patrick Delaunay954bd1a2020-03-18 09:24:49 +0100119 help
120 activate a specific command stm32prog for STM32MP soc family
121 witch update the device with the tools STM32CubeProgrammer,
122 using UART with STM32 protocol or USB with DFU protocol
123 NB: access to not volatile memory (NOR/NAND/SD/eMMC) is based
124 on U-Boot DFU framework
125
Patrick Delaunayf4cb5d62019-07-05 17:20:17 +0200126config CMD_STM32KEY
127 bool "command stm32key to fuse public key hash"
128 default y
Patrick Delaunayf4cb5d62019-07-05 17:20:17 +0200129 help
130 fuse public key hash in corresponding fuse used to authenticate
131 binary.
132
Patrick Delaunay67551982019-07-30 19:16:23 +0200133config PRE_CON_BUF_ADDR
134 default 0xC02FF000
135
136config PRE_CON_BUF_SZ
137 default 4096
138
Patrick Delaunay27a986d2019-04-18 17:32:47 +0200139config BOOTSTAGE_STASH_ADDR
140 default 0xC3000000
141
Patrick Delaunay34199822019-04-18 17:32:45 +0200142if BOOTCOUNT_LIMIT
143config SYS_BOOTCOUNT_SINGLEWORD
144 default y
145
146# TAMP_BOOTCOUNT = TAMP_BACKUP_REGISTER(21)
147config SYS_BOOTCOUNT_ADDR
148 default 0x5C00A154
149endif
150
Patrick Delaunay320d2662018-05-17 14:50:46 +0200151if DEBUG_UART
152
153config DEBUG_UART_BOARD_INIT
154 default y
155
156# debug on UART4 by default
157config DEBUG_UART_BASE
158 default 0x40010000
159
160# clock source is HSI on reset
161config DEBUG_UART_CLOCK
162 default 64000000
163endif
164
Patrick Delaunay45ccdb62019-02-27 17:01:15 +0100165source "board/st/stm32mp1/Kconfig"
Marek Vasut19953732020-01-24 18:39:16 +0100166source "board/dhelectronics/dh_stm32mp1/Kconfig"
Patrick Delaunay45ccdb62019-02-27 17:01:15 +0100167
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100168endif