Newer
Older
barebox / arch / ppc / mach-mpc85xx / Kconfig
@Renaud Barbier Renaud Barbier on 18 Mar 2014 795 bytes common: DDR3 SPD verification support
if ARCH_MPC85XX

config MMU
	default y if CMD_MEMTEST

config TEXT_BASE
	hex
	default 0xeff80000 if P2020RDB
	default 0xfff80000 if DA923RC

config RESET_VECTOR_ADDRESS
	hex
	default 0xfffffffc if DA923RC
	default 0xeffffffc if P2020RDB

config MPC85xx
	bool
	default y

config BOOKE
	bool
	default y

config E500
	bool
	default y

choice
	prompt "Select your board"

config P2020RDB
	bool "P2020RDB"
	help
	  Say Y here if you are using the Freescale P2020RDB

config DA923RC
	bool "DA923RC"
	help
	Say Y here if you are using the GE Intelligent Platforms DA923RC
endchoice
endif

if P2020RDB
config P2020
	bool
	default y

config FSL_ELBC
	bool
	default y
endif

if DA923RC
config MPC8544
	bool
	default y

config DDR_SPD
	bool
	select CRC16
	default y

config FSL_DDR2
	bool
	default y
endif