MAINBOARD_FORCE_NATIVE_VGA_INIT is to be selected instead of the user option MAINBOARD_DO_NATIVE_VGA_INIT. The distinction is necessary to use the latter in a choice. Change-Id: I689aa5cadea9e1091180fd38b1dc093c6938d69c Signed-off-by: Nico Huber <nico.huber@secunet.com> Reviewed-on: https://review.coreboot.org/19813 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
49 lines
1.0 KiB
Plaintext
49 lines
1.0 KiB
Plaintext
config SOC_NVIDIA_TEGRA124
|
|
bool
|
|
default n
|
|
select ARCH_BOOTBLOCK_ARMV4
|
|
select BOOTBLOCK_CUSTOM
|
|
select ARCH_VERSTAGE_ARMV7
|
|
select ARCH_ROMSTAGE_ARMV7
|
|
select ARCH_RAMSTAGE_ARMV7
|
|
select HAVE_UART_SPECIAL
|
|
select HAVE_HARD_RESET
|
|
select HAVE_MONOTONIC_TIMER
|
|
select GENERIC_UDELAY
|
|
select BOOTBLOCK_CONSOLE
|
|
select ARM_LPAE
|
|
select GENERIC_GPIO_LIB
|
|
select MAINBOARD_HAS_NATIVE_VGA_INIT
|
|
select MAINBOARD_FORCE_NATIVE_VGA_INIT
|
|
select HAVE_LINEAR_FRAMEBUFFER
|
|
|
|
if SOC_NVIDIA_TEGRA124
|
|
|
|
config VBOOT
|
|
select VBOOT_OPROM_MATTERS
|
|
select VBOOT_STARTS_IN_BOOTBLOCK
|
|
select VBOOT_SEPARATE_VERSTAGE
|
|
|
|
config TEGRA124_MODEL_TD570D
|
|
bool "TD570D"
|
|
|
|
config TEGRA124_MODEL_TD580D
|
|
bool "TD580D"
|
|
|
|
config TEGRA124_MODEL_CD570M
|
|
bool "CD570M"
|
|
|
|
config TEGRA124_MODEL_CD580M
|
|
bool "CD580M"
|
|
|
|
# Default to 2GHz, the lowest maximum frequency.
|
|
config PLLX_KHZ
|
|
int
|
|
default 2000000 if TEGRA124_MODEL_TD570D
|
|
default 2300000 if TEGRA124_MODEL_TD580D
|
|
default 2100000 if TEGRA124_MODEL_CD570M
|
|
default 2300000 if TEGRA124_MODEL_CD580M
|
|
default 2000000
|
|
|
|
endif
|