Merge tag 'u-boot-amlogic-20190828' of https://gitlab.denx.de/u-boot/custodians/u...
[oweals/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_SPI_LOAD
20         select SPL_SYSCON
21         select SPL_WATCHDOG_SUPPORT if WATCHDOG
22         imply BOOTSTAGE_STASH if SPL_BOOTSTAGE
23         imply SPL_BOOTSTAGE if BOOTSTAGE
24         imply SPL_DISPLAY_PRINT
25         imply SPL_LIBDISK_SUPPORT
26
27 config SYS_SOC
28         default "stm32mp"
29
30 config SYS_MALLOC_LEN
31         default 0x2000000
32
33 config ENV_SIZE
34         default 0x2000
35
36 config TARGET_STM32MP1
37         bool "Support stm32mp1xx"
38         select ARCH_SUPPORT_PSCI if !STM32MP1_TRUSTED
39         select CPU_V7A
40         select CPU_V7_HAS_NONSEC if !STM32MP1_TRUSTED
41         select CPU_V7_HAS_VIRT
42         select OF_BOARD_SETUP
43         select PINCTRL_STM32
44         select STM32_RCC
45         select STM32_RESET
46         select STM32_SERIAL
47         select SYS_ARCH_TIMER
48         imply BOOTCOUNT_LIMIT
49         imply BOOTSTAGE
50         imply CMD_BOOTCOUNT
51         imply CMD_BOOTSTAGE
52         imply DISABLE_CONSOLE
53         imply PRE_CONSOLE_BUFFER
54         imply SILENT_CONSOLE
55         imply SYSRESET_PSCI if STM32MP1_TRUSTED
56         imply SYSRESET_SYSCON if !STM32MP1_TRUSTED
57         help
58                 target STMicroelectronics SOC STM32MP1 family
59                 STM32MP157, STM32MP153 or STM32MP151
60                 STMicroelectronics MPU with core ARMv7
61                 dual core A7 for STM32MP157/3, monocore for STM32MP151
62
63 config STM32MP1_TRUSTED
64         bool "Support trusted boot with TF-A"
65         default y if !SPL
66         select ARM_SMCCC
67         help
68                 Say Y here to enable boot with TF-A
69                 Trusted boot chain is :
70                 BootRom => TF-A.stm32 (clock & DDR) => U-Boot.stm32
71                 TF-A monitor provides proprietary SMC to manage secure devices
72
73 config STM32MP1_OPTEE
74         bool "Support trusted boot with TF-A and OP-TEE"
75         depends on STM32MP1_TRUSTED
76         default n
77         help
78                 Say Y here to enable boot with TF-A and OP-TEE
79                 Trusted boot chain is :
80                 BootRom => TF-A.stm32 (clock & DDR) => OP-TEE => U-Boot.stm32
81                 OP-TEE monitor provides ST SMC to access to secure resources
82
83 config SYS_TEXT_BASE
84         prompt "U-Boot base address"
85         default 0xC0100000
86         help
87                 configure the U-Boot base address
88                 when DDR driver is used:
89                   DDR + 1MB (0xC0100000)
90
91 config NR_DRAM_BANKS
92         default 1
93
94 config 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
102 config STM32_ETZPC
103         bool "STM32 Extended TrustZone Protection"
104         depends on TARGET_STM32MP1
105         default y
106         help
107           Say y to enable STM32 Extended TrustZone Protection
108
109 config CMD_STM32KEY
110         bool "command stm32key to fuse public key hash"
111         default y
112         depends on CMD_FUSE
113         help
114                 fuse public key hash in corresponding fuse used to authenticate
115                 binary.
116
117
118 config PRE_CON_BUF_ADDR
119         default 0xC02FF000
120
121 config PRE_CON_BUF_SZ
122         default 4096
123
124 config BOOTSTAGE_STASH_ADDR
125         default 0xC3000000
126
127 if BOOTCOUNT_LIMIT
128 config SYS_BOOTCOUNT_SINGLEWORD
129         default y
130
131 # TAMP_BOOTCOUNT = TAMP_BACKUP_REGISTER(21)
132 config SYS_BOOTCOUNT_ADDR
133         default 0x5C00A154
134 endif
135
136 if DEBUG_UART
137
138 config DEBUG_UART_BOARD_INIT
139         default y
140
141 # debug on UART4 by default
142 config DEBUG_UART_BASE
143         default 0x40010000
144
145 # clock source is HSI on reset
146 config DEBUG_UART_CLOCK
147         default 64000000
148 endif
149
150 source "board/st/stm32mp1/Kconfig"
151
152 endif