summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mvebu/Kconfig
blob: c02eea1c8dfc114f6c86740f220c3e02875347a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
if ARCH_MVEBU

config ARCH_TEXT_BASE
	hex
	default 0x2000000 if MACH_PLATHOME_OPENBLOCKS_AX3
	default 0x2000000 if MACH_GLOBALSCALE_MIRABOX
	default 0x2000000 if MACH_MARVELL_ARMADA_XP_GP

config BOARDINFO
	default "PlatHome OpenBlocks AX3" if MACH_PLATHOME_OPENBLOCKS_AX3
	default "Globalscale Mirabox" if MACH_GLOBALSCALE_MIRABOX
	default "Marvell Armada XP GP" if MACH_MARVELL_ARMADA_XP_GP

choice
	prompt "Marvell EBU Processor"

config ARCH_ARMADA_370
	bool "Armada 370"
	select CPU_V7
	select CLOCKSOURCE_MVEBU

config ARCH_ARMADA_XP
	bool "Armada XP"
	select CPU_V7
	select CLOCKSOURCE_MVEBU

config ARCH_DOVE
	bool "Dove 88AP510"
	select CPU_V7
	select CLOCKSOURCE_ORION

endchoice

if ARCH_ARMADA_370

choice
	prompt "Armada 370 Board Type"

config MACH_GLOBALSCALE_MIRABOX
	bool "Globalscale Mirabox"

endchoice

endif # ARCH_ARMADA_370

if ARCH_ARMADA_XP

choice
	prompt "Armada XP Board Type"

config MACH_PLATHOME_OPENBLOCKS_AX3
	bool "PlatHome OpenBlocks AX3"

config MACH_MARVELL_ARMADA_XP_GP
	bool "Marvell Armada XP GP"

endchoice

endif # ARCH_ARMADA_XP

if ARCH_DOVE

choice
	prompt "Dove 88AP510 Board Type"

endchoice

endif # ARCH_DOVE

endif # ARCH_MVEBU