Newer
Older
barebox / arch / arm / mach-s3c24xx / Kconfig
@Jean-Christophe PLAGNIOL-VILLARD Jean-Christophe PLAGNIOL-VILLARD on 2 Nov 2009 1 KB arm/kconfig: inverse the board selection

config CPU_S3C2410
	select ARCH_S3C24xx
	bool

config CPU_S3C2440
	select ARCH_S3C24xx
	bool

if ARCH_S3C24xx

menu "Board specific settings       "

choice
	prompt "A9M2440 baseboard"
	depends on MACH_A9M2440

config MACH_A9M2410DEV
	bool
	prompt "A9M2410dev"
	select HAS_CS8900
	help
	  Digi's evaluation board.

endchoice

endmenu

menu "S3C24X0 Features              "

config S3C24XX_LOW_LEVEL_INIT
	bool

config S3C24XX_PLL_INIT
	bool
	prompt "Reconfigure PLL"
	select S3C24XX_LOW_LEVEL_INIT
	help
	  This adds generic code to reconfigure the internal PLL very early
	  after reset.

config S3C24XX_SDRAM_INIT
	bool
	prompt "Initialize SDRAM"
	select S3C24XX_LOW_LEVEL_INIT
	help
	  This adds generic code to configure the SDRAM controller after reset.
	  The initialisation will be skipped if the code is already running
	  from SDRAM.

config S3C24XX_NAND_BOOT
	bool
	prompt "Booting from NAND"
	select NAND_S3C24X0
	help
	  Add generic support to boot from NAND flash. Image loading will be
	  skipped if the code is running from NOR or already from SDRAM.

endmenu

endif