]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/mach-mvebu/Kconfig
arm: mvebu: Consolidate board Kconfig options into one file
[people/ms/u-boot.git] / arch / arm / mach-mvebu / Kconfig
CommitLineData
c3d89140
SR
1if ARCH_MVEBU
2
3choice
4 prompt "Marvell MVEBU (Armada XP/38x) board select"
5 optional
6
0299c90f
SR
7config TARGET_CLEARFOG
8 bool "Support ClearFog"
9
c3d89140
SR
10config TARGET_DB_88F6820_GP
11 bool "Support DB-88F6820-GP"
12
13config TARGET_DB_MV784MP_GP
14 bool "Support db-mv784mp-gp"
15
16config TARGET_MAXBCM
17 bool "Support maxbcm"
18
19endchoice
20
b322c83a
SR
21config SYS_BOARD
22 default "clearfog" if TARGET_CLEARFOG
23 default "db-88f6820-gp" if TARGET_DB_88F6820_GP
24 default "db-mv784mp-gp" if TARGET_DB_MV784MP_GP
25 default "maxbcm" if TARGET_MAXBCM
26
27config SYS_CONFIG_NAME
28 default "clearfog" if TARGET_CLEARFOG
29 default "db-88f6820-gp" if TARGET_DB_88F6820_GP
30 default "db-mv784mp-gp" if TARGET_DB_MV784MP_GP
31 default "maxbcm" if TARGET_MAXBCM
32
33config SYS_VENDOR
34 default "Marvell" if TARGET_DB_MV784MP_GP
35 default "Marvell" if TARGET_DB_88F6820_GP
36 default "solidrun" if TARGET_CLEARFOG
37
c3d89140
SR
38config SYS_SOC
39 default "mvebu"
40
944c7a31
SR
41config MVEBU_BOOTROM_UARTBOOT
42 bool "Use kwboot to boot via BootROM xmodem protocol"
43 help
44 This option provides support for booting via the Marvell
45 xmodem protocol, used by the kwboot tool.
46
47 Please don't forget to configure the boot device in
48 the board specific kwbimage.cfg file this way:
49 BOOT_FROM uart
50
c3d89140 51endif