Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 1 | if TEGRA |
| 2 | |
Simon Glass | 0bdfc3e | 2016-09-12 23:18:39 -0600 | [diff] [blame] | 3 | config SPL_GPIO_SUPPORT |
| 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 | e076d6f | 2016-09-12 23:18:56 -0600 | [diff] [blame] | 12 | config SPL_SERIAL_SUPPORT |
| 13 | default y |
| 14 | |
Thierry Reding | 45ad0b0 | 2019-04-15 11:32:18 +0200 | [diff] [blame] | 15 | config TEGRA_CLKRST |
| 16 | bool |
| 17 | |
Thierry Reding | c3598a4 | 2019-04-15 11:32:19 +0200 | [diff] [blame] | 18 | config TEGRA_GP_PADCTRL |
| 19 | bool |
| 20 | |
Stephen Warren | adf3abd | 2016-07-18 12:17:11 -0600 | [diff] [blame] | 21 | config 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 Reding | 17987bb | 2019-04-15 11:32:20 +0200 | [diff] [blame^] | 29 | config TEGRA_MC |
| 30 | bool |
| 31 | |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 32 | config TEGRA_COMMON |
| 33 | bool "Tegra common options" |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 34 | select BINMAN |
| 35 | select BOARD_EARLY_INIT_F |
Stephen Warren | 905752c | 2016-09-13 10:46:00 -0600 | [diff] [blame] | 36 | select CLK |
Tom Warren | 7b5002e | 2015-07-17 08:12:51 -0700 | [diff] [blame] | 37 | select DM |
Simon Glass | a403c9f | 2015-11-29 13:18:01 -0700 | [diff] [blame] | 38 | select DM_ETH |
Tom Warren | 7b5002e | 2015-07-17 08:12:51 -0700 | [diff] [blame] | 39 | select DM_GPIO |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 40 | select DM_I2C |
Simon Glass | 01e9940 | 2015-10-18 21:17:16 -0600 | [diff] [blame] | 41 | select DM_KEYBOARD |
Tom Warren | a66f772 | 2016-09-13 10:45:48 -0600 | [diff] [blame] | 42 | select DM_MMC |
Simon Glass | d8af3c9 | 2016-01-30 16:38:01 -0700 | [diff] [blame] | 43 | select DM_PWM |
Stephen Warren | 905752c | 2016-09-13 10:46:00 -0600 | [diff] [blame] | 44 | select DM_RESET |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 45 | select DM_SERIAL |
| 46 | select DM_SPI |
| 47 | select DM_SPI_FLASH |
Stephen Warren | 905752c | 2016-09-13 10:46:00 -0600 | [diff] [blame] | 48 | select MISC |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 49 | select OF_CONTROL |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 50 | select SPI |
Simon Glass | fe4ee97 | 2016-02-16 18:09:19 -0700 | [diff] [blame] | 51 | select VIDCONSOLE_AS_LCD if DM_VIDEO |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 52 | imply CMD_DM |
Daniel Thompson | a9e2c67 | 2017-05-19 17:26:58 +0100 | [diff] [blame] | 53 | imply CRC32_VERIFY |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 54 | |
Stephen Warren | 905752c | 2016-09-13 10:46:00 -0600 | [diff] [blame] | 55 | config TEGRA_NO_BPMP |
| 56 | bool "Tegra common options for SoCs without BPMP" |
| 57 | select TEGRA_CAR |
| 58 | select TEGRA_CAR_CLOCK |
| 59 | select TEGRA_CAR_RESET |
| 60 | |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 61 | config TEGRA_ARMV7_COMMON |
| 62 | bool "Tegra 32-bit common options" |
Lokesh Vutla | 81b1a67 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 63 | select CPU_V7A |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 64 | select SPL |
Ley Foon Tan | 48fcc4a | 2017-05-03 17:13:32 +0800 | [diff] [blame] | 65 | select SPL_BOARD_INIT if SPL |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 66 | select SUPPORT_SPL |
Thierry Reding | 45ad0b0 | 2019-04-15 11:32:18 +0200 | [diff] [blame] | 67 | select TEGRA_CLKRST |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 68 | select TEGRA_COMMON |
Stephen Warren | af974be | 2016-05-12 12:07:41 -0600 | [diff] [blame] | 69 | select TEGRA_GPIO |
Thierry Reding | c3598a4 | 2019-04-15 11:32:19 +0200 | [diff] [blame] | 70 | select TEGRA_GP_PADCTRL |
Thierry Reding | 17987bb | 2019-04-15 11:32:20 +0200 | [diff] [blame^] | 71 | select TEGRA_MC |
Stephen Warren | 905752c | 2016-09-13 10:46:00 -0600 | [diff] [blame] | 72 | select TEGRA_NO_BPMP |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 73 | |
| 74 | config TEGRA_ARMV8_COMMON |
| 75 | bool "Tegra 64-bit common options" |
| 76 | select ARM64 |
Stephen Warren | eab3605 | 2018-01-03 14:31:52 -0700 | [diff] [blame] | 77 | select LINUX_KERNEL_IMAGE_HEADER |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 78 | select TEGRA_COMMON |
Tom Warren | 7b5002e | 2015-07-17 08:12:51 -0700 | [diff] [blame] | 79 | |
Stephen Warren | eab3605 | 2018-01-03 14:31:52 -0700 | [diff] [blame] | 80 | if TEGRA_ARMV8_COMMON |
| 81 | config LNX_KRNL_IMG_TEXT_OFFSET_BASE |
| 82 | default 0x80000000 |
| 83 | endif |
| 84 | |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 85 | choice |
| 86 | prompt "Tegra SoC select" |
Joe Hershberger | f069960 | 2015-05-12 14:46:23 -0500 | [diff] [blame] | 87 | optional |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 88 | |
| 89 | config TEGRA20 |
| 90 | bool "Tegra20 family" |
Tom Rini | bacb52c | 2017-03-07 07:13:42 -0500 | [diff] [blame] | 91 | select ARM_ERRATA_716044 |
| 92 | select ARM_ERRATA_742230 |
| 93 | select ARM_ERRATA_751472 |
Tom Warren | 7b5002e | 2015-07-17 08:12:51 -0700 | [diff] [blame] | 94 | select TEGRA_ARMV7_COMMON |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 95 | |
| 96 | config TEGRA30 |
| 97 | bool "Tegra30 family" |
Tom Rini | bacb52c | 2017-03-07 07:13:42 -0500 | [diff] [blame] | 98 | select ARM_ERRATA_743622 |
| 99 | select ARM_ERRATA_751472 |
Tom Warren | 7b5002e | 2015-07-17 08:12:51 -0700 | [diff] [blame] | 100 | select TEGRA_ARMV7_COMMON |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 101 | |
| 102 | config TEGRA114 |
| 103 | bool "Tegra114 family" |
Tom Warren | 7b5002e | 2015-07-17 08:12:51 -0700 | [diff] [blame] | 104 | select TEGRA_ARMV7_COMMON |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 105 | |
| 106 | config TEGRA124 |
| 107 | bool "Tegra124 family" |
Tom Warren | 7b5002e | 2015-07-17 08:12:51 -0700 | [diff] [blame] | 108 | select TEGRA_ARMV7_COMMON |
Simon Glass | 0662cf2 | 2017-07-25 08:29:58 -0600 | [diff] [blame] | 109 | imply REGMAP |
| 110 | imply SYSCON |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 111 | |
Tom Warren | ab0cc6b | 2015-03-04 16:36:00 -0700 | [diff] [blame] | 112 | config TEGRA210 |
| 113 | bool "Tegra210 family" |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 114 | select TEGRA_ARMV8_COMMON |
Thierry Reding | 45ad0b0 | 2019-04-15 11:32:18 +0200 | [diff] [blame] | 115 | select TEGRA_CLKRST |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 116 | select TEGRA_GPIO |
Thierry Reding | c3598a4 | 2019-04-15 11:32:19 +0200 | [diff] [blame] | 117 | select TEGRA_GP_PADCTRL |
Thierry Reding | 17987bb | 2019-04-15 11:32:20 +0200 | [diff] [blame^] | 118 | select TEGRA_MC |
Stephen Warren | 905752c | 2016-09-13 10:46:00 -0600 | [diff] [blame] | 119 | select TEGRA_NO_BPMP |
Tom Warren | ab0cc6b | 2015-03-04 16:36:00 -0700 | [diff] [blame] | 120 | |
Stephen Warren | 03667eb | 2016-05-12 13:32:55 -0600 | [diff] [blame] | 121 | config TEGRA186 |
| 122 | bool "Tegra186 family" |
Stephen Warren | e0e2b26 | 2016-06-17 09:43:57 -0600 | [diff] [blame] | 123 | select DM_MAILBOX |
Stephen Warren | a214892 | 2016-08-08 09:41:34 -0600 | [diff] [blame] | 124 | select TEGRA186_BPMP |
Stephen Warren | e8e3f20 | 2016-08-08 11:28:24 -0600 | [diff] [blame] | 125 | select TEGRA186_CLOCK |
Stephen Warren | 03667eb | 2016-05-12 13:32:55 -0600 | [diff] [blame] | 126 | select TEGRA186_GPIO |
Stephen Warren | fccc9c5 | 2016-08-08 11:28:25 -0600 | [diff] [blame] | 127 | select TEGRA186_RESET |
Stephen Warren | 03667eb | 2016-05-12 13:32:55 -0600 | [diff] [blame] | 128 | select TEGRA_ARMV8_COMMON |
Stephen Warren | e0e2b26 | 2016-06-17 09:43:57 -0600 | [diff] [blame] | 129 | select TEGRA_HSP |
Stephen Warren | adf3abd | 2016-07-18 12:17:11 -0600 | [diff] [blame] | 130 | select TEGRA_IVC |
Stephen Warren | 03667eb | 2016-05-12 13:32:55 -0600 | [diff] [blame] | 131 | |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 132 | endchoice |
| 133 | |
Stephen Warren | 5a44ab4 | 2016-01-26 10:59:42 -0700 | [diff] [blame] | 134 | config TEGRA_DISCONNECT_UDC_ON_BOOT |
| 135 | bool "Disconnect USB device mode controller on boot" |
| 136 | default y |
| 137 | help |
| 138 | When loading U-Boot into RAM over USB protocols using tools such as |
| 139 | tegrarcm or L4T's exec-uboot.sh/tegraflash.py, Tegra's USB device |
| 140 | mode controller is initialized and enumerated by the host PC running |
| 141 | the tool. Unfortunately, these tools do not shut down the USB |
| 142 | controller before executing the downloaded code, and so the host PC |
| 143 | does not "de-enumerate" the USB device. This option shuts down the |
| 144 | USB controller when U-Boot boots to avoid leaving a stale USB device |
| 145 | present. |
| 146 | |
Simon Glass | 838723b | 2015-02-11 16:32:59 -0700 | [diff] [blame] | 147 | config SYS_MALLOC_F_LEN |
| 148 | default 0x1800 |
| 149 | |
Masahiro Yamada | ed1632a | 2015-02-20 17:04:04 +0900 | [diff] [blame] | 150 | source "arch/arm/mach-tegra/tegra20/Kconfig" |
| 151 | source "arch/arm/mach-tegra/tegra30/Kconfig" |
| 152 | source "arch/arm/mach-tegra/tegra114/Kconfig" |
| 153 | source "arch/arm/mach-tegra/tegra124/Kconfig" |
Tom Warren | ab0cc6b | 2015-03-04 16:36:00 -0700 | [diff] [blame] | 154 | source "arch/arm/mach-tegra/tegra210/Kconfig" |
Stephen Warren | 03667eb | 2016-05-12 13:32:55 -0600 | [diff] [blame] | 155 | source "arch/arm/mach-tegra/tegra186/Kconfig" |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 156 | |
Simon Glass | bd74b03 | 2017-05-17 03:25:11 -0600 | [diff] [blame] | 157 | config CMD_ENTERRCM |
| 158 | bool "Enable 'enterrcm' command" |
| 159 | default y |
| 160 | help |
| 161 | Tegra's boot ROM supports a mode whereby code may be downloaded and |
| 162 | flash-programmed over a USB connection. On dev boards, this is |
| 163 | typically entered by holding down a "force recovery" button and |
| 164 | resetting the CPU. However, not all boards have such a button (one |
| 165 | example is the Compulab Trimslice), so a method to enter RCM from |
| 166 | software is useful. |
| 167 | |
| 168 | Even on boards other than Trimslice, controlling this over a UART |
| 169 | may be useful, e.g. to allow simple remote control without the need |
| 170 | for mechanical button actuators, or hooking up relays/... to the |
| 171 | button. |
| 172 | |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 173 | endif |