if ARCH_MILBEAUT

choice
        prompt "Milbeaut SoC select"
        default SC2006A

config SC2006A
	bool "Milbeaut SC2006A SoCs"
	select ARM64

endchoice

config SYS_SOC
	default "milbeaut"

config SYS_VENDOR
	string "Vendor name"
	default "socionext"
	help
	  This option contains information about board name.
	  Based on this option board/<CONFIG_SYS_VENDOR>/<CONFIG_SYS_BOARD> will
	  be used.

config SYS_BOARD
	string "Board name"
	default "sc2006a-evb" if SC2006A
	default ""
	help
	  This option contains information about board name.
	  Based on this option board/<CONFIG_SYS_VENDOR>/<CONFIG_SYS_BOARD> will
	  be used.

config SYS_CONFIG_NAME
	string "Board configuration name"
	default "sc2006a-evb" if SC2006A
	default ""
	help
	  This option contains information about board configuration name.
	  Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
	  will be used for board configuration.

config SYS_TEXT_BASE
	default 0x404000000 if SC2006A
	hex "Text Base"
	help
	  The address in memory that U-Boot will be running from, initially.

config SYS_MALLOC_LEN
	hex "Define memory for Dynamic allocation"
	default 0x400000
	help
	  This defines memory to be allocated for Dynamic allocation
	  TODO: Use for other architectures

config ENV_SIZE
	hex "Environment Size"
	default 0x2000
	help
	  Size of the environment storage area

config GICV3
	def_bool y

config COUNTER_FREQUENCY
	int "genetic timer clock frequency"
	default 24000000
	help
	  Setup time clock frequency for certain platform

endif
