Trevor Woerner | 513f640 | 2020-05-06 08:02:41 -0400 | [diff] [blame] | 1 | if ARCH_TEGRA |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 2 | |
Simon Glass | 035939e | 2021-07-10 21:14:30 -0600 | [diff] [blame] | 3 | config SPL_GPIO |
Simon Glass | 0bdfc3e | 2016-09-12 23:18:39 -0600 | [diff] [blame] | 4 | default y |
| 5 | |
Simon Glass | f2a8946 | 2016-09-12 23:18:41 -0600 | [diff] [blame] | 6 | config SPL_LIBCOMMON_SUPPORT |
| 7 | default y |
| 8 | |
Simon Glass | b16c92c | 2016-09-12 23:18:43 -0600 | [diff] [blame] | 9 | config SPL_LIBGENERIC_SUPPORT |
| 10 | default y |
| 11 | |
Simon Glass | f4d6039 | 2021-08-08 12:20:12 -0600 | [diff] [blame] | 12 | config SPL_SERIAL |
Simon Glass | e076d6f | 2016-09-12 23:18:56 -0600 | [diff] [blame] | 13 | default y |
| 14 | |
Thierry Reding | 45ad0b0 | 2019-04-15 11:32:18 +0200 | [diff] [blame] | 15 | config TEGRA_CLKRST |
| 16 | bool |
| 17 | |
Svyatoslav Ryhel | 7d5a2f4 | 2023-02-14 19:35:35 +0200 | [diff] [blame] | 18 | config TEGRA_CRYPTO |
| 19 | bool "Tegra AES128 crypto module" |
| 20 | select AES |
Svyatoslav Ryhel | 7d5a2f4 | 2023-02-14 19:35:35 +0200 | [diff] [blame] | 21 | |
Thierry Reding | c3598a4 | 2019-04-15 11:32:19 +0200 | [diff] [blame] | 22 | config TEGRA_GP_PADCTRL |
| 23 | bool |
| 24 | |
Stephen Warren | adf3abd | 2016-07-18 12:17:11 -0600 | [diff] [blame] | 25 | config 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 Reding | 17987bb | 2019-04-15 11:32:20 +0200 | [diff] [blame] | 33 | config TEGRA_MC |
| 34 | bool |
| 35 | |
Thierry Reding | 8ffbcfc | 2019-04-15 11:32:22 +0200 | [diff] [blame] | 36 | config TEGRA_PMC |
| 37 | bool |
| 38 | |
Thierry Reding | ce7eb16 | 2019-04-15 11:32:25 +0200 | [diff] [blame] | 39 | config TEGRA_PMC_SECURE |
| 40 | bool |
| 41 | depends on TEGRA_PMC |
| 42 | |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 43 | config TEGRA_COMMON |
| 44 | bool "Tegra common options" |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 45 | select BOARD_EARLY_INIT_F |
Stephen Warren | 905752c | 2016-09-13 10:46:00 -0600 | [diff] [blame] | 46 | select CLK |
Tom Warren | 7b5002e | 2015-07-17 08:12:51 -0700 | [diff] [blame] | 47 | select DM |
Tom Warren | 7b5002e | 2015-07-17 08:12:51 -0700 | [diff] [blame] | 48 | select DM_GPIO |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 49 | select DM_I2C |
Simon Glass | 01e9940 | 2015-10-18 21:17:16 -0600 | [diff] [blame] | 50 | select DM_KEYBOARD |
Tom Warren | a66f772 | 2016-09-13 10:45:48 -0600 | [diff] [blame] | 51 | select DM_MMC |
Simon Glass | d8af3c9 | 2016-01-30 16:38:01 -0700 | [diff] [blame] | 52 | select DM_PWM |
Stephen Warren | 905752c | 2016-09-13 10:46:00 -0600 | [diff] [blame] | 53 | select DM_RESET |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 54 | select DM_SERIAL |
| 55 | select DM_SPI |
| 56 | select DM_SPI_FLASH |
Stephen Warren | 905752c | 2016-09-13 10:46:00 -0600 | [diff] [blame] | 57 | select MISC |
Tom Rini | ddb1ec1 | 2024-01-10 13:46:10 -0500 | [diff] [blame] | 58 | select MTD |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 59 | select OF_CONTROL |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 60 | select SPI |
Svyatoslav Ryhel | 4936bad | 2023-10-24 10:49:04 +0300 | [diff] [blame] | 61 | select SYSRESET |
Svyatoslav Ryhel | 4936bad | 2023-10-24 10:49:04 +0300 | [diff] [blame] | 62 | select SYSRESET_TEGRA |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 63 | imply CMD_DM |
Daniel Thompson | a9e2c67 | 2017-05-19 17:26:58 +0100 | [diff] [blame] | 64 | imply CRC32_VERIFY |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 65 | |
Stephen Warren | 905752c | 2016-09-13 10:46:00 -0600 | [diff] [blame] | 66 | config TEGRA_NO_BPMP |
| 67 | bool "Tegra common options for SoCs without BPMP" |
| 68 | select TEGRA_CAR |
| 69 | select TEGRA_CAR_CLOCK |
| 70 | select TEGRA_CAR_RESET |
| 71 | |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 72 | config TEGRA_ARMV7_COMMON |
| 73 | bool "Tegra 32-bit common options" |
Simon Glass | a0c3276 | 2020-07-19 13:56:00 -0600 | [diff] [blame] | 74 | select BINMAN |
Lokesh Vutla | 81b1a67 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 75 | select CPU_V7A |
Svyatoslav Ryhel | 1396110 | 2023-11-27 11:54:21 +0200 | [diff] [blame] | 76 | select PINCTRL |
| 77 | select PINCTRL_TEGRA |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 78 | select SPL |
Ley Foon Tan | 48fcc4a | 2017-05-03 17:13:32 +0800 | [diff] [blame] | 79 | select SPL_BOARD_INIT if SPL |
Svyatoslav Ryhel | 2447ff1 | 2023-12-01 13:22:00 +0200 | [diff] [blame] | 80 | select SPL_DM if SPL |
Svyatoslav Ryhel | 1396110 | 2023-11-27 11:54:21 +0200 | [diff] [blame] | 81 | select SPL_PINCTRL if SPL |
| 82 | select SPL_PINCTRL_TEGRA if SPL |
Tom Rini | e1e8544 | 2021-08-27 21:18:30 -0400 | [diff] [blame] | 83 | select SPL_SKIP_LOWLEVEL_INIT_ONLY if SPL |
Svyatoslav Ryhel | 2447ff1 | 2023-12-01 13:22:00 +0200 | [diff] [blame] | 84 | select SPL_SYSRESET if SPL |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 85 | select SUPPORT_SPL |
Svyatoslav Ryhel | 79a7e41 | 2023-02-01 10:53:03 +0200 | [diff] [blame] | 86 | select TIMER |
Thierry Reding | 45ad0b0 | 2019-04-15 11:32:18 +0200 | [diff] [blame] | 87 | select TEGRA_CLKRST |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 88 | select TEGRA_COMMON |
Stephen Warren | af974be | 2016-05-12 12:07:41 -0600 | [diff] [blame] | 89 | select TEGRA_GPIO |
Thierry Reding | c3598a4 | 2019-04-15 11:32:19 +0200 | [diff] [blame] | 90 | select TEGRA_GP_PADCTRL |
Thierry Reding | 17987bb | 2019-04-15 11:32:20 +0200 | [diff] [blame] | 91 | select TEGRA_MC |
Stephen Warren | 905752c | 2016-09-13 10:46:00 -0600 | [diff] [blame] | 92 | select TEGRA_NO_BPMP |
Thierry Reding | 8ffbcfc | 2019-04-15 11:32:22 +0200 | [diff] [blame] | 93 | select TEGRA_PMC |
Svyatoslav Ryhel | 79a7e41 | 2023-02-01 10:53:03 +0200 | [diff] [blame] | 94 | select TEGRA_TIMER |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 95 | |
| 96 | config TEGRA_ARMV8_COMMON |
| 97 | bool "Tegra 64-bit common options" |
| 98 | select ARM64 |
Masahiro Yamada | bf4645c | 2019-06-26 13:51:46 +0900 | [diff] [blame] | 99 | select INIT_SP_RELATIVE |
Stephen Warren | eab3605 | 2018-01-03 14:31:52 -0700 | [diff] [blame] | 100 | select LINUX_KERNEL_IMAGE_HEADER |
Thierry Reding | 29ce1d0 | 2019-04-15 11:32:32 +0200 | [diff] [blame] | 101 | select POSITION_INDEPENDENT |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 102 | select TEGRA_COMMON |
Tom Warren | 7b5002e | 2015-07-17 08:12:51 -0700 | [diff] [blame] | 103 | |
Stephen Warren | eab3605 | 2018-01-03 14:31:52 -0700 | [diff] [blame] | 104 | if TEGRA_ARMV8_COMMON |
| 105 | config LNX_KRNL_IMG_TEXT_OFFSET_BASE |
| 106 | default 0x80000000 |
| 107 | endif |
| 108 | |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 109 | choice |
| 110 | prompt "Tegra SoC select" |
Joe Hershberger | f069960 | 2015-05-12 14:46:23 -0500 | [diff] [blame] | 111 | optional |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 112 | |
| 113 | config TEGRA20 |
| 114 | bool "Tegra20 family" |
Tom Rini | bacb52c | 2017-03-07 07:13:42 -0500 | [diff] [blame] | 115 | select ARM_ERRATA_716044 |
| 116 | select ARM_ERRATA_742230 |
| 117 | select ARM_ERRATA_751472 |
Tom Warren | 7b5002e | 2015-07-17 08:12:51 -0700 | [diff] [blame] | 118 | select TEGRA_ARMV7_COMMON |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 119 | |
| 120 | config TEGRA30 |
| 121 | bool "Tegra30 family" |
Tom Rini | bacb52c | 2017-03-07 07:13:42 -0500 | [diff] [blame] | 122 | select ARM_ERRATA_743622 |
| 123 | select ARM_ERRATA_751472 |
Tom Warren | 7b5002e | 2015-07-17 08:12:51 -0700 | [diff] [blame] | 124 | select TEGRA_ARMV7_COMMON |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 125 | |
| 126 | config TEGRA114 |
| 127 | bool "Tegra114 family" |
Tom Warren | 7b5002e | 2015-07-17 08:12:51 -0700 | [diff] [blame] | 128 | select TEGRA_ARMV7_COMMON |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 129 | |
| 130 | config TEGRA124 |
| 131 | bool "Tegra124 family" |
Tom Warren | 7b5002e | 2015-07-17 08:12:51 -0700 | [diff] [blame] | 132 | select TEGRA_ARMV7_COMMON |
Simon Glass | 0662cf2 | 2017-07-25 08:29:58 -0600 | [diff] [blame] | 133 | imply REGMAP |
| 134 | imply SYSCON |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 135 | |
Tom Warren | ab0cc6b | 2015-03-04 16:36:00 -0700 | [diff] [blame] | 136 | config TEGRA210 |
| 137 | bool "Tegra210 family" |
Tom Rini | 249f11f | 2021-08-19 14:19:39 -0400 | [diff] [blame] | 138 | select GICV2 |
Svyatoslav Ryhel | 1396110 | 2023-11-27 11:54:21 +0200 | [diff] [blame] | 139 | select PINCTRL |
| 140 | select PINCTRL_TEGRA |
Svyatoslav Ryhel | 79a7e41 | 2023-02-01 10:53:03 +0200 | [diff] [blame] | 141 | select TIMER |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 142 | select TEGRA_ARMV8_COMMON |
Thierry Reding | 45ad0b0 | 2019-04-15 11:32:18 +0200 | [diff] [blame] | 143 | select TEGRA_CLKRST |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 144 | select TEGRA_GPIO |
Thierry Reding | c3598a4 | 2019-04-15 11:32:19 +0200 | [diff] [blame] | 145 | select TEGRA_GP_PADCTRL |
Thierry Reding | 17987bb | 2019-04-15 11:32:20 +0200 | [diff] [blame] | 146 | select TEGRA_MC |
Stephen Warren | 905752c | 2016-09-13 10:46:00 -0600 | [diff] [blame] | 147 | select TEGRA_NO_BPMP |
Thierry Reding | 8ffbcfc | 2019-04-15 11:32:22 +0200 | [diff] [blame] | 148 | select TEGRA_PMC |
Thierry Reding | ce7eb16 | 2019-04-15 11:32:25 +0200 | [diff] [blame] | 149 | select TEGRA_PMC_SECURE |
Svyatoslav Ryhel | 79a7e41 | 2023-02-01 10:53:03 +0200 | [diff] [blame] | 150 | select TEGRA_TIMER |
Tom Warren | ab0cc6b | 2015-03-04 16:36:00 -0700 | [diff] [blame] | 151 | |
Stephen Warren | 03667eb | 2016-05-12 13:32:55 -0600 | [diff] [blame] | 152 | config TEGRA186 |
| 153 | bool "Tegra186 family" |
Stephen Warren | e0e2b26 | 2016-06-17 09:43:57 -0600 | [diff] [blame] | 154 | select DM_MAILBOX |
Tom Rini | 249f11f | 2021-08-19 14:19:39 -0400 | [diff] [blame] | 155 | select GICV2 |
Stephen Warren | a214892 | 2016-08-08 09:41:34 -0600 | [diff] [blame] | 156 | select TEGRA186_BPMP |
Stephen Warren | e8e3f20 | 2016-08-08 11:28:24 -0600 | [diff] [blame] | 157 | select TEGRA186_CLOCK |
Stephen Warren | 03667eb | 2016-05-12 13:32:55 -0600 | [diff] [blame] | 158 | select TEGRA186_GPIO |
Stephen Warren | fccc9c5 | 2016-08-08 11:28:25 -0600 | [diff] [blame] | 159 | select TEGRA186_RESET |
Stephen Warren | 03667eb | 2016-05-12 13:32:55 -0600 | [diff] [blame] | 160 | select TEGRA_ARMV8_COMMON |
Stephen Warren | e0e2b26 | 2016-06-17 09:43:57 -0600 | [diff] [blame] | 161 | select TEGRA_HSP |
Stephen Warren | adf3abd | 2016-07-18 12:17:11 -0600 | [diff] [blame] | 162 | select TEGRA_IVC |
Stephen Warren | 03667eb | 2016-05-12 13:32:55 -0600 | [diff] [blame] | 163 | |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 164 | endchoice |
| 165 | |
Stephen Warren | 5a44ab4 | 2016-01-26 10:59:42 -0700 | [diff] [blame] | 166 | config TEGRA_DISCONNECT_UDC_ON_BOOT |
| 167 | bool "Disconnect USB device mode controller on boot" |
Thierry Reding | 4e9260c | 2019-04-15 11:32:26 +0200 | [diff] [blame] | 168 | depends on CI_UDC |
Stephen Warren | 5a44ab4 | 2016-01-26 10:59:42 -0700 | [diff] [blame] | 169 | default y |
| 170 | help |
| 171 | When loading U-Boot into RAM over USB protocols using tools such as |
| 172 | tegrarcm or L4T's exec-uboot.sh/tegraflash.py, Tegra's USB device |
| 173 | mode controller is initialized and enumerated by the host PC running |
| 174 | the tool. Unfortunately, these tools do not shut down the USB |
| 175 | controller before executing the downloaded code, and so the host PC |
| 176 | does not "de-enumerate" the USB device. This option shuts down the |
| 177 | USB controller when U-Boot boots to avoid leaving a stale USB device |
| 178 | present. |
| 179 | |
Svyatoslav Ryhel | d47c733 | 2023-12-11 11:29:40 +0200 | [diff] [blame] | 180 | config TEGRA_SUPPORT_NON_SECURE |
| 181 | bool "Support executing U-Boot in non-secure (NS) mode" |
Svyatoslav Ryhel | 0f6268c | 2023-12-11 11:37:07 +0200 | [diff] [blame] | 182 | depends on TEGRA114 || TEGRA124 |
Svyatoslav Ryhel | d47c733 | 2023-12-11 11:29:40 +0200 | [diff] [blame] | 183 | help |
| 184 | Certain impossible actions will be skipped if the CPU is in NS mode, |
| 185 | such as ARM architectural timer initialization. |
| 186 | |
Tom Rini | d8d1fb6 | 2022-03-30 18:07:13 -0400 | [diff] [blame] | 187 | config CI_UDC_HAS_HOSTPC |
| 188 | def_bool y |
| 189 | depends on CI_UDC && !TEGRA20 |
| 190 | |
Simon Glass | 838723b | 2015-02-11 16:32:59 -0700 | [diff] [blame] | 191 | config SYS_MALLOC_F_LEN |
| 192 | default 0x1800 |
| 193 | |
Masahiro Yamada | ed1632a | 2015-02-20 17:04:04 +0900 | [diff] [blame] | 194 | source "arch/arm/mach-tegra/tegra20/Kconfig" |
| 195 | source "arch/arm/mach-tegra/tegra30/Kconfig" |
| 196 | source "arch/arm/mach-tegra/tegra114/Kconfig" |
| 197 | source "arch/arm/mach-tegra/tegra124/Kconfig" |
Tom Warren | ab0cc6b | 2015-03-04 16:36:00 -0700 | [diff] [blame] | 198 | source "arch/arm/mach-tegra/tegra210/Kconfig" |
Stephen Warren | 03667eb | 2016-05-12 13:32:55 -0600 | [diff] [blame] | 199 | source "arch/arm/mach-tegra/tegra186/Kconfig" |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 200 | |
Tom Rini | 4b3e7c0 | 2022-12-02 16:42:45 -0500 | [diff] [blame] | 201 | config TEGRA_SPI |
| 202 | def_bool y |
| 203 | depends on TEGRA20_SFLASH || TEGRA20_SLINK || TEGRA114_SPI |
| 204 | |
| 205 | choice |
| 206 | prompt "UART to use for console" |
Svyatoslav Ryhel | 1396110 | 2023-11-27 11:54:21 +0200 | [diff] [blame] | 207 | depends on PINCTRL_TEGRA |
Tom Rini | 4b3e7c0 | 2022-12-02 16:42:45 -0500 | [diff] [blame] | 208 | default TEGRA_ENABLE_UARTA |
| 209 | |
| 210 | config TEGRA_ENABLE_UARTA |
| 211 | bool "Use UARTA" |
| 212 | |
| 213 | config TEGRA_ENABLE_UARTB |
| 214 | bool "Use UARTB" |
| 215 | |
| 216 | config TEGRA_ENABLE_UARTC |
| 217 | bool "Use UARTC" |
| 218 | |
| 219 | config TEGRA_ENABLE_UARTD |
| 220 | bool "Use UARTD" |
| 221 | |
Jonas Schwöbel | 02a01dc | 2024-01-21 18:18:03 +0200 | [diff] [blame] | 222 | config TEGRA_ENABLE_UARTE |
| 223 | bool "Use UARTE" |
| 224 | depends on TEGRA20 || TEGRA30 |
| 225 | |
Tom Rini | 4b3e7c0 | 2022-12-02 16:42:45 -0500 | [diff] [blame] | 226 | endchoice |
| 227 | |
Tom Rini | 4dbaf6f | 2022-06-08 08:24:33 -0400 | [diff] [blame] | 228 | config TEGRA_GPU |
| 229 | bool "Enable setting up the GPU" |
| 230 | depends on TEGRA124 || TEGRA210 |
| 231 | |
Simon Glass | bd74b03 | 2017-05-17 03:25:11 -0600 | [diff] [blame] | 232 | config CMD_ENTERRCM |
| 233 | bool "Enable 'enterrcm' command" |
| 234 | default y |
| 235 | help |
| 236 | Tegra's boot ROM supports a mode whereby code may be downloaded and |
| 237 | flash-programmed over a USB connection. On dev boards, this is |
| 238 | typically entered by holding down a "force recovery" button and |
| 239 | resetting the CPU. However, not all boards have such a button (one |
| 240 | example is the Compulab Trimslice), so a method to enter RCM from |
| 241 | software is useful. |
| 242 | |
| 243 | Even on boards other than Trimslice, controlling this over a UART |
| 244 | may be useful, e.g. to allow simple remote control without the need |
| 245 | for mechanical button actuators, or hooking up relays/... to the |
| 246 | button. |
| 247 | |
Ramin Khonsari | f2f708d | 2023-02-14 19:35:37 +0200 | [diff] [blame] | 248 | config CMD_EBTUPDATE |
| 249 | bool "Enable 'ebtupdate' command" |
Svyatoslav Ryhel | f8700e4 | 2023-02-14 19:35:38 +0200 | [diff] [blame] | 250 | depends on TEGRA20 || TEGRA30 |
Ramin Khonsari | f2f708d | 2023-02-14 19:35:37 +0200 | [diff] [blame] | 251 | select TEGRA_CRYPTO |
| 252 | help |
| 253 | Updating u-boot from within u-boot in rather complex or even |
| 254 | impossible on production devices. To make it easier procedure of |
| 255 | re-cryption was created. If your device was re-crypted choose Y. |
| 256 | |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 257 | endif |