# arch/arm/mach-umvp2500/Kconfig
#
# Copyright Global Unichip Corp
#
# Licensed under GPLv2
# ----------------------------------------------------------

if ARCH_UMVP

menu "GUC UMVP platform"

choice
	prompt "GUC ARM Processor"

config ARCH_CPU_A1
	bool "ACTI-A1"
	select CPU_32v5
	select CPU_ARM926T
	depends on ARCH_UMVP
	help
	  Generic ARM926EJ

config ARCH_CPU_ARM926T
	bool "ARM926EJ"
	select CPU_32v5
	select CPU_ARM926T
	depends on ARCH_UMVP
	help
	  Generic ARM926EJ

config ARCH_CPU_V6
	bool "ARM1176JZF"
	select CPU_32v6z
	select CPU_V6
	depends on ARCH_UMVP
	help
	  Generic ARM1176JZF-S.
	  
endchoice

if ARCH_CPU_A1

comment "Supported Board Type"

config MACH_UMVP2500
	bool "ACTi A1 SOC"
	depends on ARCH_UMVP
	help
	  Select this if you are using ACTi A1 Platform.
endif

if ARCH_CPU_ARM926T || ARCH_CPU_V6

comment "Supported Board Type"

config MACH_UMVP2500
	bool "UMVP2500 Big Board"
	depends on ARCH_UMVP
	help
	  Select this if you are using GUC's UMVP2500 Platform.
	  
config MACH_UMVP3000
	bool "UMVP3000 Big Board"
	depends on ARCH_UMVP
	help
	  Select this if you are using GUC's UMVP3000 Platform.

endif

endmenu

endif	
