Newer
Older
barebox / arch / blackfin / Kconfig
@Enrik Berkhan Enrik Berkhan on 23 Jan 2008 925 bytes Enable blackfin boot rom boot modes

config BLACKFIN
	bool
	select HAS_KALLSYMS
	select HAS_MODULES
	default y

config BF561
	bool

config BOARDINFO
	default "PII IPE337" if MACH_IPE337

config ARCH_TEXT_BASE
	hex
	default 0x00000000
	default 0x03f00000 if MACH_IPE337

choice
	prompt "Select your board"

config MACH_IPE337
	bool "PII ipe337"
	select BF561
	help
	  Say Y here if you are using the PII IPE337 board

endchoice

choice
	prompt "Boot Mode"
	default BFIN_BOOT_BYPASS

config BFIN_BOOT_BYPASS
	bool "bypass"
	help
	  blackfin is strapped to boot from parallel flash on CS0

config BFIN_BOOT_FLASH8
	bool "flash 8 bit"
	help
	  blackfin is strapped to boot from 8bit wide flash via boot ROM

config BFIN_BOOT_FLASH16
	bool "flash 16 bit"
	help
	  blackfin is strapped to boot from 16bit wide flash via boot ROM

endchoice

source common/Kconfig
source commands/Kconfig
source net/Kconfig
source drivers/Kconfig
source fs/Kconfig
source lib/Kconfig