stm32mp1: configs: activate PRE_CONSOLE_BUFFER
[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_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 PRE_CONSOLE_BUFFER
51         imply SILENT_CONSOLE
52         imply SYSRESET_PSCI if STM32MP1_TRUSTED
53         imply SYSRESET_SYSCON if !STM32MP1_TRUSTED
54         help
55                 target STMicroelectronics SOC STM32MP1 family
56                 STM32MP157, STM32MP153 or STM32MP151
57                 STMicroelectronics MPU with core ARMv7
58                 dual core A7 for STM32MP157/3, monocore for STM32MP151
59
60 config STM32MP1_TRUSTED
61         bool "Support trusted boot with TF-A"
62         default y if !SPL
63         select ARM_SMCCC
64         help
65                 Say Y here to enable boot with TF-A
66                 Trusted boot chain is :
67                 BootRom => TF-A.stm32 (clock & DDR) => U-Boot.stm32
68                 TF-A monitor provides proprietary SMC to manage secure devices
69
70 config STM32MP1_OPTEE
71         bool "Support trusted boot with TF-A and OP-TEE"
72         depends on STM32MP1_TRUSTED
73         default n
74         help
75                 Say Y here to enable boot with TF-A and OP-TEE
76                 Trusted boot chain is :
77                 BootRom => TF-A.stm32 (clock & DDR) => OP-TEE => U-Boot.stm32
78                 OP-TEE monitor provides ST SMC to access to secure resources
79
80 config SYS_TEXT_BASE
81         prompt "U-Boot base address"
82         default 0xC0100000
83         help
84                 configure the U-Boot base address
85                 when DDR driver is used:
86                   DDR + 1MB (0xC0100000)
87
88 config NR_DRAM_BANKS
89         default 1
90
91 config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION_MMC2
92         hex "Partition on MMC2 to use to load U-Boot from"
93         depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
94         default 1
95         help
96           Partition on the second MMC to load U-Boot from when the MMC is being
97           used in raw mode
98
99 config STM32_ETZPC
100         bool "STM32 Extended TrustZone Protection"
101         depends on TARGET_STM32MP1
102         default y
103         help
104           Say y to enable STM32 Extended TrustZone Protection
105
106 config CMD_STM32KEY
107         bool "command stm32key to fuse public key hash"
108         default y
109         depends on CMD_FUSE
110         help
111                 fuse public key hash in corresponding fuse used to authenticate
112                 binary.
113
114
115 config PRE_CON_BUF_ADDR
116         default 0xC02FF000
117
118 config PRE_CON_BUF_SZ
119         default 4096
120
121 config BOOTSTAGE_STASH_ADDR
122         default 0xC3000000
123
124 if BOOTCOUNT_LIMIT
125 config SYS_BOOTCOUNT_SINGLEWORD
126         default y
127
128 # TAMP_BOOTCOUNT = TAMP_BACKUP_REGISTER(21)
129 config SYS_BOOTCOUNT_ADDR
130         default 0x5C00A154
131 endif
132
133 if DEBUG_UART
134
135 config DEBUG_UART_BOARD_INIT
136         default y
137
138 # debug on UART4 by default
139 config DEBUG_UART_BASE
140         default 0x40010000
141
142 # clock source is HSI on reset
143 config DEBUG_UART_CLOCK
144         default 64000000
145 endif
146
147 source "board/st/stm32mp1/Kconfig"
148
149 endif