blob: 6b1cedf93afbdae100641f57c3c80c475d855cd1 [file] [log] [blame]
Masahiro Yamadaddd960e2014-08-31 07:10:56 +09001if TEGRA
2
Simon Glass53b5bf32016-09-12 23:18:39 -06003config SPL_GPIO_SUPPORT
4 default y
5
Stephen Warren49626ea2016-07-18 12:17:11 -06006config TEGRA_IVC
7 bool "Tegra IVC protocol"
8 help
9 IVC (Inter-VM Communication) protocol is a Tegra-specific IPC
10 (Inter Processor Communication) framework. Within the context of
11 U-Boot, it is typically used for communication between the main CPU
12 and various auxiliary processors.
13
Stephen Warren15bcc622015-11-23 10:32:01 -070014config TEGRA_COMMON
15 bool "Tegra common options"
Tom Warren56079ec2015-07-17 08:12:51 -070016 select DM
Simon Glass96350f72015-11-29 13:18:01 -070017 select DM_ETH
Tom Warren56079ec2015-07-17 08:12:51 -070018 select DM_GPIO
Stephen Warren15bcc622015-11-23 10:32:01 -070019 select DM_I2C
Simon Glassf77f5e92015-10-18 21:17:16 -060020 select DM_KEYBOARD
Simon Glasse81ca882015-11-19 20:27:02 -070021 select DM_PCI
Simon Glass3ba5f742015-11-26 19:51:30 -070022 select DM_PCI_COMPAT
Simon Glass91c08af2016-01-30 16:38:01 -070023 select DM_PWM
Stephen Warren15bcc622015-11-23 10:32:01 -070024 select DM_SERIAL
25 select DM_SPI
26 select DM_SPI_FLASH
27 select OF_CONTROL
Simon Glassd6ef8a62016-02-16 18:09:19 -070028 select VIDCONSOLE_AS_LCD if DM_VIDEO
Stephen Warren15bcc622015-11-23 10:32:01 -070029
30config TEGRA_ARMV7_COMMON
31 bool "Tegra 32-bit common options"
32 select CPU_V7
33 select SPL
34 select SUPPORT_SPL
35 select TEGRA_COMMON
Stephen Warren601800b2016-05-12 12:07:41 -060036 select TEGRA_GPIO
Stephen Warren15bcc622015-11-23 10:32:01 -070037
38config TEGRA_ARMV8_COMMON
39 bool "Tegra 64-bit common options"
40 select ARM64
41 select TEGRA_COMMON
Tom Warren56079ec2015-07-17 08:12:51 -070042
Masahiro Yamadaddd960e2014-08-31 07:10:56 +090043choice
44 prompt "Tegra SoC select"
Joe Hershbergera26cd042015-05-12 14:46:23 -050045 optional
Masahiro Yamadaddd960e2014-08-31 07:10:56 +090046
47config TEGRA20
48 bool "Tegra20 family"
Tom Warren56079ec2015-07-17 08:12:51 -070049 select TEGRA_ARMV7_COMMON
Masahiro Yamadaddd960e2014-08-31 07:10:56 +090050
51config TEGRA30
52 bool "Tegra30 family"
Tom Warren56079ec2015-07-17 08:12:51 -070053 select TEGRA_ARMV7_COMMON
Masahiro Yamadaddd960e2014-08-31 07:10:56 +090054
55config TEGRA114
56 bool "Tegra114 family"
Tom Warren56079ec2015-07-17 08:12:51 -070057 select TEGRA_ARMV7_COMMON
Masahiro Yamadaddd960e2014-08-31 07:10:56 +090058
59config TEGRA124
60 bool "Tegra124 family"
Tom Warren56079ec2015-07-17 08:12:51 -070061 select TEGRA_ARMV7_COMMON
Masahiro Yamadaddd960e2014-08-31 07:10:56 +090062
Tom Warren7aaa5a62015-03-04 16:36:00 -070063config TEGRA210
64 bool "Tegra210 family"
Stephen Warren601800b2016-05-12 12:07:41 -060065 select TEGRA_GPIO
Stephen Warren15bcc622015-11-23 10:32:01 -070066 select TEGRA_ARMV8_COMMON
Tom Warren7aaa5a62015-03-04 16:36:00 -070067
Stephen Warrenc7ba99c2016-05-12 13:32:55 -060068config TEGRA186
69 bool "Tegra186 family"
Stephen Warrend9fd7002016-08-08 11:28:24 -060070 select CLK
Stephen Warren0f67e232016-06-17 09:43:57 -060071 select DM_MAILBOX
Stephen Warren4dd99d12016-08-08 11:28:25 -060072 select DM_RESET
Stephen Warren73dd5c42016-08-08 09:41:34 -060073 select MISC
74 select TEGRA186_BPMP
Stephen Warrend9fd7002016-08-08 11:28:24 -060075 select TEGRA186_CLOCK
Stephen Warrenc7ba99c2016-05-12 13:32:55 -060076 select TEGRA186_GPIO
Stephen Warren4dd99d12016-08-08 11:28:25 -060077 select TEGRA186_RESET
Stephen Warrenc7ba99c2016-05-12 13:32:55 -060078 select TEGRA_ARMV8_COMMON
Stephen Warren0f67e232016-06-17 09:43:57 -060079 select TEGRA_HSP
Stephen Warren49626ea2016-07-18 12:17:11 -060080 select TEGRA_IVC
Stephen Warrenc7ba99c2016-05-12 13:32:55 -060081
Masahiro Yamadaddd960e2014-08-31 07:10:56 +090082endchoice
83
Stephen Warrendd8204d2016-01-26 10:59:42 -070084config TEGRA_DISCONNECT_UDC_ON_BOOT
85 bool "Disconnect USB device mode controller on boot"
86 default y
87 help
88 When loading U-Boot into RAM over USB protocols using tools such as
89 tegrarcm or L4T's exec-uboot.sh/tegraflash.py, Tegra's USB device
90 mode controller is initialized and enumerated by the host PC running
91 the tool. Unfortunately, these tools do not shut down the USB
92 controller before executing the downloaded code, and so the host PC
93 does not "de-enumerate" the USB device. This option shuts down the
94 USB controller when U-Boot boots to avoid leaving a stale USB device
95 present.
96
Simon Glassb724bd72015-02-11 16:32:59 -070097config SYS_MALLOC_F_LEN
98 default 0x1800
99
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900100source "arch/arm/mach-tegra/tegra20/Kconfig"
101source "arch/arm/mach-tegra/tegra30/Kconfig"
102source "arch/arm/mach-tegra/tegra114/Kconfig"
103source "arch/arm/mach-tegra/tegra124/Kconfig"
Tom Warren7aaa5a62015-03-04 16:36:00 -0700104source "arch/arm/mach-tegra/tegra210/Kconfig"
Stephen Warrenc7ba99c2016-05-12 13:32:55 -0600105source "arch/arm/mach-tegra/tegra186/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900106
107endif