mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 03:08:31 +00:00
e5ec48152a
This option should not really be user selectable. Note that on PowerPC we currently only need BOARD_LATE_INIT when CHAIN_OF_TRUST is enabled so be conditional on that. Signed-off-by: Tom Rini <trini@konsulko.com> Acked-by: Masahiro Yamada <yamada.masahiro@socionext.com> (for UniPhier)
26 lines
549 B
Text
26 lines
549 B
Text
# Copyright (c) 2016, NVIDIA CORPORATION.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
if TEGRA186
|
|
|
|
choice
|
|
prompt "Tegra186 board select"
|
|
|
|
config TARGET_P2771_0000
|
|
bool "NVIDIA Tegra186 P2771-0000 board"
|
|
select BOARD_LATE_INIT
|
|
help
|
|
P2771-0000 is a P3310 CPU board married to a P2597 I/O board. The
|
|
combination contains SoC, DRAM, eMMC, SD card slot, HDMI, USB
|
|
micro-B port, Ethernet, USB3 host port, SATA, PCIe, and two GPIO
|
|
expansion headers.
|
|
|
|
endchoice
|
|
|
|
config SYS_SOC
|
|
default "tegra186"
|
|
|
|
source "board/nvidia/p2771-0000/Kconfig"
|
|
|
|
endif
|