]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - arch/Kconfig
ARM: omap2+: rename config to ARCH_OMAP2PLUS and consolidate Kconfig
[people/ms/u-boot.git] / arch / Kconfig
index 3d419bca3e3392a857700b25c8ad57d95c567f50..160accdbcb0f89ba1251c9c774285f2672b23be7 100644 (file)
@@ -1,3 +1,9 @@
+config CREATE_ARCH_SYMLINK
+       bool
+
+config HAVE_ARCH_IOREMAP
+       bool
+
 choice
        prompt "Architecture select"
        default SANDBOX
@@ -5,20 +11,25 @@ choice
 config ARC
        bool "ARC architecture"
        select HAVE_PRIVATE_LIBGCC
+       select SUPPORT_OF_CONTROL
+       select ARCH_EARLY_INIT_R
+       select CLK
+       select TIMER
+       select ARC_TIMER
 
 config ARM
        bool "ARM architecture"
-       select HAVE_PRIVATE_LIBGCC
+       select CREATE_ARCH_SYMLINK
+       select HAVE_PRIVATE_LIBGCC if !ARM64
        select SUPPORT_OF_CONTROL
 
 config AVR32
        bool "AVR32 architecture"
-
-config BLACKFIN
-       bool "Blackfin architecture"
+       select CREATE_ARCH_SYMLINK
 
 config M68K
        bool "M68000 architecture"
+       select HAVE_PRIVATE_LIBGCC
 
 config MICROBLAZE
        bool "MicroBlaze architecture"
@@ -26,16 +37,19 @@ config MICROBLAZE
 
 config MIPS
        bool "MIPS architecture"
+       select HAVE_ARCH_IOREMAP
        select HAVE_PRIVATE_LIBGCC
+       select SUPPORT_OF_CONTROL
 
 config NDS32
        bool "NDS32 architecture"
 
 config NIOS2
        bool "Nios II architecture"
-
-config OPENRISC
-       bool "OpenRISC architecture"
+       select SUPPORT_OF_CONTROL
+       select OF_CONTROL
+       select DM
+       select CPU
 
 config PPC
        bool "PowerPC architecture"
@@ -44,19 +58,37 @@ config PPC
 
 config SANDBOX
        bool "Sandbox"
+       select BOARD_LATE_INIT
        select SUPPORT_OF_CONTROL
+       select DM
+       select DM_KEYBOARD
+       select DM_SPI_FLASH
+       select DM_SERIAL
+       select DM_I2C
+       select DM_SPI
+       select DM_GPIO
+       select DM_MMC
 
 config SH
        bool "SuperH architecture"
        select HAVE_PRIVATE_LIBGCC
 
-config SPARC
-       bool "SPARC architecture"
-
 config X86
        bool "x86 architecture"
+       select CREATE_ARCH_SYMLINK
        select HAVE_PRIVATE_LIBGCC
        select SUPPORT_OF_CONTROL
+       select DM
+       select DM_KEYBOARD
+       select DM_SERIAL
+       select DM_GPIO
+       select DM_SPI
+       select DM_SPI_FLASH
+
+config XTENSA
+       bool "Xtensa architecture"
+       select CREATE_ARCH_SYMLINK
+       select SUPPORT_OF_CONTROL
 
 endchoice
 
@@ -119,15 +151,13 @@ config SYS_CONFIG_NAME
 source "arch/arc/Kconfig"
 source "arch/arm/Kconfig"
 source "arch/avr32/Kconfig"
-source "arch/blackfin/Kconfig"
 source "arch/m68k/Kconfig"
 source "arch/microblaze/Kconfig"
 source "arch/mips/Kconfig"
 source "arch/nds32/Kconfig"
 source "arch/nios2/Kconfig"
-source "arch/openrisc/Kconfig"
 source "arch/powerpc/Kconfig"
 source "arch/sandbox/Kconfig"
 source "arch/sh/Kconfig"
-source "arch/sparc/Kconfig"
 source "arch/x86/Kconfig"
+source "arch/xtensa/Kconfig"