blob: 547372a639fdeec00aeefb5892b45068f8bd8001 [file] [log] [blame]
Trevor Woerner513f6402020-05-06 08:02:41 -04001if ARCH_TEGRA
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +09002
Simon Glass035939e2021-07-10 21:14:30 -06003config SPL_GPIO
Simon Glass0bdfc3e2016-09-12 23:18:39 -06004 default y
5
Simon Glassf2a89462016-09-12 23:18:41 -06006config SPL_LIBCOMMON_SUPPORT
7 default y
8
Simon Glassb16c92c2016-09-12 23:18:43 -06009config SPL_LIBGENERIC_SUPPORT
10 default y
11
Simon Glassf4d60392021-08-08 12:20:12 -060012config SPL_SERIAL
Simon Glasse076d6f2016-09-12 23:18:56 -060013 default y
14
Thierry Reding45ad0b02019-04-15 11:32:18 +020015config TEGRA_CLKRST
16 bool
17
Svyatoslav Ryhel7d5a2f42023-02-14 19:35:35 +020018config TEGRA_CRYPTO
19 bool "Tegra AES128 crypto module"
20 select AES
Svyatoslav Ryhel7d5a2f42023-02-14 19:35:35 +020021
Thierry Redingc3598a42019-04-15 11:32:19 +020022config TEGRA_GP_PADCTRL
23 bool
24
Stephen Warrenadf3abd2016-07-18 12:17:11 -060025config TEGRA_IVC
26 bool "Tegra IVC protocol"
27 help
28 IVC (Inter-VM Communication) protocol is a Tegra-specific IPC
29 (Inter Processor Communication) framework. Within the context of
30 U-Boot, it is typically used for communication between the main CPU
31 and various auxiliary processors.
32
Thierry Reding17987bb2019-04-15 11:32:20 +020033config TEGRA_MC
34 bool
35
Thierry Reding7c0b1502019-04-15 11:32:21 +020036config TEGRA_PINCTRL
37 bool
38
Thierry Reding8ffbcfc2019-04-15 11:32:22 +020039config TEGRA_PMC
40 bool
41
Thierry Redingce7eb162019-04-15 11:32:25 +020042config TEGRA_PMC_SECURE
43 bool
44 depends on TEGRA_PMC
45
Stephen Warren8c29e652015-11-23 10:32:01 -070046config TEGRA_COMMON
47 bool "Tegra common options"
Michal Simek84f3dec2018-07-23 15:55:13 +020048 select BOARD_EARLY_INIT_F
Stephen Warren905752c2016-09-13 10:46:00 -060049 select CLK
Tom Warren7b5002e2015-07-17 08:12:51 -070050 select DM
Tom Warren7b5002e2015-07-17 08:12:51 -070051 select DM_GPIO
Stephen Warren8c29e652015-11-23 10:32:01 -070052 select DM_I2C
Simon Glass01e99402015-10-18 21:17:16 -060053 select DM_KEYBOARD
Tom Warrena66f7722016-09-13 10:45:48 -060054 select DM_MMC
Simon Glassd8af3c92016-01-30 16:38:01 -070055 select DM_PWM
Stephen Warren905752c2016-09-13 10:46:00 -060056 select DM_RESET
Stephen Warren8c29e652015-11-23 10:32:01 -070057 select DM_SERIAL
58 select DM_SPI
59 select DM_SPI_FLASH
Stephen Warren905752c2016-09-13 10:46:00 -060060 select MISC
Stephen Warren8c29e652015-11-23 10:32:01 -070061 select OF_CONTROL
Michal Simek84f3dec2018-07-23 15:55:13 +020062 select SPI
Svyatoslav Ryhel4936bad2023-10-24 10:49:04 +030063 select SYSRESET
Svyatoslav Ryhel4936bad2023-10-24 10:49:04 +030064 select SYSRESET_TEGRA
Michal Simek2e7c8192018-07-23 15:55:14 +020065 imply CMD_DM
Daniel Thompsona9e2c672017-05-19 17:26:58 +010066 imply CRC32_VERIFY
Stephen Warren8c29e652015-11-23 10:32:01 -070067
Stephen Warren905752c2016-09-13 10:46:00 -060068config TEGRA_NO_BPMP
69 bool "Tegra common options for SoCs without BPMP"
70 select TEGRA_CAR
71 select TEGRA_CAR_CLOCK
72 select TEGRA_CAR_RESET
73
Stephen Warren8c29e652015-11-23 10:32:01 -070074config TEGRA_ARMV7_COMMON
75 bool "Tegra 32-bit common options"
Simon Glassa0c32762020-07-19 13:56:00 -060076 select BINMAN
Lokesh Vutla81b1a672018-04-26 18:21:26 +053077 select CPU_V7A
Stephen Warren8c29e652015-11-23 10:32:01 -070078 select SPL
Ley Foon Tan48fcc4a2017-05-03 17:13:32 +080079 select SPL_BOARD_INIT if SPL
Svyatoslav Ryhel2447ff12023-12-01 13:22:00 +020080 select SPL_DM if SPL
Tom Rinie1e85442021-08-27 21:18:30 -040081 select SPL_SKIP_LOWLEVEL_INIT_ONLY if SPL
Svyatoslav Ryhel2447ff12023-12-01 13:22:00 +020082 select SPL_SYSRESET if SPL
Stephen Warren8c29e652015-11-23 10:32:01 -070083 select SUPPORT_SPL
Svyatoslav Ryhel79a7e412023-02-01 10:53:03 +020084 select TIMER
Thierry Reding45ad0b02019-04-15 11:32:18 +020085 select TEGRA_CLKRST
Stephen Warren8c29e652015-11-23 10:32:01 -070086 select TEGRA_COMMON
Stephen Warrenaf974be2016-05-12 12:07:41 -060087 select TEGRA_GPIO
Thierry Redingc3598a42019-04-15 11:32:19 +020088 select TEGRA_GP_PADCTRL
Thierry Reding17987bb2019-04-15 11:32:20 +020089 select TEGRA_MC
Stephen Warren905752c2016-09-13 10:46:00 -060090 select TEGRA_NO_BPMP
Thierry Reding7c0b1502019-04-15 11:32:21 +020091 select TEGRA_PINCTRL
Thierry Reding8ffbcfc2019-04-15 11:32:22 +020092 select TEGRA_PMC
Svyatoslav Ryhel79a7e412023-02-01 10:53:03 +020093 select TEGRA_TIMER
Stephen Warren8c29e652015-11-23 10:32:01 -070094
95config TEGRA_ARMV8_COMMON
96 bool "Tegra 64-bit common options"
97 select ARM64
Masahiro Yamadabf4645c2019-06-26 13:51:46 +090098 select INIT_SP_RELATIVE
Stephen Warreneab36052018-01-03 14:31:52 -070099 select LINUX_KERNEL_IMAGE_HEADER
Thierry Reding29ce1d02019-04-15 11:32:32 +0200100 select POSITION_INDEPENDENT
Stephen Warren8c29e652015-11-23 10:32:01 -0700101 select TEGRA_COMMON
Tom Warren7b5002e2015-07-17 08:12:51 -0700102
Stephen Warreneab36052018-01-03 14:31:52 -0700103if TEGRA_ARMV8_COMMON
104config LNX_KRNL_IMG_TEXT_OFFSET_BASE
105 default 0x80000000
106endif
107
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900108choice
109 prompt "Tegra SoC select"
Joe Hershbergerf0699602015-05-12 14:46:23 -0500110 optional
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900111
112config TEGRA20
113 bool "Tegra20 family"
Tom Rinibacb52c2017-03-07 07:13:42 -0500114 select ARM_ERRATA_716044
115 select ARM_ERRATA_742230
116 select ARM_ERRATA_751472
Tom Warren7b5002e2015-07-17 08:12:51 -0700117 select TEGRA_ARMV7_COMMON
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900118
119config TEGRA30
120 bool "Tegra30 family"
Tom Rinibacb52c2017-03-07 07:13:42 -0500121 select ARM_ERRATA_743622
122 select ARM_ERRATA_751472
Tom Warren7b5002e2015-07-17 08:12:51 -0700123 select TEGRA_ARMV7_COMMON
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900124
125config TEGRA114
126 bool "Tegra114 family"
Tom Warren7b5002e2015-07-17 08:12:51 -0700127 select TEGRA_ARMV7_COMMON
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900128
129config TEGRA124
130 bool "Tegra124 family"
Tom Warren7b5002e2015-07-17 08:12:51 -0700131 select TEGRA_ARMV7_COMMON
Simon Glass0662cf22017-07-25 08:29:58 -0600132 imply REGMAP
133 imply SYSCON
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900134
Tom Warrenab0cc6b2015-03-04 16:36:00 -0700135config TEGRA210
136 bool "Tegra210 family"
Tom Rini249f11f2021-08-19 14:19:39 -0400137 select GICV2
Svyatoslav Ryhel79a7e412023-02-01 10:53:03 +0200138 select TIMER
Stephen Warren8c29e652015-11-23 10:32:01 -0700139 select TEGRA_ARMV8_COMMON
Thierry Reding45ad0b02019-04-15 11:32:18 +0200140 select TEGRA_CLKRST
Michal Simek84f3dec2018-07-23 15:55:13 +0200141 select TEGRA_GPIO
Thierry Redingc3598a42019-04-15 11:32:19 +0200142 select TEGRA_GP_PADCTRL
Thierry Reding17987bb2019-04-15 11:32:20 +0200143 select TEGRA_MC
Stephen Warren905752c2016-09-13 10:46:00 -0600144 select TEGRA_NO_BPMP
Thierry Reding7c0b1502019-04-15 11:32:21 +0200145 select TEGRA_PINCTRL
Thierry Reding8ffbcfc2019-04-15 11:32:22 +0200146 select TEGRA_PMC
Thierry Redingce7eb162019-04-15 11:32:25 +0200147 select TEGRA_PMC_SECURE
Svyatoslav Ryhel79a7e412023-02-01 10:53:03 +0200148 select TEGRA_TIMER
Tom Warrenab0cc6b2015-03-04 16:36:00 -0700149
Stephen Warren03667eb2016-05-12 13:32:55 -0600150config TEGRA186
151 bool "Tegra186 family"
Stephen Warrene0e2b262016-06-17 09:43:57 -0600152 select DM_MAILBOX
Tom Rini249f11f2021-08-19 14:19:39 -0400153 select GICV2
Stephen Warrena2148922016-08-08 09:41:34 -0600154 select TEGRA186_BPMP
Stephen Warrene8e3f202016-08-08 11:28:24 -0600155 select TEGRA186_CLOCK
Stephen Warren03667eb2016-05-12 13:32:55 -0600156 select TEGRA186_GPIO
Stephen Warrenfccc9c52016-08-08 11:28:25 -0600157 select TEGRA186_RESET
Stephen Warren03667eb2016-05-12 13:32:55 -0600158 select TEGRA_ARMV8_COMMON
Stephen Warrene0e2b262016-06-17 09:43:57 -0600159 select TEGRA_HSP
Stephen Warrenadf3abd2016-07-18 12:17:11 -0600160 select TEGRA_IVC
Stephen Warren03667eb2016-05-12 13:32:55 -0600161
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900162endchoice
163
Stephen Warren5a44ab42016-01-26 10:59:42 -0700164config TEGRA_DISCONNECT_UDC_ON_BOOT
165 bool "Disconnect USB device mode controller on boot"
Thierry Reding4e9260c2019-04-15 11:32:26 +0200166 depends on CI_UDC
Stephen Warren5a44ab42016-01-26 10:59:42 -0700167 default y
168 help
169 When loading U-Boot into RAM over USB protocols using tools such as
170 tegrarcm or L4T's exec-uboot.sh/tegraflash.py, Tegra's USB device
171 mode controller is initialized and enumerated by the host PC running
172 the tool. Unfortunately, these tools do not shut down the USB
173 controller before executing the downloaded code, and so the host PC
174 does not "de-enumerate" the USB device. This option shuts down the
175 USB controller when U-Boot boots to avoid leaving a stale USB device
176 present.
177
Tom Rinid8d1fb62022-03-30 18:07:13 -0400178config CI_UDC_HAS_HOSTPC
179 def_bool y
180 depends on CI_UDC && !TEGRA20
181
Simon Glass838723b2015-02-11 16:32:59 -0700182config SYS_MALLOC_F_LEN
183 default 0x1800
184
Masahiro Yamadaed1632a2015-02-20 17:04:04 +0900185source "arch/arm/mach-tegra/tegra20/Kconfig"
186source "arch/arm/mach-tegra/tegra30/Kconfig"
187source "arch/arm/mach-tegra/tegra114/Kconfig"
188source "arch/arm/mach-tegra/tegra124/Kconfig"
Tom Warrenab0cc6b2015-03-04 16:36:00 -0700189source "arch/arm/mach-tegra/tegra210/Kconfig"
Stephen Warren03667eb2016-05-12 13:32:55 -0600190source "arch/arm/mach-tegra/tegra186/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900191
Tom Rini4b3e7c02022-12-02 16:42:45 -0500192config TEGRA_SPI
193 def_bool y
194 depends on TEGRA20_SFLASH || TEGRA20_SLINK || TEGRA114_SPI
195
196choice
197 prompt "UART to use for console"
198 depends on TEGRA_PINCTRL
199 default TEGRA_ENABLE_UARTA
200
201config TEGRA_ENABLE_UARTA
202 bool "Use UARTA"
203
204config TEGRA_ENABLE_UARTB
205 bool "Use UARTB"
206
207config TEGRA_ENABLE_UARTC
208 bool "Use UARTC"
209
210config TEGRA_ENABLE_UARTD
211 bool "Use UARTD"
212
213endchoice
214
Tom Rini4dbaf6f2022-06-08 08:24:33 -0400215config TEGRA_GPU
216 bool "Enable setting up the GPU"
217 depends on TEGRA124 || TEGRA210
218
Simon Glassbd74b032017-05-17 03:25:11 -0600219config CMD_ENTERRCM
220 bool "Enable 'enterrcm' command"
221 default y
222 help
223 Tegra's boot ROM supports a mode whereby code may be downloaded and
224 flash-programmed over a USB connection. On dev boards, this is
225 typically entered by holding down a "force recovery" button and
226 resetting the CPU. However, not all boards have such a button (one
227 example is the Compulab Trimslice), so a method to enter RCM from
228 software is useful.
229
230 Even on boards other than Trimslice, controlling this over a UART
231 may be useful, e.g. to allow simple remote control without the need
232 for mechanical button actuators, or hooking up relays/... to the
233 button.
234
Ramin Khonsarif2f708d2023-02-14 19:35:37 +0200235config CMD_EBTUPDATE
236 bool "Enable 'ebtupdate' command"
Svyatoslav Ryhelf8700e42023-02-14 19:35:38 +0200237 depends on TEGRA20 || TEGRA30
Ramin Khonsarif2f708d2023-02-14 19:35:37 +0200238 select TEGRA_CRYPTO
239 help
240 Updating u-boot from within u-boot in rather complex or even
241 impossible on production devices. To make it easier procedure of
242 re-cryption was created. If your device was re-crypted choose Y.
243
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900244endif