diff mbox series

[2/2] ti: keystone2: Move common Kconfig selections to under ARCH_KEYSTONE

Message ID 20230725155416.100678-2-afd@ti.com
State Accepted
Commit a4650bf65e4b7d3ef04c90ba8031374428e4a682
Delegated to: Tom Rini
Headers show
Series [1/2] ti: keystone2: Imply NFS command support | expand

Commit Message

Andrew Davis July 25, 2023, 3:54 p.m. UTC
These select/imply settings are common to the whole architecture not just
these boards, move these settings to the architecture config.

Signed-off-by: Andrew Davis <afd@ti.com>
---
 arch/arm/Kconfig               |  5 +++++
 arch/arm/mach-keystone/Kconfig | 20 --------------------
 2 files changed, 5 insertions(+), 20 deletions(-)

Comments

Tom Rini July 25, 2023, 5:41 p.m. UTC | #1
On Tue, Jul 25, 2023 at 10:54:16AM -0500, Andrew Davis wrote:

> These select/imply settings are common to the whole architecture not just
> these boards, move these settings to the architecture config.
> 
> Signed-off-by: Andrew Davis <afd@ti.com>

Reviewed-by: Tom Rini <trini@konsulko.com>
Andrew Davis Feb. 8, 2024, 7:37 p.m. UTC | #2
On 7/25/23 12:41 PM, Tom Rini wrote:
> On Tue, Jul 25, 2023 at 10:54:16AM -0500, Andrew Davis wrote:
> 
>> These select/imply settings are common to the whole architecture not just
>> these boards, move these settings to the architecture config.
>>
>> Signed-off-by: Andrew Davis <afd@ti.com>
> 
> Reviewed-by: Tom Rini <trini@konsulko.com>
> 

ping
diff mbox series

Patch

diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index c019e56d404..a778edb7be4 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -783,16 +783,21 @@  config ARCH_IPQ40XX
 
 config ARCH_KEYSTONE
 	bool "TI Keystone"
+	select CMD_DDR3
 	select CMD_POWEROFF
 	select CPU_V7A
 	select DDR_SPD
+	select SPL_BOARD_INIT if SPL
 	select SUPPORT_SPL
 	select SYS_ARCH_TIMER
 	select SYS_THUMB_BUILD
 	imply CMD_MTDPARTS
 	imply CMD_NFS
 	imply CMD_SAVES
+	imply DM_I2C
 	imply FIT
+	imply SOC_TI
+	imply TI_KEYSTONE_SERDES
 
 config ARCH_K3
 	bool "Texas Instruments' K3 Architecture"
diff --git a/arch/arm/mach-keystone/Kconfig b/arch/arm/mach-keystone/Kconfig
index 94e6fe1f228..9bf71a9b453 100644
--- a/arch/arm/mach-keystone/Kconfig
+++ b/arch/arm/mach-keystone/Kconfig
@@ -7,40 +7,20 @@  choice
 config TARGET_K2HK_EVM
 	bool "TI Keystone 2 Kepler/Hawking EVM"
 	select SOC_K2HK
-	select SPL_BOARD_INIT if SPL
-	select CMD_DDR3
-	imply DM_I2C
-	imply SOC_TI
-	imply TI_KEYSTONE_SERDES
 
 config TARGET_K2E_EVM
 	bool "TI Keystone 2 Edison EVM"
 	select SOC_K2E
-	select SPL_BOARD_INIT if SPL
-	select CMD_DDR3
-	imply DM_I2C
-	imply SOC_TI
-	imply TI_KEYSTONE_SERDES
 
 config TARGET_K2L_EVM
 	bool "TI Keystone 2 Lamar EVM"
 	select SOC_K2L
-	select SPL_BOARD_INIT if SPL
-	select CMD_DDR3
-	imply DM_I2C
-	imply SOC_TI
-	imply TI_KEYSTONE_SERDES
 
 config TARGET_K2G_EVM
 	bool "TI Keystone 2 Galileo EVM"
         select BOARD_LATE_INIT
 	select SOC_K2G
-	select SPL_BOARD_INIT if SPL
         select TI_I2C_BOARD_DETECT
-	select CMD_DDR3
-	imply DM_I2C
-	imply SOC_TI
-	imply TI_KEYSTONE_SERDES
 
 endchoice