stm32mp1: activate OF_BOARD_SETUP and FDT_FIXUP_PARTITIONS
[platform/kernel/u-boot.git] / arch / arm / mach-stm32mp / Kconfig
1 if ARCH_STM32MP
2
3 config SPL
4         select SPL_BOARD_INIT
5         select SPL_CLK
6         select SPL_DM
7         select SPL_DM_SEQ_ALIAS
8         select SPL_DRIVERS_MISC_SUPPORT
9         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
17         select SPL_DM_RESET
18         select SPL_SERIAL_SUPPORT
19         select SPL_SYSCON
20         select SPL_WATCHDOG_SUPPORT
21         imply BOOTSTAGE_STASH if SPL_BOOTSTAGE
22         imply SPL_BOOTSTAGE if BOOTSTAGE
23         imply SPL_DISPLAY_PRINT
24         imply SPL_LIBDISK_SUPPORT
25
26 config SYS_SOC
27         default "stm32mp"
28
29 config SYS_MALLOC_LEN
30         default 0x2000000
31
32 config ENV_SIZE
33         default 0x2000
34
35 config TARGET_STM32MP1
36         bool "Support stm32mp1xx"
37         select ARCH_SUPPORT_PSCI if !STM32MP1_TRUSTED
38         select CPU_V7A
39         select CPU_V7_HAS_NONSEC if !STM32MP1_TRUSTED
40         select CPU_V7_HAS_VIRT
41         select OF_BOARD_SETUP
42         select PINCTRL_STM32
43         select STM32_RCC
44         select STM32_RESET
45         select SYS_ARCH_TIMER
46         imply BOOTCOUNT_LIMIT
47         imply BOOTSTAGE
48         imply CMD_BOOTCOUNT
49         imply CMD_BOOTSTAGE
50         imply SYSRESET_PSCI if STM32MP1_TRUSTED
51         imply SYSRESET_SYSCON if !STM32MP1_TRUSTED
52         help
53                 target STMicroelectronics SOC STM32MP1 family
54                 STM32MP157, STM32MP153 or STM32MP151
55                 STMicroelectronics MPU with core ARMv7
56                 dual core A7 for STM32MP157/3, monocore for STM32MP151
57
58 config STM32MP1_TRUSTED
59         bool "Support trusted boot with TF-A"
60         default y if !SPL
61         select ARM_SMCCC
62         help
63                 Say Y here to enable boot with TF-A
64                 Trusted boot chain is :
65                 BootRom => TF-A.stm32 (clock & DDR) => U-Boot.stm32
66                 TF-A monitor provides proprietary SMC to manage secure devices
67
68 config STM32MP1_OPTEE
69         bool "Support trusted boot with TF-A and OP-TEE"
70         depends on STM32MP1_TRUSTED
71         default n
72         help
73                 Say Y here to enable boot with TF-A and OP-TEE
74                 Trusted boot chain is :
75                 BootRom => TF-A.stm32 (clock & DDR) => OP-TEE => U-Boot.stm32
76                 OP-TEE monitor provides ST SMC to access to secure resources
77
78 config SYS_TEXT_BASE
79         prompt "U-Boot base address"
80         default 0xC0100000
81         help
82                 configure the U-Boot base address
83                 when DDR driver is used:
84                   DDR + 1MB (0xC0100000)
85
86 config NR_DRAM_BANKS
87         default 1
88
89 config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION_MMC2
90         hex "Partition on MMC2 to use to load U-Boot from"
91         depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
92         default 1
93         help
94           Partition on the second MMC to load U-Boot from when the MMC is being
95           used in raw mode
96
97 config STM32_ETZPC
98         bool "STM32 Extended TrustZone Protection"
99         depends on TARGET_STM32MP1
100         default y
101         help
102           Say y to enable STM32 Extended TrustZone Protection
103
104 config CMD_STM32KEY
105         bool "command stm32key to fuse public key hash"
106         default y
107         depends on CMD_FUSE
108         help
109                 fuse public key hash in corresponding fuse used to authenticate
110                 binary.
111
112 config BOOTSTAGE_STASH_ADDR
113         default 0xC3000000
114
115 if BOOTCOUNT_LIMIT
116 config SYS_BOOTCOUNT_SINGLEWORD
117         default y
118
119 # TAMP_BOOTCOUNT = TAMP_BACKUP_REGISTER(21)
120 config SYS_BOOTCOUNT_ADDR
121         default 0x5C00A154
122 endif
123
124 if DEBUG_UART
125
126 config DEBUG_UART_BOARD_INIT
127         default y
128
129 # debug on UART4 by default
130 config DEBUG_UART_BASE
131         default 0x40010000
132
133 # clock source is HSI on reset
134 config DEBUG_UART_CLOCK
135         default 64000000
136 endif
137
138 source "board/st/stm32mp1/Kconfig"
139
140 endif