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 | |
Stephen Warren | adf3abd | 2016-07-18 12:17:11 -0600 | [diff] [blame] | 15 | config TEGRA_IVC |
| 16 | bool "Tegra IVC protocol" |
| 17 | help |
| 18 | IVC (Inter-VM Communication) protocol is a Tegra-specific IPC |
| 19 | (Inter Processor Communication) framework. Within the context of |
| 20 | U-Boot, it is typically used for communication between the main CPU |
| 21 | and various auxiliary processors. |
| 22 | |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 23 | config TEGRA_COMMON |
| 24 | bool "Tegra common options" |
Tom Warren | 7b5002e | 2015-07-17 08:12:51 -0700 | [diff] [blame] | 25 | select DM |
Simon Glass | a403c9f | 2015-11-29 13:18:01 -0700 | [diff] [blame] | 26 | select DM_ETH |
Tom Warren | 7b5002e | 2015-07-17 08:12:51 -0700 | [diff] [blame] | 27 | select DM_GPIO |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 28 | select DM_I2C |
Simon Glass | 01e9940 | 2015-10-18 21:17:16 -0600 | [diff] [blame] | 29 | select DM_KEYBOARD |
Simon Glass | 46fcfc1 | 2015-11-19 20:27:02 -0700 | [diff] [blame] | 30 | select DM_PCI |
Simon Glass | eca7b0d | 2015-11-26 19:51:30 -0700 | [diff] [blame] | 31 | select DM_PCI_COMPAT |
Simon Glass | d8af3c9 | 2016-01-30 16:38:01 -0700 | [diff] [blame] | 32 | select DM_PWM |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 33 | select DM_SERIAL |
| 34 | select DM_SPI |
| 35 | select DM_SPI_FLASH |
| 36 | select OF_CONTROL |
Simon Glass | fe4ee97 | 2016-02-16 18:09:19 -0700 | [diff] [blame] | 37 | select VIDCONSOLE_AS_LCD if DM_VIDEO |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 38 | |
| 39 | config TEGRA_ARMV7_COMMON |
| 40 | bool "Tegra 32-bit common options" |
| 41 | select CPU_V7 |
| 42 | select SPL |
| 43 | select SUPPORT_SPL |
| 44 | select TEGRA_COMMON |
Stephen Warren | af974be | 2016-05-12 12:07:41 -0600 | [diff] [blame] | 45 | select TEGRA_GPIO |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 46 | |
| 47 | config TEGRA_ARMV8_COMMON |
| 48 | bool "Tegra 64-bit common options" |
| 49 | select ARM64 |
| 50 | select TEGRA_COMMON |
Tom Warren | 7b5002e | 2015-07-17 08:12:51 -0700 | [diff] [blame] | 51 | |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 52 | choice |
| 53 | prompt "Tegra SoC select" |
Joe Hershberger | f069960 | 2015-05-12 14:46:23 -0500 | [diff] [blame] | 54 | optional |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 55 | |
| 56 | config TEGRA20 |
| 57 | bool "Tegra20 family" |
Tom Warren | 7b5002e | 2015-07-17 08:12:51 -0700 | [diff] [blame] | 58 | select TEGRA_ARMV7_COMMON |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 59 | |
| 60 | config TEGRA30 |
| 61 | bool "Tegra30 family" |
Tom Warren | 7b5002e | 2015-07-17 08:12:51 -0700 | [diff] [blame] | 62 | select TEGRA_ARMV7_COMMON |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 63 | |
| 64 | config TEGRA114 |
| 65 | bool "Tegra114 family" |
Tom Warren | 7b5002e | 2015-07-17 08:12:51 -0700 | [diff] [blame] | 66 | select TEGRA_ARMV7_COMMON |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 67 | |
| 68 | config TEGRA124 |
| 69 | bool "Tegra124 family" |
Tom Warren | 7b5002e | 2015-07-17 08:12:51 -0700 | [diff] [blame] | 70 | select TEGRA_ARMV7_COMMON |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 71 | |
Tom Warren | ab0cc6b | 2015-03-04 16:36:00 -0700 | [diff] [blame] | 72 | config TEGRA210 |
| 73 | bool "Tegra210 family" |
Stephen Warren | af974be | 2016-05-12 12:07:41 -0600 | [diff] [blame] | 74 | select TEGRA_GPIO |
Stephen Warren | 8c29e65 | 2015-11-23 10:32:01 -0700 | [diff] [blame] | 75 | select TEGRA_ARMV8_COMMON |
Tom Warren | ab0cc6b | 2015-03-04 16:36:00 -0700 | [diff] [blame] | 76 | |
Stephen Warren | 03667eb | 2016-05-12 13:32:55 -0600 | [diff] [blame] | 77 | config TEGRA186 |
| 78 | bool "Tegra186 family" |
Stephen Warren | e8e3f20 | 2016-08-08 11:28:24 -0600 | [diff] [blame] | 79 | select CLK |
Stephen Warren | e0e2b26 | 2016-06-17 09:43:57 -0600 | [diff] [blame] | 80 | select DM_MAILBOX |
Stephen Warren | fccc9c5 | 2016-08-08 11:28:25 -0600 | [diff] [blame] | 81 | select DM_RESET |
Stephen Warren | a214892 | 2016-08-08 09:41:34 -0600 | [diff] [blame] | 82 | select MISC |
| 83 | select TEGRA186_BPMP |
Stephen Warren | e8e3f20 | 2016-08-08 11:28:24 -0600 | [diff] [blame] | 84 | select TEGRA186_CLOCK |
Stephen Warren | 03667eb | 2016-05-12 13:32:55 -0600 | [diff] [blame] | 85 | select TEGRA186_GPIO |
Stephen Warren | fccc9c5 | 2016-08-08 11:28:25 -0600 | [diff] [blame] | 86 | select TEGRA186_RESET |
Stephen Warren | 03667eb | 2016-05-12 13:32:55 -0600 | [diff] [blame] | 87 | select TEGRA_ARMV8_COMMON |
Stephen Warren | e0e2b26 | 2016-06-17 09:43:57 -0600 | [diff] [blame] | 88 | select TEGRA_HSP |
Stephen Warren | adf3abd | 2016-07-18 12:17:11 -0600 | [diff] [blame] | 89 | select TEGRA_IVC |
Stephen Warren | 03667eb | 2016-05-12 13:32:55 -0600 | [diff] [blame] | 90 | |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 91 | endchoice |
| 92 | |
Stephen Warren | 5a44ab4 | 2016-01-26 10:59:42 -0700 | [diff] [blame] | 93 | config TEGRA_DISCONNECT_UDC_ON_BOOT |
| 94 | bool "Disconnect USB device mode controller on boot" |
| 95 | default y |
| 96 | help |
| 97 | When loading U-Boot into RAM over USB protocols using tools such as |
| 98 | tegrarcm or L4T's exec-uboot.sh/tegraflash.py, Tegra's USB device |
| 99 | mode controller is initialized and enumerated by the host PC running |
| 100 | the tool. Unfortunately, these tools do not shut down the USB |
| 101 | controller before executing the downloaded code, and so the host PC |
| 102 | does not "de-enumerate" the USB device. This option shuts down the |
| 103 | USB controller when U-Boot boots to avoid leaving a stale USB device |
| 104 | present. |
| 105 | |
Simon Glass | 838723b | 2015-02-11 16:32:59 -0700 | [diff] [blame] | 106 | config SYS_MALLOC_F_LEN |
| 107 | default 0x1800 |
| 108 | |
Masahiro Yamada | ed1632a | 2015-02-20 17:04:04 +0900 | [diff] [blame] | 109 | source "arch/arm/mach-tegra/tegra20/Kconfig" |
| 110 | source "arch/arm/mach-tegra/tegra30/Kconfig" |
| 111 | source "arch/arm/mach-tegra/tegra114/Kconfig" |
| 112 | source "arch/arm/mach-tegra/tegra124/Kconfig" |
Tom Warren | ab0cc6b | 2015-03-04 16:36:00 -0700 | [diff] [blame] | 113 | source "arch/arm/mach-tegra/tegra210/Kconfig" |
Stephen Warren | 03667eb | 2016-05-12 13:32:55 -0600 | [diff] [blame] | 114 | source "arch/arm/mach-tegra/tegra186/Kconfig" |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 115 | |
| 116 | endif |