arm64: mvebu: Armada 3700: Add ethernet device tree nodes
[oweals/u-boot.git] / arch / arm / mach-exynos / Kconfig
index 37b89b00131ecb396ddb849e73df2dfe7593f919..ce2a16f95b029ff3b1b08afc2a43074de5045a21 100644 (file)
@@ -1,14 +1,44 @@
 if ARCH_EXYNOS
 
 choice
-       prompt "EXYNOS board select"
+       prompt "EXYNOS architecture type select"
        optional
 
+config ARCH_EXYNOS4
+       bool "Exynos4 SoC family"
+       select CPU_V7
+       help
+         Samsung Exynos4 SoC family are based on ARM Cortex-A9 CPU. There
+         are multiple SoCs in this family including Exynos4210, Exynos4412,
+         and Exynos4212.
+
+config ARCH_EXYNOS5
+       bool "Exynos5 SoC family"
+       select CPU_V7
+       help
+         Samsung Exynos5 SoC family are based on ARM Cortex-A15 CPU (and
+         Cortex-A7 CPU in big.LITTLE configuration). There are multiple SoCs
+         in this family including Exynos5250, Exynos5420 and Exynos5800.
+
+config ARCH_EXYNOS7
+       bool "Exynos7 SoC family"
+       select ARM64
+       help
+         Samsung Exynos7 SoC family are based on ARM Cortex-A57 CPU or
+         Cortex-A53 CPU (and some in a big.LITTLE configuration). There are
+         multiple SoCs in this family including Exynos7420.
+
+endchoice
+
+if ARCH_EXYNOS4
+
+choice
+       prompt "EXYNOS4 board select"
+
 config TARGET_SMDKV310
        select SUPPORT_SPL
        bool "Exynos4210 SMDKV310 board"
        select OF_CONTROL
-       select SPL_DISABLE_OF_CONTROL
 
 config TARGET_TRATS
        bool "Exynos4210 Trats board"
@@ -26,10 +56,26 @@ config TARGET_TRATS2
 config TARGET_ODROID
        bool "Exynos4412 Odroid board"
 
+endchoice
+endif
+
+if ARCH_EXYNOS5
+
+config SPL_GPIO_SUPPORT
+       default y
+
+config SPL_LIBCOMMON_SUPPORT
+       default y
+
+config SPL_LIBGENERIC_SUPPORT
+       default y
+
+choice
+       prompt "EXYNOS5 board select"
+
 config TARGET_ODROID_XU3
        bool "Exynos5422 Odroid board"
        select OF_CONTROL
-       select SPL_DISABLE_OF_CONTROL
 
 config TARGET_ARNDALE
        bool "Exynos5250 Arndale board"
@@ -37,19 +83,16 @@ config TARGET_ARNDALE
        select CPU_V7_HAS_VIRT
        select SUPPORT_SPL
        select OF_CONTROL
-       select SPL_DISABLE_OF_CONTROL
 
 config TARGET_SMDK5250
        bool "SMDK5250 board"
        select SUPPORT_SPL
        select OF_CONTROL
-       select SPL_DISABLE_OF_CONTROL
 
 config TARGET_SNOW
        bool "Snow board"
        select SUPPORT_SPL
        select OF_CONTROL
-       select SPL_DISABLE_OF_CONTROL
 
 config TARGET_SPRING
        bool "Spring board"
@@ -61,21 +104,37 @@ config TARGET_SMDK5420
        bool "SMDK5420 board"
        select SUPPORT_SPL
        select OF_CONTROL
-       select SPL_DISABLE_OF_CONTROL
 
 config TARGET_PEACH_PI
        bool "Peach Pi board"
        select SUPPORT_SPL
        select OF_CONTROL
-       select SPL_DISABLE_OF_CONTROL
 
 config TARGET_PEACH_PIT
        bool "Peach Pit board"
        select SUPPORT_SPL
        select OF_CONTROL
+
+endchoice
+endif
+
+if ARCH_EXYNOS7
+
+choice
+       prompt "EXYNOS7 board select"
+
+config  TARGET_ESPRESSO7420
+       bool "ESPRESSO7420 board"
+       select ARM64
+       select SUPPORT_SPL
+       select OF_CONTROL
        select SPL_DISABLE_OF_CONTROL
+       select PINCTRL
+       select PINCTRL_EXYNOS7420
+       select CLK_EXYNOS
 
 endchoice
+endif
 
 config SYS_SOC
        default "exynos"
@@ -89,5 +148,6 @@ source "board/samsung/odroid/Kconfig"
 source "board/samsung/arndale/Kconfig"
 source "board/samsung/smdk5250/Kconfig"
 source "board/samsung/smdk5420/Kconfig"
+source "board/samsung/espresso7420/Kconfig"
 
 endif