summaryrefslogtreecommitdiff
path: root/arch/arm/mach-aspeed/Kconfig
blob: 6d548f818c2372f13a0d97bedebf5eee53037b63 (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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
if ARCH_ASPEED

choice
        prompt "ASPEED Processor Family"
        default CONFIG_IRMP

config IRMP
        bool "IRMP Serials"

config PCEXT
	bool "PC Extender Serials"

config REMOTEFX
	bool "RemoteFX Zero-Client Serials"

endchoice

if IRMP

choice
        prompt "IRMP Serials"
        default CONFIG_ARCH_AST2300

config ARCH_AST1100
        bool "AST1100"

config ARCH_AST2100
        bool "AST2100"

config ARCH_AST2200
        bool "AST2200"

config ARCH_AST2300
        bool "AST2300"

config ARCH_AST2400
	select USB_ARCH_HAS_EHCI
        bool "AST2400"

config ARCH_AST2500
	select USB_ARCH_HAS_EHCI
        bool "AST2500"

endchoice

endif

if PCEXT

choice
        prompt "PC Extender Serials"
        default CONFIG_ARCH_AST1510

config ARCH_AST1500
        bool "AST1500"

config ARCH_AST1510
        bool "AST1510"

config ARCH_AST1520
	select USB_ARCH_HAS_EHCI
	bool "AST1520"

endchoice

endif

if REMOTEFX

choice
        prompt "RemoteFX Zero-Client Serials"
        default CONFIG_ARCH_AST3100

config ARCH_AST3100
	select USB_ARCH_HAS_EHCI
        bool "AST3100"

config ARCH_AST3200
	select USB_ARCH_HAS_EHCI
        bool "AST3200"

endchoice

endif

menu "FLASH Chip Select"

choice
        prompt "CS0 Config"
        default CONFIG_AST_CS0_SPI

config AST_CS0_NOR
        bool "NOR"

config AST_CS0_NAND
        bool "NAND"

config AST_CS0_SPI
        bool "SPI_NOR"

config AST_CS0_NONE
	bool "NONE"

endchoice

choice
        prompt "CS1 Config"
        default CONFIG_AST_CS1_SPI

config AST_CS1_NOR
        bool "NOR"

config AST_CS1_NAND
        bool "NAND"

config AST_CS1_SPI
        bool "SPI_NOR"

config AST_CS1_NONE
        bool "NONE"

endchoice

choice
        prompt "CS2 Config"
        default CONFIG_AST_CS2_SPI

config AST_CS2_NOR
        bool "NOR"

config AST_CS2_NAND
        bool "NAND"

config AST_CS2_SPI
        bool "SPI_NOR"

config AST_CS2_NONE
        bool "NONE"

endchoice

choice
        prompt "CS3 Config"
        default CONFIG_AST_CS3_SPI

config AST_CS3_NOR
        bool "NOR"

config AST_CS3_NAND
        bool "NAND"

config AST_CS3_SPI
        bool "SPI_NOR"

config AST_CS3_NONE
        bool "NONE"

endchoice

choice
        prompt "CS4 Config"
        default CONFIG_AST_CS4_SPI

config AST_CS4_NOR
        bool "NOR"

config AST_CS4_NAND
        bool "NAND"

config AST_CS4_SPI
        bool "SPI_NOR"

config AST_CS4_NONE
        bool "NONE"

endchoice

endmenu

config ARCH_AST1070
	bool "AST1070 Comapnion chip combination"

config AST1070_NR
	int "Number of AST1070 Comapniion Chip combination"
	depends on ARCH_AST1070
	default "1"
	help
	  Set this to the number of ast1070

choice
        prompt "Connect Bus Interface"
	depends on ARCH_AST1070
        default CONFIG_AST_LPC_PLUS

config AST_LPC_PLUS
        bool "LPC PLUS"

config AST_LPC
        bool "LPC"

endchoice

config AST_SCU_LOCK
	bool "AST SCU Protection Key"

config WEDGE
	bool "Facebook Wedge/6-Pack"

config WEDGE100
	bool "Facebook Wedge100"

config YOSEMITE
	bool "Facebook Yosemite"

config FBPLATFORM1
	bool "Facebook Platform1"

# Support PCIE
config PCIE
        bool "ASPEED PCIE support"
        depends on PCI && ARCH_ASPEED
        select ARCH_SUPPORTS_MSI
        help
          Socle PCIE support

endif