blob: 35d44f64ba8804ce0c0eae6e821719b3add4fe0c [file] [log] [blame]
Stefan Roesec3d89142015-08-25 13:18:38 +02001if ARCH_MVEBU
2
Stefan Roese81e33f42015-12-21 13:56:33 +01003config ARMADA_38X
4 bool
5
6config ARMADA_XP
7 bool
8
Phil Sutter42902522015-12-25 14:41:22 +01009config MV78230
10 bool
11 select ARMADA_XP
12
13config MV78260
14 bool
15 select ARMADA_XP
16
17config MV78460
18 bool
19 select ARMADA_XP
20
21config DB_88F6820_GP
22 bool
23 select ARMADA_38X
24
Stefan Roesec3d89142015-08-25 13:18:38 +020025choice
26 prompt "Marvell MVEBU (Armada XP/38x) board select"
27 optional
28
Stefan Roese0299c902015-10-20 15:14:47 +020029config TARGET_CLEARFOG
30 bool "Support ClearFog"
Phil Sutter42902522015-12-25 14:41:22 +010031 select DB_88F6820_GP
Stefan Roese0299c902015-10-20 15:14:47 +020032
Stefan Roesec3d89142015-08-25 13:18:38 +020033config TARGET_DB_88F6820_GP
34 bool "Support DB-88F6820-GP"
Phil Sutter42902522015-12-25 14:41:22 +010035 select DB_88F6820_GP
Stefan Roesec3d89142015-08-25 13:18:38 +020036
37config TARGET_DB_MV784MP_GP
38 bool "Support db-mv784mp-gp"
Phil Sutter42902522015-12-25 14:41:22 +010039 select MV78460
Stefan Roesec3d89142015-08-25 13:18:38 +020040
41config TARGET_MAXBCM
42 bool "Support maxbcm"
Phil Sutter42902522015-12-25 14:41:22 +010043 select MV78460
Stefan Roesec3d89142015-08-25 13:18:38 +020044
45endchoice
46
Stefan Roeseb322c832015-12-21 13:40:37 +010047config SYS_BOARD
48 default "clearfog" if TARGET_CLEARFOG
49 default "db-88f6820-gp" if TARGET_DB_88F6820_GP
50 default "db-mv784mp-gp" if TARGET_DB_MV784MP_GP
51 default "maxbcm" if TARGET_MAXBCM
52
53config SYS_CONFIG_NAME
54 default "clearfog" if TARGET_CLEARFOG
55 default "db-88f6820-gp" if TARGET_DB_88F6820_GP
56 default "db-mv784mp-gp" if TARGET_DB_MV784MP_GP
57 default "maxbcm" if TARGET_MAXBCM
58
59config SYS_VENDOR
60 default "Marvell" if TARGET_DB_MV784MP_GP
61 default "Marvell" if TARGET_DB_88F6820_GP
62 default "solidrun" if TARGET_CLEARFOG
63
Stefan Roesec3d89142015-08-25 13:18:38 +020064config SYS_SOC
65 default "mvebu"
66
Stefan Roesec3d89142015-08-25 13:18:38 +020067endif