blob: 311266400df9e1e4316f095ebe36f0d24281c659 [file] [log] [blame]
Trevor Woerner18138ab2020-05-06 08:02:41 -04001if ARCH_TEGRA
Masahiro Yamadaddd960e2014-08-31 07:10:56 +09002
Simon Glass83061db2021-07-10 21:14:30 -06003config SPL_GPIO
Simon Glass53b5bf32016-09-12 23:18:39 -06004 default y
5
Simon Glass77d2f7f2016-09-12 23:18:41 -06006config SPL_LIBCOMMON_SUPPORT
7 default y
8
Simon Glasscc4288e2016-09-12 23:18:43 -06009config SPL_LIBGENERIC_SUPPORT
10 default y
11
Simon Glasse00f76c2016-09-12 23:18:56 -060012config SPL_SERIAL_SUPPORT
13 default y
14
Thierry Redingb64e0b92019-04-15 11:32:18 +020015config TEGRA_CLKRST
16 bool
17
Thierry Reding9e578192019-04-15 11:32:19 +020018config TEGRA_GP_PADCTRL
19 bool
20
Stephen Warren49626ea2016-07-18 12:17:11 -060021config TEGRA_IVC
22 bool "Tegra IVC protocol"
23 help
24 IVC (Inter-VM Communication) protocol is a Tegra-specific IPC
25 (Inter Processor Communication) framework. Within the context of
26 U-Boot, it is typically used for communication between the main CPU
27 and various auxiliary processors.
28
Thierry Reding1a869c72019-04-15 11:32:20 +020029config TEGRA_MC
30 bool
31
Thierry Reding07ea02b2019-04-15 11:32:21 +020032config TEGRA_PINCTRL
33 bool
34
Thierry Redinge19143b2019-04-15 11:32:22 +020035config TEGRA_PMC
36 bool
37
Thierry Redingf9ec2ec2019-04-15 11:32:25 +020038config TEGRA_PMC_SECURE
39 bool
40 depends on TEGRA_PMC
41
Stephen Warren15bcc622015-11-23 10:32:01 -070042config TEGRA_COMMON
43 bool "Tegra common options"
Michal Simek5ed063d2018-07-23 15:55:13 +020044 select BOARD_EARLY_INIT_F
Stephen Warren140a9ea2016-09-13 10:46:00 -060045 select CLK
Tom Warren56079ec2015-07-17 08:12:51 -070046 select DM
Simon Glass96350f72015-11-29 13:18:01 -070047 select DM_ETH
Tom Warren56079ec2015-07-17 08:12:51 -070048 select DM_GPIO
Stephen Warren15bcc622015-11-23 10:32:01 -070049 select DM_I2C
Simon Glassf77f5e92015-10-18 21:17:16 -060050 select DM_KEYBOARD
Tom Warren6a474db2016-09-13 10:45:48 -060051 select DM_MMC
Simon Glass91c08af2016-01-30 16:38:01 -070052 select DM_PWM
Stephen Warren140a9ea2016-09-13 10:46:00 -060053 select DM_RESET
Stephen Warren15bcc622015-11-23 10:32:01 -070054 select DM_SERIAL
55 select DM_SPI
56 select DM_SPI_FLASH
Stephen Warren140a9ea2016-09-13 10:46:00 -060057 select MISC
Stephen Warren15bcc622015-11-23 10:32:01 -070058 select OF_CONTROL
Michal Simek5ed063d2018-07-23 15:55:13 +020059 select SPI
Michal Simek08a00cb2018-07-23 15:55:14 +020060 imply CMD_DM
Daniel Thompson221a9492017-05-19 17:26:58 +010061 imply CRC32_VERIFY
Stephen Warren15bcc622015-11-23 10:32:01 -070062
Stephen Warren140a9ea2016-09-13 10:46:00 -060063config TEGRA_NO_BPMP
64 bool "Tegra common options for SoCs without BPMP"
65 select TEGRA_CAR
66 select TEGRA_CAR_CLOCK
67 select TEGRA_CAR_RESET
68
Stephen Warren15bcc622015-11-23 10:32:01 -070069config TEGRA_ARMV7_COMMON
70 bool "Tegra 32-bit common options"
Simon Glass30770262020-07-19 13:56:00 -060071 select BINMAN
Lokesh Vutlaacf15002018-04-26 18:21:26 +053072 select CPU_V7A
Stephen Warren15bcc622015-11-23 10:32:01 -070073 select SPL
Ley Foon Tan0680f1b2017-05-03 17:13:32 +080074 select SPL_BOARD_INIT if SPL
Stephen Warren15bcc622015-11-23 10:32:01 -070075 select SUPPORT_SPL
Thierry Redingb64e0b92019-04-15 11:32:18 +020076 select TEGRA_CLKRST
Stephen Warren15bcc622015-11-23 10:32:01 -070077 select TEGRA_COMMON
Stephen Warren601800b2016-05-12 12:07:41 -060078 select TEGRA_GPIO
Thierry Reding9e578192019-04-15 11:32:19 +020079 select TEGRA_GP_PADCTRL
Thierry Reding1a869c72019-04-15 11:32:20 +020080 select TEGRA_MC
Stephen Warren140a9ea2016-09-13 10:46:00 -060081 select TEGRA_NO_BPMP
Thierry Reding07ea02b2019-04-15 11:32:21 +020082 select TEGRA_PINCTRL
Thierry Redinge19143b2019-04-15 11:32:22 +020083 select TEGRA_PMC
Stephen Warren15bcc622015-11-23 10:32:01 -070084
85config TEGRA_ARMV8_COMMON
86 bool "Tegra 64-bit common options"
87 select ARM64
Masahiro Yamada382de4a2019-06-26 13:51:46 +090088 select INIT_SP_RELATIVE
Stephen Warrenddecaaf2018-01-03 14:31:52 -070089 select LINUX_KERNEL_IMAGE_HEADER
Thierry Reding74a50ac2019-04-15 11:32:32 +020090 select POSITION_INDEPENDENT
Stephen Warren15bcc622015-11-23 10:32:01 -070091 select TEGRA_COMMON
Tom Warren56079ec2015-07-17 08:12:51 -070092
Stephen Warrenddecaaf2018-01-03 14:31:52 -070093if TEGRA_ARMV8_COMMON
94config LNX_KRNL_IMG_TEXT_OFFSET_BASE
95 default 0x80000000
96endif
97
Masahiro Yamadaddd960e2014-08-31 07:10:56 +090098choice
99 prompt "Tegra SoC select"
Joe Hershbergera26cd042015-05-12 14:46:23 -0500100 optional
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900101
102config TEGRA20
103 bool "Tegra20 family"
Tom Rini8dda2e22017-03-07 07:13:42 -0500104 select ARM_ERRATA_716044
105 select ARM_ERRATA_742230
106 select ARM_ERRATA_751472
Tom Warren56079ec2015-07-17 08:12:51 -0700107 select TEGRA_ARMV7_COMMON
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900108
109config TEGRA30
110 bool "Tegra30 family"
Tom Rini8dda2e22017-03-07 07:13:42 -0500111 select ARM_ERRATA_743622
112 select ARM_ERRATA_751472
Tom Warren56079ec2015-07-17 08:12:51 -0700113 select TEGRA_ARMV7_COMMON
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900114
115config TEGRA114
116 bool "Tegra114 family"
Tom Warren56079ec2015-07-17 08:12:51 -0700117 select TEGRA_ARMV7_COMMON
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900118
119config TEGRA124
120 bool "Tegra124 family"
Tom Warren56079ec2015-07-17 08:12:51 -0700121 select TEGRA_ARMV7_COMMON
Simon Glass66de3ee2017-07-25 08:29:58 -0600122 imply REGMAP
123 imply SYSCON
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900124
Tom Warren7aaa5a62015-03-04 16:36:00 -0700125config TEGRA210
126 bool "Tegra210 family"
Tom Rini5afdcca2021-08-19 14:19:39 -0400127 select GICV2
Stephen Warren15bcc622015-11-23 10:32:01 -0700128 select TEGRA_ARMV8_COMMON
Thierry Redingb64e0b92019-04-15 11:32:18 +0200129 select TEGRA_CLKRST
Michal Simek5ed063d2018-07-23 15:55:13 +0200130 select TEGRA_GPIO
Thierry Reding9e578192019-04-15 11:32:19 +0200131 select TEGRA_GP_PADCTRL
Thierry Reding1a869c72019-04-15 11:32:20 +0200132 select TEGRA_MC
Stephen Warren140a9ea2016-09-13 10:46:00 -0600133 select TEGRA_NO_BPMP
Thierry Reding07ea02b2019-04-15 11:32:21 +0200134 select TEGRA_PINCTRL
Thierry Redinge19143b2019-04-15 11:32:22 +0200135 select TEGRA_PMC
Thierry Redingf9ec2ec2019-04-15 11:32:25 +0200136 select TEGRA_PMC_SECURE
Tom Warren7aaa5a62015-03-04 16:36:00 -0700137
Stephen Warrenc7ba99c2016-05-12 13:32:55 -0600138config TEGRA186
139 bool "Tegra186 family"
Stephen Warren0f67e232016-06-17 09:43:57 -0600140 select DM_MAILBOX
Tom Rini5afdcca2021-08-19 14:19:39 -0400141 select GICV2
Stephen Warren73dd5c42016-08-08 09:41:34 -0600142 select TEGRA186_BPMP
Stephen Warrend9fd7002016-08-08 11:28:24 -0600143 select TEGRA186_CLOCK
Stephen Warrenc7ba99c2016-05-12 13:32:55 -0600144 select TEGRA186_GPIO
Stephen Warren4dd99d12016-08-08 11:28:25 -0600145 select TEGRA186_RESET
Stephen Warrenc7ba99c2016-05-12 13:32:55 -0600146 select TEGRA_ARMV8_COMMON
Stephen Warren0f67e232016-06-17 09:43:57 -0600147 select TEGRA_HSP
Stephen Warren49626ea2016-07-18 12:17:11 -0600148 select TEGRA_IVC
Stephen Warrenc7ba99c2016-05-12 13:32:55 -0600149
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900150endchoice
151
Stephen Warrendd8204d2016-01-26 10:59:42 -0700152config TEGRA_DISCONNECT_UDC_ON_BOOT
153 bool "Disconnect USB device mode controller on boot"
Thierry Reding836a56e2019-04-15 11:32:26 +0200154 depends on CI_UDC
Stephen Warrendd8204d2016-01-26 10:59:42 -0700155 default y
156 help
157 When loading U-Boot into RAM over USB protocols using tools such as
158 tegrarcm or L4T's exec-uboot.sh/tegraflash.py, Tegra's USB device
159 mode controller is initialized and enumerated by the host PC running
160 the tool. Unfortunately, these tools do not shut down the USB
161 controller before executing the downloaded code, and so the host PC
162 does not "de-enumerate" the USB device. This option shuts down the
163 USB controller when U-Boot boots to avoid leaving a stale USB device
164 present.
165
Simon Glassb724bd72015-02-11 16:32:59 -0700166config SYS_MALLOC_F_LEN
167 default 0x1800
168
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900169source "arch/arm/mach-tegra/tegra20/Kconfig"
170source "arch/arm/mach-tegra/tegra30/Kconfig"
171source "arch/arm/mach-tegra/tegra114/Kconfig"
172source "arch/arm/mach-tegra/tegra124/Kconfig"
Tom Warren7aaa5a62015-03-04 16:36:00 -0700173source "arch/arm/mach-tegra/tegra210/Kconfig"
Stephen Warrenc7ba99c2016-05-12 13:32:55 -0600174source "arch/arm/mach-tegra/tegra186/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900175
Simon Glass42e6f852017-05-17 03:25:11 -0600176config CMD_ENTERRCM
177 bool "Enable 'enterrcm' command"
178 default y
179 help
180 Tegra's boot ROM supports a mode whereby code may be downloaded and
181 flash-programmed over a USB connection. On dev boards, this is
182 typically entered by holding down a "force recovery" button and
183 resetting the CPU. However, not all boards have such a button (one
184 example is the Compulab Trimslice), so a method to enter RCM from
185 software is useful.
186
187 Even on boards other than Trimslice, controlling this over a UART
188 may be useful, e.g. to allow simple remote control without the need
189 for mechanical button actuators, or hooking up relays/... to the
190 button.
191
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900192endif