blob: b6a50b8b38de2c4edc2fdbc8b30012d772c3b672 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#############################################################################
2#
3# For a description of the syntax of this configuration file,
4# see Documentation/kbuild/kconfig-language.txt.
5#
6#############################################################################
7
8mainmenu "uClinux/v850 (w/o MMU) Kernel Configuration"
9
10config MMU
11 bool
12 default n
Christoph Lameter66701b12007-02-10 01:43:09 -080013config ZONE_DMA
14 bool
15 default y
Linus Torvalds1da177e2005-04-16 15:20:36 -070016config RWSEM_GENERIC_SPINLOCK
17 bool
18 default y
19config RWSEM_XCHGADD_ALGORITHM
20 bool
21 default n
Akinobu Mitaa58259c2006-03-26 01:39:41 -080022config GENERIC_FIND_NEXT_BIT
23 bool
24 default y
25config GENERIC_HWEIGHT
26 bool
27 default y
Linus Torvalds1da177e2005-04-16 15:20:36 -070028config GENERIC_CALIBRATE_DELAY
29 bool
30 default y
31
Christoph Hellwig0c535082005-11-15 00:09:18 -080032config GENERIC_HARDIRQS
33 bool
34 default y
35
36config GENERIC_IRQ_PROBE
37 bool
38 default y
39
john stultzee17b362007-05-06 14:51:53 -070040config GENERIC_TIME
41 bool
42 default y
43
Ingo Molnar06027bd2006-02-14 13:53:15 -080044config TIME_LOW_RES
45 bool
46 default y
47
David Howellsf0d1b0b2006-12-08 02:37:49 -080048config ARCH_HAS_ILOG2_U32
49 bool
50 default n
51
52config ARCH_HAS_ILOG2_U64
53 bool
54 default n
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056# Turn off some random 386 crap that can affect device config
57config ISA
58 bool
59 default n
60config ISAPNP
61 bool
62 default n
63config EISA
64 bool
65 default n
66config MCA
67 bool
68 default n
69
70
71#############################################################################
72#### v850-specific config
73
74# Define the architecture
75config V850
76 bool
77 default y
78
79menu "Processor type and features"
80
81 choice
82 prompt "Platform"
83 default GDB
84 config V850E_SIM
85 bool "GDB"
86 config RTE_CB_MA1
87 bool "RTE-V850E/MA1-CB"
88 config RTE_CB_NB85E
89 bool "RTE-V850E/NB85E-CB"
90 config RTE_CB_ME2
91 bool "RTE-V850E/ME2-CB"
92 config V850E_AS85EP1
93 bool "AS85EP1"
94 config V850E2_SIM85E2C
95 bool "sim85e2c"
96 config V850E2_SIM85E2S
97 bool "sim85e2s"
98 config V850E2_FPGA85E2C
99 bool "NA85E2C-FPGA"
100 config V850E2_ANNA
101 bool "Anna"
102 endchoice
103
104 #### V850E processor-specific config
105
106 # All CPUs currently supported use the v850e architecture
107 config V850E
108 bool
109 default y
110
111 # The RTE-V850E/MA1-CB is the only type of V850E/MA1 platform we
112 # currently support
113 config V850E_MA1
114 bool
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100115 depends on RTE_CB_MA1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 default y
117 # Similarly for the RTE-V850E/NB85E-CB - V850E/TEG
118 config V850E_TEG
119 bool
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100120 depends on RTE_CB_NB85E
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 default y
122 # ... and the RTE-V850E/ME2-CB - V850E/ME2
123 config V850E_ME2
124 bool
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100125 depends on RTE_CB_ME2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 default y
127
128
129 #### sim85e2-specific config
130
131 config V850E2_SIM85E2
132 bool
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100133 depends on V850E2_SIM85E2C || V850E2_SIM85E2S
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 default y
135
136
137 #### V850E2 processor-specific config
138
139 # V850E2 processors
140 config V850E2
141 bool
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100142 depends on V850E2_SIM85E2 || V850E2_FPGA85E2C || V850E2_ANNA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 default y
144
145
146 #### RTE-CB platform-specific config
147
148 # Boards in the RTE-x-CB series
149 config RTE_CB
150 bool
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100151 depends on RTE_CB_MA1 || RTE_CB_NB85E || RTE_CB_ME2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 default y
153
154 config RTE_CB_MULTI
155 bool
156 # RTE_CB_NB85E can either have multi ROM support or not, but
157 # other platforms (currently only RTE_CB_MA1) require it.
158 prompt "Multi monitor ROM support" if RTE_CB_NB85E
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100159 depends on RTE_CB_MA1 || RTE_CB_NB85E
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 default y
161
162 config RTE_CB_MULTI_DBTRAP
163 bool "Pass illegal insn trap / dbtrap to kernel"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100164 depends on RTE_CB_MULTI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 default n
166
167 config RTE_CB_MA1_KSRAM
168 bool "Kernel in SRAM (limits size of kernel)"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100169 depends on RTE_CB_MA1 && RTE_CB_MULTI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 default n
171
172 config RTE_MB_A_PCI
173 bool "Mother-A PCI support"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100174 depends on RTE_CB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 default y
176
177 # The GBUS is used to talk to the RTE-MOTHER-A board
178 config RTE_GBUS_INT
179 bool
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100180 depends on RTE_MB_A_PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 default y
182
183 # The only PCI bus we support is on the RTE-MOTHER-A board
184 config PCI
185 bool
186 default RTE_MB_A_PCI
187
188 #### Some feature-specific configs
189
190 # Everything except for the GDB simulator uses the same interrupt controller
191 config V850E_INTC
192 bool
193 default !V850E_SIM
194
195 # Everything except for the various simulators uses the "Timer D" unit
196 config V850E_TIMER_D
197 bool
198 default !V850E_SIM && !V850E2_SIM85E2
199
200 # Cache control used on some v850e1 processors
201 config V850E_CACHE
202 bool
203 default V850E_TEG || V850E_ME2
204
205 # Cache control used on v850e2 processors; I think this should
206 # actually apply to more, but currently only the SIM85E2S uses it
207 config V850E2_CACHE
208 bool
209 default V850E2_SIM85E2S
210
211 config NO_CACHE
212 bool
213 default !V850E_CACHE && !V850E2_CACHE
214
215 #### Misc config
216
217 config ROM_KERNEL
218 bool "Kernel in ROM"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100219 depends on V850E2_ANNA || V850E_AS85EP1 || RTE_CB_ME2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 # Some platforms pre-zero memory, in which case the kernel doesn't need to
222 config ZERO_BSS
223 bool
Robert P. J. Day6340aa62007-02-17 19:05:24 +0100224 depends on !V850E2_SIM85E2C
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 default y
226
227 # The crappy-ass zone allocator requires that the start of allocatable
228 # memory be aligned to the largest possible allocation.
229 config FORCE_MAX_ZONEORDER
230 int
231 default 8 if V850E2_SIM85E2C || V850E2_FPGA85E2C
232
233 config V850E_HIGHRES_TIMER
234 bool "High resolution timer support"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100235 depends on V850E_TIMER_D
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 config TIME_BOOTUP
237 bool "Time bootup"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100238 depends on V850E_HIGHRES_TIMER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 config RESET_GUARD
241 bool "Reset Guard"
242
Dave Hansen3f22ab22005-06-23 00:07:43 -0700243source "mm/Kconfig"
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245endmenu
246
247
248#############################################################################
249
250source init/Kconfig
251
252#############################################################################
253
254menu "Bus options (PCI, PCMCIA, EISA, MCA, ISA)"
255
256# config PCI
257# bool "PCI support"
258# help
259# Support for PCI bus.
260
261source "drivers/pci/Kconfig"
262
263source "drivers/pcmcia/Kconfig"
264
265source "drivers/pci/hotplug/Kconfig"
266
267endmenu
268
269menu "Executable file formats"
270
271source "fs/Kconfig.binfmt"
272
273endmenu
274
Sam Ravnborgd5950b42005-07-11 21:03:49 -0700275source "net/Kconfig"
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277#############################################################################
278
279source "drivers/base/Kconfig"
280
281source drivers/mtd/Kconfig
282
283source drivers/parport/Kconfig
284
285#source drivers/pnp/Kconfig
286
287source drivers/block/Kconfig
288
289#############################################################################
290
291menu "Disk device support"
292
293source "drivers/ide/Kconfig"
294
295source "drivers/scsi/Kconfig"
296
297endmenu
298
299#############################################################################
300
301
302source "drivers/md/Kconfig"
303
304source "drivers/message/fusion/Kconfig"
305
306source "drivers/ieee1394/Kconfig"
307
308source "drivers/message/i2o/Kconfig"
309
Sam Ravnborgd5950b42005-07-11 21:03:49 -0700310source "drivers/net/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312source "drivers/isdn/Kconfig"
313
314#source "drivers/telephony/Kconfig"
315
316#
317# input before char - char/joystick depends on it. As does USB.
318#
319source "drivers/input/Kconfig"
320
321source "drivers/char/Kconfig"
322
323#source drivers/misc/Config.in
324source "drivers/media/Kconfig"
325
326source "fs/Kconfig"
327
328source "drivers/video/Kconfig"
329
330source "sound/Kconfig"
331
332source "drivers/usb/Kconfig"
333
Mathieu Desnoyers09caded2007-10-18 23:41:05 -0700334source "kernel/Kconfig.instrumentation"
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336source "arch/v850/Kconfig.debug"
337
338source "security/Kconfig"
339
340source "crypto/Kconfig"
341
342source "lib/Kconfig"
343
344#############################################################################