mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 01:17:39 +00:00
bf78b2717d
This patch adds board support for the Toradex Apalis T30 a computer on module which can be used on different carrier boards. For the sake of ease of use we do not distinguish between different carrier boards for now as the base module features are deemed sufficient enough for regular booting. The following functionality is working so far: - eMMC boot and environment storage - Gigabit Ethernet (once Thierry's PCIe as well as my E1000 resp. i210 fixes hit mainline) - MMC/SD cards (both 8-bit as well as 4-bit slot) - USB client/host (dual role port as client e.g. for DFU/UMS, other two ports as host) Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com> Acked-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Tom Warren <twarren@nvidia.com>
32 lines
624 B
Text
32 lines
624 B
Text
if TEGRA30
|
|
|
|
choice
|
|
prompt "Tegra30 board select"
|
|
|
|
config TARGET_APALIS_T30
|
|
bool "Toradex Apalis T30 board"
|
|
|
|
config TARGET_BEAVER
|
|
bool "NVIDIA Tegra30 Beaver evaluation board"
|
|
|
|
config TARGET_CARDHU
|
|
bool "NVIDIA Tegra30 Cardhu evaluation board"
|
|
|
|
config TARGET_COLIBRI_T30
|
|
bool "Toradex Colibri T30 board"
|
|
|
|
config TARGET_TEC_NG
|
|
bool "Avionic Design TEC-NG board"
|
|
|
|
endchoice
|
|
|
|
config SYS_SOC
|
|
default "tegra30"
|
|
|
|
source "board/toradex/apalis_t30/Kconfig"
|
|
source "board/nvidia/beaver/Kconfig"
|
|
source "board/nvidia/cardhu/Kconfig"
|
|
source "board/toradex/colibri_t30/Kconfig"
|
|
source "board/avionic-design/tec-ng/Kconfig"
|
|
|
|
endif
|