diff options
author | Svyatoslav Ryhel | 2023-12-01 13:22:00 +0200 |
---|---|---|
committer | Svyatoslav Ryhel | 2023-12-19 21:24:30 +0200 |
commit | 886b1da83b80bbc6b659006397168fec4f707017 (patch) | |
tree | 0f25fd39e243cdf139b7e2af87d0bad71acc4d9d | |
parent | 34aeb386af0edb449a6a3c34c41aeb00a85a3d2c (diff) |
ARM: mach-tegra: rearrange SPL configs
SPL configs are used only by the ARMv7-based Tegra SOC's, so move
SPL_SYSRESET under TEGRA_ARMV7_COMMON selection and enable SPL_DM
since SPL_SYSRESET depends on it.
Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
-rw-r--r-- | arch/arm/mach-tegra/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/Kconfig b/arch/arm/mach-tegra/Kconfig index f2737781287..547372a639f 100644 --- a/arch/arm/mach-tegra/Kconfig +++ b/arch/arm/mach-tegra/Kconfig @@ -61,7 +61,6 @@ config TEGRA_COMMON select OF_CONTROL select SPI select SYSRESET - select SPL_SYSRESET if SPL select SYSRESET_TEGRA imply CMD_DM imply CRC32_VERIFY @@ -78,7 +77,9 @@ config TEGRA_ARMV7_COMMON select CPU_V7A select SPL select SPL_BOARD_INIT if SPL + select SPL_DM if SPL select SPL_SKIP_LOWLEVEL_INIT_ONLY if SPL + select SPL_SYSRESET if SPL select SUPPORT_SPL select TIMER select TEGRA_CLKRST |