blob: c9f2380f4d9b2954df5dedc491216e1dba5abc7e [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
Simon Glass77d2f7f2016-09-12 23:18:41 -06006config SPL_LIBCOMMON_SUPPORT
7 default y
8
Simon Glasscc4288e2016-09-12 23:18:43 -06009config SPL_LIBGENERIC_SUPPORT
10 default y
11
Simon Glasse00f76c2016-09-12 23:18:56 -060012config SPL_SERIAL_SUPPORT
13 default y
14
Stephen Warren49626ea2016-07-18 12:17:11 -060015config 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 Warren15bcc622015-11-23 10:32:01 -070023config TEGRA_COMMON
24 bool "Tegra common options"
Stephen Warren140a9ea2016-09-13 10:46:00 -060025 select CLK
Tom Warren56079ec2015-07-17 08:12:51 -070026 select DM
Simon Glass96350f72015-11-29 13:18:01 -070027 select DM_ETH
Tom Warren56079ec2015-07-17 08:12:51 -070028 select DM_GPIO
Stephen Warren15bcc622015-11-23 10:32:01 -070029 select DM_I2C
Simon Glassf77f5e92015-10-18 21:17:16 -060030 select DM_KEYBOARD
Tom Warren6a474db2016-09-13 10:45:48 -060031 select DM_MMC
Simon Glass91c08af2016-01-30 16:38:01 -070032 select DM_PWM
Stephen Warren140a9ea2016-09-13 10:46:00 -060033 select DM_RESET
Stephen Warren15bcc622015-11-23 10:32:01 -070034 select DM_SERIAL
35 select DM_SPI
36 select DM_SPI_FLASH
Stephen Warren140a9ea2016-09-13 10:46:00 -060037 select MISC
Stephen Warren15bcc622015-11-23 10:32:01 -070038 select OF_CONTROL
Simon Glassd6ef8a62016-02-16 18:09:19 -070039 select VIDCONSOLE_AS_LCD if DM_VIDEO
Simon Glassa5d67542017-01-23 13:31:20 -070040 select BOARD_EARLY_INIT_F
Stephen Warren15bcc622015-11-23 10:32:01 -070041
Stephen Warren140a9ea2016-09-13 10:46:00 -060042config TEGRA_NO_BPMP
43 bool "Tegra common options for SoCs without BPMP"
44 select TEGRA_CAR
45 select TEGRA_CAR_CLOCK
46 select TEGRA_CAR_RESET
47
Stephen Warren15bcc622015-11-23 10:32:01 -070048config TEGRA_ARMV7_COMMON
49 bool "Tegra 32-bit common options"
50 select CPU_V7
51 select SPL
52 select SUPPORT_SPL
53 select TEGRA_COMMON
Stephen Warren601800b2016-05-12 12:07:41 -060054 select TEGRA_GPIO
Stephen Warren140a9ea2016-09-13 10:46:00 -060055 select TEGRA_NO_BPMP
Stephen Warren15bcc622015-11-23 10:32:01 -070056
57config TEGRA_ARMV8_COMMON
58 bool "Tegra 64-bit common options"
59 select ARM64
60 select TEGRA_COMMON
Tom Warren56079ec2015-07-17 08:12:51 -070061
Masahiro Yamadaddd960e2014-08-31 07:10:56 +090062choice
63 prompt "Tegra SoC select"
Joe Hershbergera26cd042015-05-12 14:46:23 -050064 optional
Masahiro Yamadaddd960e2014-08-31 07:10:56 +090065
66config TEGRA20
67 bool "Tegra20 family"
Tom Warren56079ec2015-07-17 08:12:51 -070068 select TEGRA_ARMV7_COMMON
Masahiro Yamadaddd960e2014-08-31 07:10:56 +090069
70config TEGRA30
71 bool "Tegra30 family"
Tom Warren56079ec2015-07-17 08:12:51 -070072 select TEGRA_ARMV7_COMMON
Masahiro Yamadaddd960e2014-08-31 07:10:56 +090073
74config TEGRA114
75 bool "Tegra114 family"
Tom Warren56079ec2015-07-17 08:12:51 -070076 select TEGRA_ARMV7_COMMON
Masahiro Yamadaddd960e2014-08-31 07:10:56 +090077
78config TEGRA124
79 bool "Tegra124 family"
Tom Warren56079ec2015-07-17 08:12:51 -070080 select TEGRA_ARMV7_COMMON
Masahiro Yamadaddd960e2014-08-31 07:10:56 +090081
Tom Warren7aaa5a62015-03-04 16:36:00 -070082config TEGRA210
83 bool "Tegra210 family"
Stephen Warren601800b2016-05-12 12:07:41 -060084 select TEGRA_GPIO
Stephen Warren15bcc622015-11-23 10:32:01 -070085 select TEGRA_ARMV8_COMMON
Stephen Warren140a9ea2016-09-13 10:46:00 -060086 select TEGRA_NO_BPMP
Tom Warren7aaa5a62015-03-04 16:36:00 -070087
Stephen Warrenc7ba99c2016-05-12 13:32:55 -060088config TEGRA186
89 bool "Tegra186 family"
Stephen Warren0f67e232016-06-17 09:43:57 -060090 select DM_MAILBOX
Stephen Warren73dd5c42016-08-08 09:41:34 -060091 select TEGRA186_BPMP
Stephen Warrend9fd7002016-08-08 11:28:24 -060092 select TEGRA186_CLOCK
Stephen Warrenc7ba99c2016-05-12 13:32:55 -060093 select TEGRA186_GPIO
Stephen Warren4dd99d12016-08-08 11:28:25 -060094 select TEGRA186_RESET
Stephen Warrenc7ba99c2016-05-12 13:32:55 -060095 select TEGRA_ARMV8_COMMON
Stephen Warren0f67e232016-06-17 09:43:57 -060096 select TEGRA_HSP
Stephen Warren49626ea2016-07-18 12:17:11 -060097 select TEGRA_IVC
Stephen Warrenc7ba99c2016-05-12 13:32:55 -060098
Masahiro Yamadaddd960e2014-08-31 07:10:56 +090099endchoice
100
Stephen Warrendd8204d2016-01-26 10:59:42 -0700101config TEGRA_DISCONNECT_UDC_ON_BOOT
102 bool "Disconnect USB device mode controller on boot"
103 default y
104 help
105 When loading U-Boot into RAM over USB protocols using tools such as
106 tegrarcm or L4T's exec-uboot.sh/tegraflash.py, Tegra's USB device
107 mode controller is initialized and enumerated by the host PC running
108 the tool. Unfortunately, these tools do not shut down the USB
109 controller before executing the downloaded code, and so the host PC
110 does not "de-enumerate" the USB device. This option shuts down the
111 USB controller when U-Boot boots to avoid leaving a stale USB device
112 present.
113
Simon Glassb724bd72015-02-11 16:32:59 -0700114config SYS_MALLOC_F_LEN
115 default 0x1800
116
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900117source "arch/arm/mach-tegra/tegra20/Kconfig"
118source "arch/arm/mach-tegra/tegra30/Kconfig"
119source "arch/arm/mach-tegra/tegra114/Kconfig"
120source "arch/arm/mach-tegra/tegra124/Kconfig"
Tom Warren7aaa5a62015-03-04 16:36:00 -0700121source "arch/arm/mach-tegra/tegra210/Kconfig"
Stephen Warrenc7ba99c2016-05-12 13:32:55 -0600122source "arch/arm/mach-tegra/tegra186/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900123
124endif