summaryrefslogtreecommitdiff
path: root/arch/arm/mach-imx/mxs
diff options
context:
space:
mode:
authorStefan Agner <stefan.agner@toradex.com>2018-02-06 09:44:35 +0100
committerTom Rini <trini@konsulko.com>2018-02-08 10:17:17 -0500
commit25c5b4e1bf5d5cf6d779a4ea1600694fe06172dd (patch)
treecaf89b131b73d34521fa7a9e1173ca7abe19e305 /arch/arm/mach-imx/mxs
parentc5343d4e1113bc0fe0adabd635453323882946bf (diff)
arm: imx: mx28: Move MX28 selection to Kconfig
The motivation for moving MX28 selection to Kconfig is to be able to better handle NAND MXS selection through Kconfig. This selection method also aligns with the way other i.MX SoCs are selected in U-Boot. Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
Diffstat (limited to 'arch/arm/mach-imx/mxs')
-rw-r--r--arch/arm/mach-imx/mxs/Kconfig43
1 files changed, 43 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/mxs/Kconfig b/arch/arm/mach-imx/mxs/Kconfig
index f984545887..684d49e5db 100644
--- a/arch/arm/mach-imx/mxs/Kconfig
+++ b/arch/arm/mach-imx/mxs/Kconfig
@@ -33,3 +33,46 @@ source "board/sandisk/sansa_fuze_plus/Kconfig"
source "board/creative/xfi3/Kconfig"
endif
+
+if ARCH_MX28
+
+config MX28
+ bool
+ default y
+
+choice
+ prompt "MX28 board select"
+ optional
+
+config TARGET_APX4DEVKIT
+ bool "Support apx4devkit"
+
+config TARGET_BG0900
+ bool "Support bg0900"
+
+config TARGET_M28EVK
+ bool "Support m28evk"
+
+config TARGET_MX28EVK
+ bool "Support mx28evk"
+ select BOARD_EARLY_INIT_F
+
+config TARGET_SC_SPS_1
+ bool "Support sc_sps_1"
+
+config TARGET_TS4600
+ bool "Support TS4600"
+
+endchoice
+
+config SYS_SOC
+ default "mxs"
+
+source "board/aries/m28evk/Kconfig"
+source "board/bluegiga/apx4devkit/Kconfig"
+source "board/freescale/mx28evk/Kconfig"
+source "board/ppcag/bg0900/Kconfig"
+source "board/schulercontrol/sc_sps_1/Kconfig"
+source "board/technologic/ts4600/Kconfig"
+
+endif