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