blob: 3b4936c3264b11c94e65a957cd3bc1917d89913b [file] [log] [blame]
Patrick Delaunay85b53972018-03-12 10:46:10 +01001if ARCH_STM32MP
2
3config SPL
Patrick Delaunay4c5821d2020-07-24 11:13:31 +02004 select SPL_BOARD_INIT
Patrick Delaunay85b53972018-03-12 10:46:10 +01005 select SPL_CLK
6 select SPL_DM
7 select SPL_DM_SEQ_ALIAS
Simon Glass284cb9c2021-07-10 21:14:31 -06008 select SPL_DRIVERS_MISC
Patrick Delaunay85b53972018-03-12 10:46:10 +01009 select SPL_FRAMEWORK
Simon Glass035939e2021-07-10 21:14:30 -060010 select SPL_GPIO
Patrick Delaunay85b53972018-03-12 10:46:10 +010011 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
Simon Glassf4d60392021-08-08 12:20:12 -060018 select SPL_SERIAL
Patrick Delaunay85b53972018-03-12 10:46:10 +010019 select SPL_SYSCON
Simon Glass1ba1d4e2021-07-10 21:14:28 -060020 select SPL_WATCHDOG if WATCHDOG
Patrick Delaunayf8600202019-04-18 17:32:47 +020021 imply BOOTSTAGE_STASH if SPL_BOOTSTAGE
22 imply SPL_BOOTSTAGE if BOOTSTAGE
Patrick Delaunayaa4e6852019-02-27 17:01:14 +010023 imply SPL_DISPLAY_PRINT
Patrick Delaunay85b53972018-03-12 10:46:10 +010024 imply SPL_LIBDISK_SUPPORT
Simon Glassa5820472021-08-08 12:20:14 -060025 imply SPL_SPI_LOAD if SPL_SPI
Patrick Delaunay85b53972018-03-12 10:46:10 +010026
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 Delaunay55cf4772022-05-20 18:24:43 +020036choice
37 prompt "Select STMicroelectronics STM32MPxxx Soc"
38 default STM32MP15x
39
Patrick Delaunay310aa8a2020-01-13 15:17:42 +010040config STM32MP15x
41 bool "Support STMicroelectronics STM32MP15x Soc"
Patrick Delaunay196b7db2021-10-11 09:52:49 +020042 select ARCH_SUPPORT_PSCI
Patrick Delaunay1e2a9b72021-10-13 15:11:18 +020043 select BINMAN
Lokesh Vutla81b1a672018-04-26 18:21:26 +053044 select CPU_V7A
Patrick Delaunay196b7db2021-10-11 09:52:49 +020045 select CPU_V7_HAS_NONSEC
Patrick Delaunaye0207372018-04-16 10:13:24 +020046 select CPU_V7_HAS_VIRT
Patrice Chotarddf290812022-01-20 08:19:15 +010047 select OF_BOARD if TFABOOT
Patrick Delaunayde98cbf2019-07-02 13:26:07 +020048 select OF_BOARD_SETUP
Patrick Delaunay85b53972018-03-12 10:46:10 +010049 select PINCTRL_STM32
Patrick Delaunayb139a5b2018-07-09 15:17:20 +020050 select STM32_RCC
Patrick Delaunay85b53972018-03-12 10:46:10 +010051 select STM32_RESET
Patrick Delaunay4368e562019-07-30 19:16:25 +020052 select STM32_SERIAL
Patrick Delaunayefd00f32022-05-20 18:24:40 +020053 select SUPPORT_SPL
Andre Przywara7b169252018-04-12 04:24:46 +030054 select SYS_ARCH_TIMER
Patrick Delaunay59d0da12020-07-02 17:43:45 +020055 imply CMD_NVEDIT_INFO
Patrick Delaunay310aa8a2020-01-13 15:17:42 +010056 help
57 support of STMicroelectronics SOC STM32MP15x family
58 STM32MP157, STM32MP153 or STM32MP151
59 STMicroelectronics MPU with core ARMv7
60 dual core A7 for STM32MP157/3, monocore for STM32MP151
Patrick Delaunay55cf4772022-05-20 18:24:43 +020061endchoice
62
Patrick Delaunay6d3cbf32019-02-27 17:01:15 +010063config NR_DRAM_BANKS
64 default 1
65
Patrick Delaunayab7d6442020-09-04 12:55:19 +020066config DDR_CACHEABLE_SIZE
67 hex "Size of the DDR marked cacheable in pre-reloc stage"
Patrick Delaunayab7d6442020-09-04 12:55:19 +020068 default 0x40000000
69 help
70 Define the size of the DDR marked as cacheable in U-Boot
71 pre-reloc stage.
72 This option can be useful to avoid speculatif access
73 to secured area of DDR used by TF-A or OP-TEE before U-Boot
74 initialization.
75 The areas marked "no-map" in device tree should be located
76 before this limit: STM32_DDR_BASE + DDR_CACHEABLE_SIZE.
77
Patrick Delaunayfc69c682018-03-20 10:54:54 +010078config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION_MMC2
79 hex "Partition on MMC2 to use to load U-Boot from"
80 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
81 default 1
82 help
83 Partition on the second MMC to load U-Boot from when the MMC is being
84 used in raw mode
85
Patrick Delaunay43f214c2019-07-05 17:20:15 +020086config STM32_ETZPC
87 bool "STM32 Extended TrustZone Protection"
Patrick Delaunay3a6e3872020-03-10 16:05:43 +010088 depends on STM32MP15x
Patrick Delaunay43f214c2019-07-05 17:20:15 +020089 default y
Simon Glass1c383742021-12-18 11:27:51 -070090 imply BOOTP_SERVERIP
Patrick Delaunay43f214c2019-07-05 17:20:15 +020091 help
92 Say y to enable STM32 Extended TrustZone Protection
93
Alexandru Gagniuc31aa6972021-07-29 11:47:17 -050094config STM32_ECDSA_VERIFY
95 bool "STM32 ECDSA verification via the ROM API"
96 depends on SPL_ECDSA_VERIFY
97 default y
98 help
99 Say y to enable the uclass driver for ECDSA verification using the
100 ROM API provided on STM32MP.
101 The ROM API is only available during SPL for now.
102
Patrick Delaunay109d13f2019-07-05 17:20:17 +0200103config CMD_STM32KEY
104 bool "command stm32key to fuse public key hash"
Patrick Delaunay109d13f2019-07-05 17:20:17 +0200105 help
106 fuse public key hash in corresponding fuse used to authenticate
107 binary.
Patrick Delaunayd6c098a2021-06-28 14:55:57 +0200108 This command is used to evaluate the secure boot on stm32mp SOC,
109 it is deactivated by default in real products.
Patrick Delaunay109d13f2019-07-05 17:20:17 +0200110
Patrick Delaunayff45fca2022-05-20 18:24:44 +0200111source "arch/arm/mach-stm32mp/Kconfig.15x"
Patrick Delaunay82168e82018-05-17 14:50:46 +0200112
Patrick Delaunay0440d862021-02-25 13:37:00 +0100113source "arch/arm/mach-stm32mp/cmd_stm32prog/Kconfig"
Patrick Delaunay85b53972018-03-12 10:46:10 +0100114endif