barebox/arch/arm/mach-tegra/Kconfig
Lucas Stach 566c1630c3 tegra: remove custom UART setup
The config option doesn't make any sense anymore
when building a multiimage barebox. With a proper
DT built into the image we don't need the ODMdata
mechanism to find the debug UART anymore.

Signed-off-by: Lucas Stach <dev@lynxeye.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
2014-11-04 12:16:52 +01:00

48 lines
737 B
Text

if ARCH_TEGRA
config ARCH_TEXT_BASE
hex
default 0x0
config BOARDINFO
default ""
# ---------------------------------------------------------
config ARCH_TEGRA_2x_SOC
bool
config ARCH_TEGRA_3x_SOC
bool
config ARCH_TEGRA_124_SOC
bool
menu "select Tegra boards to be built"
config MACH_TORADEX_COLIBRI_T20
bool "Toradex Colibri T20"
select ARCH_TEGRA_2x_SOC
config MACH_TOSHIBA_AC100
bool "Toshiba AC100"
select ARCH_TEGRA_2x_SOC
config MACH_NVIDIA_BEAVER
bool "NVIDIA Beaver"
select ARCH_TEGRA_3x_SOC
select I2C
select I2C_TEGRA
config MACH_NVIDIA_JETSON
bool "NVIDIA Jetson TK1"
select ARCH_TEGRA_124_SOC
select I2C
select I2C_TEGRA
endmenu
# ---------------------------------------------------------
endif