mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
0299c90f39
This patch adds basic support for the SolidRun ClearFog Armada 38x based board to mainline U-Boot. Supported interfaces / devices are: - DDR3 - UART - MMC - Ethernet port 0 (connected to dedicated PHY) - I2C The included DT source was taken from Russell King's ftp server: http://www.home.arm.linux.org.uk/~rmk/clearfog/ With only minor modifications, like the addition of some aliases and the "u-boot,dm-pre-reloc" property. Signed-off-by: Stefan Roese <sr@denx.de> Cc: Rabeeh Khoury <rabeeh@solid-run.com> Cc: Luka Perkov <luka.perkov@sartura.hr>
34 lines
673 B
Text
34 lines
673 B
Text
if ARCH_MVEBU
|
|
|
|
choice
|
|
prompt "Marvell MVEBU (Armada XP/38x) board select"
|
|
optional
|
|
|
|
config TARGET_CLEARFOG
|
|
bool "Support ClearFog"
|
|
|
|
config TARGET_DB_88F6820_GP
|
|
bool "Support DB-88F6820-GP"
|
|
|
|
config TARGET_DB_MV784MP_GP
|
|
bool "Support db-mv784mp-gp"
|
|
|
|
config TARGET_MAXBCM
|
|
bool "Support maxbcm"
|
|
|
|
endchoice
|
|
|
|
config SYS_SOC
|
|
default "mvebu"
|
|
|
|
config MVEBU_BOOTROM_UARTBOOT
|
|
bool "Use kwboot to boot via BootROM xmodem protocol"
|
|
help
|
|
This option provides support for booting via the Marvell
|
|
xmodem protocol, used by the kwboot tool.
|
|
|
|
Please don't forget to configure the boot device in
|
|
the board specific kwbimage.cfg file this way:
|
|
BOOT_FROM uart
|
|
|
|
endif
|