]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
keystone: kconfig: move board select menu and common settings
authorMasahiro Yamada <yamada.m@jp.panasonic.com>
Sat, 30 Aug 2014 22:11:05 +0000 (07:11 +0900)
committerTom Rini <trini@ti.com>
Sun, 31 Aug 2014 01:21:59 +0000 (21:21 -0400)
Becuase the board select menu in arch/arm/Kconfig is too big,
move the Keystone board select menu to keystone/Kconfig.

Move also common settings (CONFIG_SYS_CPU="armv7" and
CONFIG_SYS_SOC="keystone").

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Reviewed-by: Tom Rini <trini@ti.com>
Cc: Vitaly Andrianov <vitalya@ti.com>
arch/arm/Kconfig
arch/arm/cpu/armv7/keystone/Kconfig [new file with mode: 0644]
board/ti/ks2_evm/Kconfig
configs/k2e_evm_defconfig
configs/k2hk_evm_defconfig

index 7a191c733b34fab513f6beb6228f39ca294e3ec6..8ac16f96efe2cb19528e9eea9a83b1fa4e3edbcb 100644 (file)
@@ -337,11 +337,8 @@ config ARCH_EXYNOS
 config TARGET_HIGHBANK
        bool "Support highbank"
 
-config TARGET_K2E_EVM
-       bool "Support k2e_evm"
-
-config TARGET_K2HK_EVM
-       bool "Support k2hk_evm"
+config ARCH_KEYSTONE
+       bool "TI Keystone"
 
 config TARGET_M53EVK
        bool "Support m53evk"
@@ -515,6 +512,8 @@ source "arch/arm/cpu/arm926ejs/davinci/Kconfig"
 
 source "arch/arm/cpu/armv7/exynos/Kconfig"
 
+source "arch/arm/cpu/armv7/keystone/Kconfig"
+
 source "arch/arm/cpu/arm926ejs/kirkwood/Kconfig"
 
 source "arch/arm/cpu/armv7/omap3/Kconfig"
@@ -656,7 +655,6 @@ source "board/syteco/zmx25/Kconfig"
 source "board/taskit/stamp9g20/Kconfig"
 source "board/ti/am335x/Kconfig"
 source "board/ti/am43xx/Kconfig"
-source "board/ti/ks2_evm/Kconfig"
 source "board/ti/ti814x/Kconfig"
 source "board/ti/ti816x/Kconfig"
 source "board/ti/tnetv107xevm/Kconfig"
diff --git a/arch/arm/cpu/armv7/keystone/Kconfig b/arch/arm/cpu/armv7/keystone/Kconfig
new file mode 100644 (file)
index 0000000..24d0cbe
--- /dev/null
@@ -0,0 +1,24 @@
+if ARCH_KEYSTONE
+
+choice
+       prompt "TI Keystone board select"
+
+config TARGET_K2HK_EVM
+       bool "TI Keystone 2 Kepler/Hawking EVM"
+
+config TARGET_K2E_EVM
+       bool "TI Keystone 2 Edison EVM"
+
+endchoice
+
+config SYS_CPU
+       string
+       default "armv7"
+
+config SYS_SOC
+       string
+       default "keystone"
+
+source "board/ti/ks2_evm/Kconfig"
+
+endif
index 7890b3018ae03e05dad921555015b5ca7a9929f6..3108782876569b230b29e2159e5563134a99e846 100644 (file)
@@ -1,9 +1,5 @@
 if TARGET_K2E_EVM
 
-config SYS_CPU
-       string
-       default "armv7"
-
 config SYS_BOARD
        string
        default "ks2_evm"
@@ -12,10 +8,6 @@ config SYS_VENDOR
        string
        default "ti"
 
-config SYS_SOC
-       string
-       default "keystone"
-
 config SYS_CONFIG_NAME
        string
        default "k2e_evm"
@@ -24,10 +16,6 @@ endif
 
 if TARGET_K2HK_EVM
 
-config SYS_CPU
-       string
-       default "armv7"
-
 config SYS_BOARD
        string
        default "ks2_evm"
@@ -36,10 +24,6 @@ config SYS_VENDOR
        string
        default "ti"
 
-config SYS_SOC
-       string
-       default "keystone"
-
 config SYS_CONFIG_NAME
        string
        default "k2hk_evm"
index c210ad5dec6b564f4d0c8cf557e01ea1e44e7b6f..be8d2ee5e90ed5e3257c5a5c916cb1220bb63dad 100644 (file)
@@ -1,2 +1,3 @@
 CONFIG_ARM=y
+CONFIG_ARCH_KEYSTONE=y
 CONFIG_TARGET_K2E_EVM=y
index caa763a546b6edd4cd9a697cff7118b1c8d756ce..eee3335487fda99f83966ef5ede884e3f18392e8 100644 (file)
@@ -1,2 +1,3 @@
 CONFIG_ARM=y
+CONFIG_ARCH_KEYSTONE=y
 CONFIG_TARGET_K2HK_EVM=y