blob: dbfab8fc9b49c2c4c6e620558401f57af2bedf50 [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
Ingo Molnar06027bd2006-02-14 13:53:15 -080040config TIME_LOW_RES
41 bool
42 default y
43
David Howellsf0d1b0b2006-12-08 02:37:49 -080044config ARCH_HAS_ILOG2_U32
45 bool
46 default n
47
48config ARCH_HAS_ILOG2_U64
49 bool
50 default n
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052# Turn off some random 386 crap that can affect device config
53config ISA
54 bool
55 default n
56config ISAPNP
57 bool
58 default n
59config EISA
60 bool
61 default n
62config MCA
63 bool
64 default n
65
66
67#############################################################################
68#### v850-specific config
69
70# Define the architecture
71config V850
72 bool
73 default y
74
75menu "Processor type and features"
76
77 choice
78 prompt "Platform"
79 default GDB
80 config V850E_SIM
81 bool "GDB"
82 config RTE_CB_MA1
83 bool "RTE-V850E/MA1-CB"
84 config RTE_CB_NB85E
85 bool "RTE-V850E/NB85E-CB"
86 config RTE_CB_ME2
87 bool "RTE-V850E/ME2-CB"
88 config V850E_AS85EP1
89 bool "AS85EP1"
90 config V850E2_SIM85E2C
91 bool "sim85e2c"
92 config V850E2_SIM85E2S
93 bool "sim85e2s"
94 config V850E2_FPGA85E2C
95 bool "NA85E2C-FPGA"
96 config V850E2_ANNA
97 bool "Anna"
98 endchoice
99
100 #### V850E processor-specific config
101
102 # All CPUs currently supported use the v850e architecture
103 config V850E
104 bool
105 default y
106
107 # The RTE-V850E/MA1-CB is the only type of V850E/MA1 platform we
108 # currently support
109 config V850E_MA1
110 bool
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100111 depends on RTE_CB_MA1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 default y
113 # Similarly for the RTE-V850E/NB85E-CB - V850E/TEG
114 config V850E_TEG
115 bool
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100116 depends on RTE_CB_NB85E
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 default y
118 # ... and the RTE-V850E/ME2-CB - V850E/ME2
119 config V850E_ME2
120 bool
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100121 depends on RTE_CB_ME2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 default y
123
124
125 #### sim85e2-specific config
126
127 config V850E2_SIM85E2
128 bool
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100129 depends on V850E2_SIM85E2C || V850E2_SIM85E2S
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 default y
131
132
133 #### V850E2 processor-specific config
134
135 # V850E2 processors
136 config V850E2
137 bool
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100138 depends on V850E2_SIM85E2 || V850E2_FPGA85E2C || V850E2_ANNA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 default y
140
141
142 #### RTE-CB platform-specific config
143
144 # Boards in the RTE-x-CB series
145 config RTE_CB
146 bool
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100147 depends on RTE_CB_MA1 || RTE_CB_NB85E || RTE_CB_ME2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 default y
149
150 config RTE_CB_MULTI
151 bool
152 # RTE_CB_NB85E can either have multi ROM support or not, but
153 # other platforms (currently only RTE_CB_MA1) require it.
154 prompt "Multi monitor ROM support" if RTE_CB_NB85E
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100155 depends on RTE_CB_MA1 || RTE_CB_NB85E
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 default y
157
158 config RTE_CB_MULTI_DBTRAP
159 bool "Pass illegal insn trap / dbtrap to kernel"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100160 depends on RTE_CB_MULTI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 default n
162
163 config RTE_CB_MA1_KSRAM
164 bool "Kernel in SRAM (limits size of kernel)"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100165 depends on RTE_CB_MA1 && RTE_CB_MULTI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 default n
167
168 config RTE_MB_A_PCI
169 bool "Mother-A PCI support"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100170 depends on RTE_CB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 default y
172
173 # The GBUS is used to talk to the RTE-MOTHER-A board
174 config RTE_GBUS_INT
175 bool
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100176 depends on RTE_MB_A_PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 default y
178
179 # The only PCI bus we support is on the RTE-MOTHER-A board
180 config PCI
181 bool
182 default RTE_MB_A_PCI
183
184 #### Some feature-specific configs
185
186 # Everything except for the GDB simulator uses the same interrupt controller
187 config V850E_INTC
188 bool
189 default !V850E_SIM
190
191 # Everything except for the various simulators uses the "Timer D" unit
192 config V850E_TIMER_D
193 bool
194 default !V850E_SIM && !V850E2_SIM85E2
195
196 # Cache control used on some v850e1 processors
197 config V850E_CACHE
198 bool
199 default V850E_TEG || V850E_ME2
200
201 # Cache control used on v850e2 processors; I think this should
202 # actually apply to more, but currently only the SIM85E2S uses it
203 config V850E2_CACHE
204 bool
205 default V850E2_SIM85E2S
206
207 config NO_CACHE
208 bool
209 default !V850E_CACHE && !V850E2_CACHE
210
211 #### Misc config
212
213 config ROM_KERNEL
214 bool "Kernel in ROM"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100215 depends on V850E2_ANNA || V850E_AS85EP1 || RTE_CB_ME2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 # Some platforms pre-zero memory, in which case the kernel doesn't need to
218 config ZERO_BSS
219 bool
220 depends !V850E2_SIM85E2C
221 default y
222
223 # The crappy-ass zone allocator requires that the start of allocatable
224 # memory be aligned to the largest possible allocation.
225 config FORCE_MAX_ZONEORDER
226 int
227 default 8 if V850E2_SIM85E2C || V850E2_FPGA85E2C
228
229 config V850E_HIGHRES_TIMER
230 bool "High resolution timer support"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100231 depends on V850E_TIMER_D
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 config TIME_BOOTUP
233 bool "Time bootup"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100234 depends on V850E_HIGHRES_TIMER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 config RESET_GUARD
237 bool "Reset Guard"
238
239 config LARGE_ALLOCS
240 bool "Allow allocating large blocks (> 1MB) of memory"
241 help
242 Allow the slab memory allocator to keep chains for very large
243 memory sizes - upto 32MB. You may need this if your system has
244 a lot of RAM, and you need to able to allocate very large
245 contiguous chunks. If unsure, say N.
246
Dave Hansen3f22ab22005-06-23 00:07:43 -0700247source "mm/Kconfig"
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249endmenu
250
251
252#############################################################################
253
254source init/Kconfig
255
256#############################################################################
257
258menu "Bus options (PCI, PCMCIA, EISA, MCA, ISA)"
259
260# config PCI
261# bool "PCI support"
262# help
263# Support for PCI bus.
264
265source "drivers/pci/Kconfig"
266
267source "drivers/pcmcia/Kconfig"
268
269source "drivers/pci/hotplug/Kconfig"
270
271endmenu
272
273menu "Executable file formats"
274
275source "fs/Kconfig.binfmt"
276
277endmenu
278
Sam Ravnborgd5950b42005-07-11 21:03:49 -0700279source "net/Kconfig"
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281#############################################################################
282
283source "drivers/base/Kconfig"
284
285source drivers/mtd/Kconfig
286
287source drivers/parport/Kconfig
288
289#source drivers/pnp/Kconfig
290
291source drivers/block/Kconfig
292
293#############################################################################
294
295menu "Disk device support"
296
297source "drivers/ide/Kconfig"
298
299source "drivers/scsi/Kconfig"
300
301endmenu
302
303#############################################################################
304
305
306source "drivers/md/Kconfig"
307
308source "drivers/message/fusion/Kconfig"
309
310source "drivers/ieee1394/Kconfig"
311
312source "drivers/message/i2o/Kconfig"
313
Sam Ravnborgd5950b42005-07-11 21:03:49 -0700314source "drivers/net/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316source "drivers/isdn/Kconfig"
317
318#source "drivers/telephony/Kconfig"
319
320#
321# input before char - char/joystick depends on it. As does USB.
322#
323source "drivers/input/Kconfig"
324
325source "drivers/char/Kconfig"
326
327#source drivers/misc/Config.in
328source "drivers/media/Kconfig"
329
330source "fs/Kconfig"
331
332source "drivers/video/Kconfig"
333
334source "sound/Kconfig"
335
336source "drivers/usb/Kconfig"
337
338source "arch/v850/Kconfig.debug"
339
340source "security/Kconfig"
341
342source "crypto/Kconfig"
343
344source "lib/Kconfig"
345
346#############################################################################