summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mvebu/Kconfig
blob: bab22f07ff34684d915c328f274d21edf9e9ec5f (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
if ARCH_MVEBU

config ARCH_TEXT_BASE
	hex
	default 0x2000000 if ARCH_ARMADA_370
	default 0x2000000 if ARCH_ARMADA_XP
	default 0x2000000 if ARCH_DOVE
	default 0x2000000 if ARCH_KIRKWOOD

config ARCH_ARMADA_370
	bool
	select CPU_V7
	select CLOCKSOURCE_MVEBU

config ARCH_ARMADA_XP
	bool
	select CPU_V7
	select CLOCKSOURCE_MVEBU

config ARCH_ARMADA_38X
	bool
	select CPU_V7
	select CLOCKSOURCE_MVEBU

config ARCH_DOVE
	bool
	select CPU_V7
	select CLOCKSOURCE_ORION

config ARCH_KIRKWOOD
	bool
	select CPU_FEROCEON
	select CLOCKSOURCE_ORION

#
# Armada 370 SoC boards
#

comment "Armada 370 based boards"

config MACH_GLOBALSCALE_MIRABOX
	bool "Globalscale Mirabox"
	select ARCH_ARMADA_370

config MACH_NETGEAR_RN104
	bool "Netgear ReadyNAS 104"
	select ARCH_ARMADA_370

#
# Armada XP SoC boards
#

comment "Armada XP based boards"

config MACH_LENOVO_IX4_300D
	bool "Lenovo Iomega ix4-300d"
	select ARCH_ARMADA_XP

config MACH_MARVELL_ARMADA_XP_DB
	bool "Marvell Armada XP DB"
	select ARCH_ARMADA_XP

config MACH_MARVELL_ARMADA_XP_GP
	bool "Marvell Armada XP GP"
	select ARCH_ARMADA_XP

config MACH_NETGEAR_RN2120
	bool "Netgear ReadyNAS 2120"
	select ARCH_ARMADA_XP

config MACH_PLATHOME_OPENBLOCKS_AX3
	bool "PlatHome OpenBlocks AX3"
	select ARCH_ARMADA_XP

#
# Armada 38x SoC boards
#

comment "Armada 38x based boards"

config MACH_TURRIS_OMNIA
	bool "Turris Omnia"
	select ARCH_ARMADA_38X

#
# Dove 88AP510 SoC boards
#

comment "Dove based boards"

config MACH_SOLIDRUN_CUBOX
	bool "SolidRun CuBox"
	select ARCH_DOVE

#
# Kirkwood SoC boards
#

comment "Kirkwood based boards"

config MACH_GLOBALSCALE_GURUPLUG
	bool "Guruplug"
	select ARCH_KIRKWOOD

config MACH_PLATHOME_OPENBLOCKS_A6
	bool "PlatHome OpenBlocks A6"
	select ARCH_KIRKWOOD

config MACH_USI_TOPKICK
	bool "Topkick"
	select ARCH_KIRKWOOD

#
# Common options
#

config MVEBU_CONSOLE_UART
	int "UART number for console"
	default 0
	range 0 1 if ARCH_ARMADA_370
	range 0 1 if ARCH_ARMADA_XP
	range 0 3 if ARCH_DOVE
	range 0 1 if ARCH_KIRKWOOD
	help
	  Select the UART number the barebox console will sit on.

endif # ARCH_MVEBU