blob: 4fc79ebadbfa796b21c58a04fb4fbdb6fed627fa [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
Thierry Redingc3598a42019-04-15 11:32:19 +020018config TEGRA_GP_PADCTRL
19 bool
20
Stephen Warrenadf3abd2016-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 Reding17987bb2019-04-15 11:32:20 +020029config TEGRA_MC
30 bool
31
Thierry Reding7c0b1502019-04-15 11:32:21 +020032config TEGRA_PINCTRL
33 bool
34
Thierry Reding8ffbcfc2019-04-15 11:32:22 +020035config TEGRA_PMC
36 bool
37
Thierry Redingce7eb162019-04-15 11:32:25 +020038config TEGRA_PMC_SECURE
39 bool
40 depends on TEGRA_PMC
41
Stephen Warren8c29e652015-11-23 10:32:01 -070042config TEGRA_COMMON
43 bool "Tegra common options"
Michal Simek84f3dec2018-07-23 15:55:13 +020044 select BOARD_EARLY_INIT_F
Stephen Warren905752c2016-09-13 10:46:00 -060045 select CLK
Tom Warren7b5002e2015-07-17 08:12:51 -070046 select DM
Tom Warren7b5002e2015-07-17 08:12:51 -070047 select DM_GPIO
Stephen Warren8c29e652015-11-23 10:32:01 -070048 select DM_I2C
Simon Glass01e99402015-10-18 21:17:16 -060049 select DM_KEYBOARD
Tom Warrena66f7722016-09-13 10:45:48 -060050 select DM_MMC
Simon Glassd8af3c92016-01-30 16:38:01 -070051 select DM_PWM
Stephen Warren905752c2016-09-13 10:46:00 -060052 select DM_RESET
Stephen Warren8c29e652015-11-23 10:32:01 -070053 select DM_SERIAL
54 select DM_SPI
55 select DM_SPI_FLASH
Stephen Warren905752c2016-09-13 10:46:00 -060056 select MISC
Stephen Warren8c29e652015-11-23 10:32:01 -070057 select OF_CONTROL
Michal Simek84f3dec2018-07-23 15:55:13 +020058 select SPI
Michal Simek2e7c8192018-07-23 15:55:14 +020059 imply CMD_DM
Daniel Thompsona9e2c672017-05-19 17:26:58 +010060 imply CRC32_VERIFY
Stephen Warren8c29e652015-11-23 10:32:01 -070061
Stephen Warren905752c2016-09-13 10:46:00 -060062config TEGRA_NO_BPMP
63 bool "Tegra common options for SoCs without BPMP"
64 select TEGRA_CAR
65 select TEGRA_CAR_CLOCK
66 select TEGRA_CAR_RESET
67
Stephen Warren8c29e652015-11-23 10:32:01 -070068config TEGRA_ARMV7_COMMON
69 bool "Tegra 32-bit common options"
Simon Glassa0c32762020-07-19 13:56:00 -060070 select BINMAN
Lokesh Vutla81b1a672018-04-26 18:21:26 +053071 select CPU_V7A
Stephen Warren8c29e652015-11-23 10:32:01 -070072 select SPL
Ley Foon Tan48fcc4a2017-05-03 17:13:32 +080073 select SPL_BOARD_INIT if SPL
Tom Rinie1e85442021-08-27 21:18:30 -040074 select SPL_SKIP_LOWLEVEL_INIT_ONLY if SPL
Stephen Warren8c29e652015-11-23 10:32:01 -070075 select SUPPORT_SPL
Svyatoslav Ryhel79a7e412023-02-01 10:53:03 +020076 select TIMER
Thierry Reding45ad0b02019-04-15 11:32:18 +020077 select TEGRA_CLKRST
Stephen Warren8c29e652015-11-23 10:32:01 -070078 select TEGRA_COMMON
Stephen Warrenaf974be2016-05-12 12:07:41 -060079 select TEGRA_GPIO
Thierry Redingc3598a42019-04-15 11:32:19 +020080 select TEGRA_GP_PADCTRL
Thierry Reding17987bb2019-04-15 11:32:20 +020081 select TEGRA_MC
Stephen Warren905752c2016-09-13 10:46:00 -060082 select TEGRA_NO_BPMP
Thierry Reding7c0b1502019-04-15 11:32:21 +020083 select TEGRA_PINCTRL
Thierry Reding8ffbcfc2019-04-15 11:32:22 +020084 select TEGRA_PMC
Svyatoslav Ryhel79a7e412023-02-01 10:53:03 +020085 select TEGRA_TIMER
Stephen Warren8c29e652015-11-23 10:32:01 -070086
87config TEGRA_ARMV8_COMMON
88 bool "Tegra 64-bit common options"
89 select ARM64
Masahiro Yamadabf4645c2019-06-26 13:51:46 +090090 select INIT_SP_RELATIVE
Stephen Warreneab36052018-01-03 14:31:52 -070091 select LINUX_KERNEL_IMAGE_HEADER
Thierry Reding29ce1d02019-04-15 11:32:32 +020092 select POSITION_INDEPENDENT
Stephen Warren8c29e652015-11-23 10:32:01 -070093 select TEGRA_COMMON
Tom Warren7b5002e2015-07-17 08:12:51 -070094
Stephen Warreneab36052018-01-03 14:31:52 -070095if TEGRA_ARMV8_COMMON
96config LNX_KRNL_IMG_TEXT_OFFSET_BASE
97 default 0x80000000
98endif
99
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900100choice
101 prompt "Tegra SoC select"
Joe Hershbergerf0699602015-05-12 14:46:23 -0500102 optional
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900103
104config TEGRA20
105 bool "Tegra20 family"
Tom Rinibacb52c2017-03-07 07:13:42 -0500106 select ARM_ERRATA_716044
107 select ARM_ERRATA_742230
108 select ARM_ERRATA_751472
Tom Warren7b5002e2015-07-17 08:12:51 -0700109 select TEGRA_ARMV7_COMMON
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900110
111config TEGRA30
112 bool "Tegra30 family"
Tom Rinibacb52c2017-03-07 07:13:42 -0500113 select ARM_ERRATA_743622
114 select ARM_ERRATA_751472
Tom Warren7b5002e2015-07-17 08:12:51 -0700115 select TEGRA_ARMV7_COMMON
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900116
117config TEGRA114
118 bool "Tegra114 family"
Tom Warren7b5002e2015-07-17 08:12:51 -0700119 select TEGRA_ARMV7_COMMON
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900120
121config TEGRA124
122 bool "Tegra124 family"
Tom Warren7b5002e2015-07-17 08:12:51 -0700123 select TEGRA_ARMV7_COMMON
Simon Glass0662cf22017-07-25 08:29:58 -0600124 imply REGMAP
125 imply SYSCON
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900126
Tom Warrenab0cc6b2015-03-04 16:36:00 -0700127config TEGRA210
128 bool "Tegra210 family"
Tom Rini249f11f2021-08-19 14:19:39 -0400129 select GICV2
Svyatoslav Ryhel79a7e412023-02-01 10:53:03 +0200130 select TIMER
Stephen Warren8c29e652015-11-23 10:32:01 -0700131 select TEGRA_ARMV8_COMMON
Thierry Reding45ad0b02019-04-15 11:32:18 +0200132 select TEGRA_CLKRST
Michal Simek84f3dec2018-07-23 15:55:13 +0200133 select TEGRA_GPIO
Thierry Redingc3598a42019-04-15 11:32:19 +0200134 select TEGRA_GP_PADCTRL
Thierry Reding17987bb2019-04-15 11:32:20 +0200135 select TEGRA_MC
Stephen Warren905752c2016-09-13 10:46:00 -0600136 select TEGRA_NO_BPMP
Thierry Reding7c0b1502019-04-15 11:32:21 +0200137 select TEGRA_PINCTRL
Thierry Reding8ffbcfc2019-04-15 11:32:22 +0200138 select TEGRA_PMC
Thierry Redingce7eb162019-04-15 11:32:25 +0200139 select TEGRA_PMC_SECURE
Svyatoslav Ryhel79a7e412023-02-01 10:53:03 +0200140 select TEGRA_TIMER
Tom Warrenab0cc6b2015-03-04 16:36:00 -0700141
Stephen Warren03667eb2016-05-12 13:32:55 -0600142config TEGRA186
143 bool "Tegra186 family"
Stephen Warrene0e2b262016-06-17 09:43:57 -0600144 select DM_MAILBOX
Tom Rini249f11f2021-08-19 14:19:39 -0400145 select GICV2
Stephen Warrena2148922016-08-08 09:41:34 -0600146 select TEGRA186_BPMP
Stephen Warrene8e3f202016-08-08 11:28:24 -0600147 select TEGRA186_CLOCK
Stephen Warren03667eb2016-05-12 13:32:55 -0600148 select TEGRA186_GPIO
Stephen Warrenfccc9c52016-08-08 11:28:25 -0600149 select TEGRA186_RESET
Stephen Warren03667eb2016-05-12 13:32:55 -0600150 select TEGRA_ARMV8_COMMON
Stephen Warrene0e2b262016-06-17 09:43:57 -0600151 select TEGRA_HSP
Stephen Warrenadf3abd2016-07-18 12:17:11 -0600152 select TEGRA_IVC
Stephen Warren03667eb2016-05-12 13:32:55 -0600153
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900154endchoice
155
Stephen Warren5a44ab42016-01-26 10:59:42 -0700156config TEGRA_DISCONNECT_UDC_ON_BOOT
157 bool "Disconnect USB device mode controller on boot"
Thierry Reding4e9260c2019-04-15 11:32:26 +0200158 depends on CI_UDC
Stephen Warren5a44ab42016-01-26 10:59:42 -0700159 default y
160 help
161 When loading U-Boot into RAM over USB protocols using tools such as
162 tegrarcm or L4T's exec-uboot.sh/tegraflash.py, Tegra's USB device
163 mode controller is initialized and enumerated by the host PC running
164 the tool. Unfortunately, these tools do not shut down the USB
165 controller before executing the downloaded code, and so the host PC
166 does not "de-enumerate" the USB device. This option shuts down the
167 USB controller when U-Boot boots to avoid leaving a stale USB device
168 present.
169
Tom Rinid8d1fb62022-03-30 18:07:13 -0400170config CI_UDC_HAS_HOSTPC
171 def_bool y
172 depends on CI_UDC && !TEGRA20
173
Simon Glass838723b2015-02-11 16:32:59 -0700174config SYS_MALLOC_F_LEN
175 default 0x1800
176
Masahiro Yamadaed1632a2015-02-20 17:04:04 +0900177source "arch/arm/mach-tegra/tegra20/Kconfig"
178source "arch/arm/mach-tegra/tegra30/Kconfig"
179source "arch/arm/mach-tegra/tegra114/Kconfig"
180source "arch/arm/mach-tegra/tegra124/Kconfig"
Tom Warrenab0cc6b2015-03-04 16:36:00 -0700181source "arch/arm/mach-tegra/tegra210/Kconfig"
Stephen Warren03667eb2016-05-12 13:32:55 -0600182source "arch/arm/mach-tegra/tegra186/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900183
Tom Rini4b3e7c02022-12-02 16:42:45 -0500184config TEGRA_SPI
185 def_bool y
186 depends on TEGRA20_SFLASH || TEGRA20_SLINK || TEGRA114_SPI
187
188choice
189 prompt "UART to use for console"
190 depends on TEGRA_PINCTRL
191 default TEGRA_ENABLE_UARTA
192
193config TEGRA_ENABLE_UARTA
194 bool "Use UARTA"
195
196config TEGRA_ENABLE_UARTB
197 bool "Use UARTB"
198
199config TEGRA_ENABLE_UARTC
200 bool "Use UARTC"
201
202config TEGRA_ENABLE_UARTD
203 bool "Use UARTD"
204
205endchoice
206
Tom Rini4dbaf6f2022-06-08 08:24:33 -0400207config TEGRA_GPU
208 bool "Enable setting up the GPU"
209 depends on TEGRA124 || TEGRA210
210
Simon Glassbd74b032017-05-17 03:25:11 -0600211config CMD_ENTERRCM
212 bool "Enable 'enterrcm' command"
213 default y
214 help
215 Tegra's boot ROM supports a mode whereby code may be downloaded and
216 flash-programmed over a USB connection. On dev boards, this is
217 typically entered by holding down a "force recovery" button and
218 resetting the CPU. However, not all boards have such a button (one
219 example is the Compulab Trimslice), so a method to enter RCM from
220 software is useful.
221
222 Even on boards other than Trimslice, controlling this over a UART
223 may be useful, e.g. to allow simple remote control without the need
224 for mechanical button actuators, or hooking up relays/... to the
225 button.
226
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900227endif