]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/m68knommu/Kconfig
ecryptfs: clean up (un)lock_parent
[net-next-2.6.git] / arch / m68knommu / Kconfig
CommitLineData
1da177e4
LT
1#
2# For a description of the syntax of this configuration file,
3# see Documentation/kbuild/kconfig-language.txt.
4#
5
6mainmenu "uClinux/68k (w/o MMU) Kernel Configuration"
7
36a248fa 8config M68K
1da177e4
LT
9 bool
10 default y
ec7748b5 11 select HAVE_IDE
1da177e4
LT
12
13config MMU
14 bool
15 default n
16
17config FPU
18 bool
19 default n
20
66701b14
CL
21config ZONE_DMA
22 bool
23 default y
24
1da177e4
LT
25config RWSEM_GENERIC_SPINLOCK
26 bool
27 default y
28
29config RWSEM_XCHGADD_ALGORITHM
30 bool
31 default n
32
f0d1b0b3
DH
33config ARCH_HAS_ILOG2_U32
34 bool
35 default n
36
37config ARCH_HAS_ILOG2_U64
38 bool
39 default n
40
d2d7cdcf
AM
41config GENERIC_FIND_NEXT_BIT
42 bool
43 default y
44
45config GENERIC_HWEIGHT
46 bool
47 default y
48
2502b667
GU
49config GENERIC_HARDIRQS
50 bool
51 default y
52
1da177e4
LT
53config GENERIC_CALIBRATE_DELAY
54 bool
55 default y
56
de0cc4e2
GU
57config GENERIC_TIME
58 bool
59 default y
60
06027bdd
IM
61config TIME_LOW_RES
62 bool
63 default y
64
5ea81769
AV
65config NO_IOPORT
66 def_bool y
67
b0b933c0
DH
68config ARCH_SUPPORTS_AOUT
69 def_bool y
70
1da177e4
LT
71source "init/Kconfig"
72
73menu "Processor type and features"
74
75choice
76 prompt "CPU"
77 default M68EZ328
78
79config M68328
80 bool "MC68328"
81 help
82 Motorola 68328 processor support.
83
84config M68EZ328
85 bool "MC68EZ328"
86 help
87 Motorola 68EX328 processor support.
88
89config M68VZ328
90 bool "MC68VZ328"
91 help
92 Motorola 68VZ328 processor support.
93
94config M68360
95 bool "MC68360"
96 help
97 Motorola 68360 processor support.
98
99config M5206
100 bool "MCF5206"
101 help
102 Motorola ColdFire 5206 processor support.
103
104config M5206e
105 bool "MCF5206e"
106 help
107 Motorola ColdFire 5206e processor support.
108
4e51f674
GU
109config M520x
110 bool "MCF520x"
111 help
112 Freescale Coldfire 5207/5208 processor support.
113
5c4dbba9
GU
114config M523x
115 bool "MCF523x"
116 help
117 Freescale Coldfire 5230/1/2/4/5 processor support
118
1da177e4
LT
119config M5249
120 bool "MCF5249"
121 help
122 Motorola ColdFire 5249 processor support.
123
5c4dbba9
GU
124config M5271
125 bool "MCF5271"
1da177e4 126 help
5c4dbba9 127 Freescale (Motorola) ColdFire 5270/5271 processor support.
1da177e4
LT
128
129config M5272
130 bool "MCF5272"
131 help
132 Motorola ColdFire 5272 processor support.
133
5c4dbba9
GU
134config M5275
135 bool "MCF5275"
136 help
137 Freescale (Motorola) ColdFire 5274/5275 processor support.
138
1da177e4
LT
139config M528x
140 bool "MCF528x"
141 help
142 Motorola ColdFire 5280/5282 processor support.
143
144config M5307
145 bool "MCF5307"
146 help
147 Motorola ColdFire 5307 processor support.
148
5d36f8eb
GU
149config M532x
150 bool "MCF532x"
151 help
152 Freescale (Motorola) ColdFire 532x processor support.
153
1da177e4
LT
154config M5407
155 bool "MCF5407"
156 help
157 Motorola ColdFire 5407 processor support.
158
159endchoice
160
5c4dbba9
GU
161config M527x
162 bool
163 depends on (M5271 || M5275)
164 default y
165
1da177e4
LT
166config COLDFIRE
167 bool
5d36f8eb 168 depends on (M5206 || M5206e || M520x || M523x || M5249 || M527x || M5272 || M528x || M5307 || M532x || M5407)
1da177e4
LT
169 default y
170
e648cd26
GU
171config CLOCK_SET
172 bool "Enable setting the CPU clock frequency"
173 default n
1da177e4 174 help
e648cd26
GU
175 On some CPU's you do not need to know what the core CPU clock
176 frequency is. On these you can disable clock setting. On some
177 traditional 68K parts, and on all ColdFire parts you need to set
178 the appropriate CPU clock frequency. On these devices many of the
179 onboard peripherals derive their timing from the master CPU clock
180 frequency.
181
182config CLOCK_FREQ
183 int "Set the core clock frequency"
184 default "66666666"
185 depends on CLOCK_SET
186 help
187 Define the CPU clock frequency in use. This is the core clock
188 frequency, it may or may not be the same as the external clock
189 crystal fitted to your board. Some processors have an internal
190 PLL and can have their frequency programmed at run time, others
44c09201
ML
191 use internal dividers. In general the kernel won't setup a PLL
192 if it is fitted (there are some exceptions). This value will be
e648cd26
GU
193 specific to the exact CPU that you are using.
194
195config CLOCK_DIV
196 int "Set the core/bus clock divide ratio"
197 default "1"
198 depends on CLOCK_SET
199 help
200 On many SoC style CPUs the master CPU clock is also used to drive
201 on-chip peripherals. The clock that is distributed to these
202 peripherals is sometimes a fixed ratio of the master clock
6869e940 203 frequency. If so then set this to the divider ratio of the
e648cd26 204 master clock to the peripheral clock. If not sure then select 1.
1da177e4
LT
205
206config OLDMASK
207 bool "Old mask 5307 (1H55J) silicon"
208 depends on M5307
209 help
210 Build support for the older revision ColdFire 5307 silicon.
211 Specifically this is the 1H55J mask revision.
212
213comment "Platform"
214
215config PILOT3
216 bool "Pilot 1000/5000, PalmPilot Personal/Pro, or PalmIII support"
217 depends on M68328
218 help
219 Support for the Palm Pilot 1000/5000, Personal/Pro and PalmIII.
220
221config XCOPILOT_BUGS
6869e940 222 bool "(X)Copilot support"
1da177e4
LT
223 depends on PILOT3
224 help
225 Support the bugs of Xcopilot.
226
36995223
DW
227config UC5272
228 bool 'Arcturus Networks uC5272 dimm board support'
229 depends on M5272
230 help
231 Support for the Arcturus Networks uC5272 dimm board.
232
233config UC5282
234 bool "Arcturus Networks uC5282 board support"
235 depends on M528x
236 help
237 Support for the Arcturus Networks uC5282 dimm board.
238
1da177e4
LT
239config UCSIMM
240 bool "uCsimm module support"
241 depends on M68EZ328
242 help
243 Support for the Arcturus Networks uCsimm module.
244
245config UCDIMM
246 bool "uDsimm module support"
247 depends on M68VZ328
248 help
249 Support for the Arcturus Networks uDsimm module.
250
251config DRAGEN2
252 bool "DragenEngine II board support"
253 depends on M68VZ328
254 help
255 Support for the DragenEngine II board.
256
257config DIRECT_IO_ACCESS
6869e940 258 bool "Allow user to access IO directly"
1da177e4
LT
259 depends on (UCSIMM || UCDIMM || DRAGEN2)
260 help
261 Disable the CPU internal registers protection in user mode,
262 to allow a user application to read/write them.
263
264config INIT_LCD
6869e940 265 bool "Initialize LCD"
1da177e4
LT
266 depends on (UCSIMM || UCDIMM || DRAGEN2)
267 help
268 Initialize the LCD controller of the 68x328 processor.
269
270config MEMORY_RESERVE
6869e940 271 int "Memory reservation (MiB)"
1da177e4
LT
272 depends on (UCSIMM || UCDIMM)
273 help
274 Reserve certain memory regions on 68x328 based boards.
275
276config UCQUICC
277 bool "Lineo uCquicc board support"
278 depends on M68360
279 help
280 Support for the Lineo uCquicc board.
281
282config ARN5206
283 bool "Arnewsh 5206 board support"
284 depends on M5206
285 help
286 Support for the Arnewsh 5206 board.
287
288config M5206eC3
289 bool "Motorola M5206eC3 board support"
290 depends on M5206e
291 help
292 Support for the Motorola M5206eC3 board.
293
294config ELITE
295 bool "Motorola M5206eLITE board support"
296 depends on M5206e
297 help
298 Support for the Motorola M5206eLITE board.
299
4e51f674
GU
300config M5208EVB
301 bool "Freescale M5208EVB board support"
302 depends on M520x
303 help
304 Support for the Freescale Coldfire M5208EVB.
305
5c4dbba9
GU
306config M5235EVB
307 bool "Freescale M5235EVB support"
308 depends on M523x
309 help
310 Support for the Freescale M5235EVB board.
311
1da177e4
LT
312config M5249C3
313 bool "Motorola M5249C3 board support"
314 depends on M5249
315 help
316 Support for the Motorola M5249C3 board.
317
318config M5271EVB
319 bool "Freescale (Motorola) M5271EVB board support"
5c4dbba9 320 depends on M5271
1da177e4
LT
321 help
322 Support for the Freescale (Motorola) M5271EVB board.
323
324config M5275EVB
325 bool "Freescale (Motorola) M5275EVB board support"
5c4dbba9 326 depends on M5275
1da177e4
LT
327 help
328 Support for the Freescale (Motorola) M5275EVB board.
329
330config M5272C3
331 bool "Motorola M5272C3 board support"
332 depends on M5272
333 help
334 Support for the Motorola M5272C3 board.
335
336config COBRA5272
337 bool "senTec COBRA5272 board support"
338 depends on M5272
339 help
340 Support for the senTec COBRA5272 board.
341
04860bd2
GU
342config AVNET5282
343 bool "Avnet 5282 board support"
344 depends on M528x
345 help
346 Support for the Avnet 5282 board.
347
1da177e4
LT
348config M5282EVB
349 bool "Motorola M5282EVB board support"
350 depends on M528x
351 help
352 Support for the Motorola M5282EVB board.
353
354config COBRA5282
355 bool "senTec COBRA5282 board support"
356 depends on M528x
357 help
358 Support for the senTec COBRA5282 board.
5c4dbba9
GU
359
360config SOM5282EM
361 bool "EMAC.Inc SOM5282EM board support"
362 depends on M528x
363 help
364 Support for the EMAC.Inc SOM5282EM module.
906a2621
GU
365
366config WILDFIRE
367 bool "Intec Automation Inc. WildFire board support"
368 depends on M528x
369 help
370 Support for the Intec Automation Inc. WildFire.
371
372config WILDFIREMOD
373 bool "Intec Automation Inc. WildFire module support"
374 depends on M528x
375 help
376 Support for the Intec Automation Inc. WildFire module.
1da177e4
LT
377
378config ARN5307
379 bool "Arnewsh 5307 board support"
380 depends on M5307
381 help
382 Support for the Arnewsh 5307 board.
383
384config M5307C3
385 bool "Motorola M5307C3 board support"
386 depends on M5307
387 help
388 Support for the Motorola M5307C3 board.
389
390config eLIA
391 bool "Moreton Bay eLIA board support"
392 depends on M5307
393 help
394 Support for the Moreton Bay eLIA board.
395
396config SECUREEDGEMP3
397 bool "SnapGear SecureEdge/MP3 platform support"
398 depends on M5307
399 help
400 Support for the SnapGear SecureEdge/MP3 platform.
401
5d36f8eb
GU
402config M5329EVB
403 bool "Freescale (Motorola) M5329EVB board support"
404 depends on M532x
405 help
406 Support for the Freescale (Motorola) M5329EVB board.
407
408config COBRA5329
409 bool "senTec COBRA5329 board support"
410 depends on M532x
411 help
412 Support for the senTec COBRA5329 board.
413
1da177e4
LT
414config M5407C3
415 bool "Motorola M5407C3 board support"
416 depends on M5407
417 help
418 Support for the Motorola M5407C3 board.
419
420config CLEOPATRA
421 bool "Feith CLEOPATRA board support"
422 depends on (M5307 || M5407)
423 help
424 Support for the Feith Cleopatra boards.
425
426config CANCam
427 bool "Feith CANCam board support"
428 depends on M5272
429 help
430 Support for the Feith CANCam board.
431
432config SCALES
433 bool "Feith SCALES board support"
434 depends on M5272
435 help
436 Support for the Feith SCALES board.
437
438config NETtel
439 bool "SecureEdge/NETtel board support"
440 depends on (M5206e || M5272 || M5307)
441 help
442 Support for the SnapGear NETtel/SecureEdge/SnapGear boards.
443
444config SNAPGEAR
445 bool "SnapGear router board support"
446 depends on NETtel
447 help
448 Special additional support for SnapGear router boards.
449
450config CPU16B
451 bool "Sneha Technologies S.L. Sarasvati board support"
452 depends on M5272
453 help
454 Support for the SNEHA CPU16B board.
455
5c4dbba9
GU
456config MOD5272
457 bool "Netburner MOD-5272 board support"
458 depends on M5272
459 help
460 Support for the Netburner MOD-5272 board.
461
c1057c65
WC
462config SAVANTrosie1
463 bool "Savant Rosie1 board support"
464 depends on M523x
465 help
466 Support for the Savant Rosie1 board.
467
1da177e4 468config ROMFS_FROM_ROM
6869e940 469 bool "ROMFS image not RAM resident"
1da177e4
LT
470 depends on (NETtel || SNAPGEAR)
471 help
472 The ROMfs filesystem will stay resident in the FLASH/ROM, not be
473 moved into RAM.
474
475config PILOT
476 bool
477 default y
478 depends on (PILOT3 || PILOT5)
479
480config ARNEWSH
481 bool
482 default y
483 depends on (ARN5206 || ARN5307)
484
4e51f674 485config FREESCALE
1da177e4
LT
486 bool
487 default y
5d36f8eb 488 depends on (M5206eC3 || M5208EVB || M5235EVB || M5249C3 || M5271EVB || M5272C3 || M5275EVB || M5282EVB || M5307C3 || M5329EVB || M5407C3)
1da177e4
LT
489
490config HW_FEITH
491 bool
492 default y
493 depends on (CLEOPATRA || CANCam || SCALES)
494
495config senTec
496 bool
497 default y
498 depends on (COBRA5272 || COBRA5282)
5c4dbba9
GU
499
500config EMAC_INC
501 bool
502 default y
503 depends on (SOM5282EM)
1da177e4
LT
504
505config SNEHA
506 bool
507 default y
508 depends on CPU16B
c1057c65
WC
509
510config SAVANT
511 bool
512 default y
513 depends on SAVANTrosie1
514
04860bd2
GU
515config AVNET
516 bool
517 default y
518 depends on (AVNET5282)
1da177e4 519
5c4dbba9
GU
520config 4KSTACKS
521 bool "Use 4Kb for kernel stacks instead of 8Kb"
522 default y
523 help
524 If you say Y here the kernel will use a 4Kb stacksize for the
525 kernel stack attached to each process/thread. This facilitates
526 running more threads on a system and also reduces the pressure
527 on the VM subsystem for higher order allocations.
528
bdc80787
PA
529config HZ
530 int
531 default 1000 if CLEOPATRA
532 default 100
533
63e413d1
GU
534comment "RAM configuration"
535
536config RAMBASE
537 hex "Address of the base of RAM"
538 default "0"
539 help
540 Define the address that RAM starts at. On many platforms this is
541 0, the base of the address space. And this is the default. Some
542 platforms choose to setup their RAM at other addresses within the
543 processor address space.
544
545config RAMSIZE
546 hex "Size of RAM (in bytes)"
547 default "0x400000"
548 help
549 Define the size of the system RAM. If you select 0 then the
550 kernel will try to probe the RAM size at runtime. This is not
551 supported on all CPU types.
552
553config VECTORBASE
554 hex "Address of the base of system vectors"
555 default "0"
556 help
4b3f686d 557 Define the address of the system vectors. Commonly this is
63e413d1
GU
558 put at the start of RAM, but it doesn't have to be. On ColdFire
559 platforms this address is programmed into the VBR register, thus
560 actually setting the address to use.
561
562config KERNELBASE
563 hex "Address of the base of kernel code"
564 default "0x400"
565 help
566 Typically on m68k systems the kernel will not start at the base
567 of RAM, but usually some small offset from it. Define the start
568 address of the kernel here. The most common setup will have the
569 processor vectors at the base of RAM and then the start of the
570 kernel. On some platforms some RAM is reserved for boot loaders
571 and the kernel starts after that. The 0x400 default was based on
572 a system with the RAM based at address 0, and leaving enough room
573 for the theoretical maximum number of 256 vectors.
1da177e4
LT
574
575choice
576 prompt "RAM bus width"
577 default RAMAUTOBIT
578
579config RAMAUTOBIT
580 bool "AUTO"
63e413d1 581 help
1da177e4
LT
582 Select the physical RAM data bus size. Not needed on most platforms,
583 so you can generally choose AUTO.
584
585config RAM8BIT
586 bool "8bit"
587 help
588 Configure RAM bus to be 8 bits wide.
589
590config RAM16BIT
591 bool "16bit"
592 help
593 Configure RAM bus to be 16 bits wide.
594
595config RAM32BIT
596 bool "32bit"
597 help
598 Configure RAM bus to be 32 bits wide.
599
600endchoice
601
c750a012
GU
602comment "ROM configuration"
603
604config ROM
605 bool "Specify ROM linker regions"
606 default n
607 help
608 Define a ROM region for the linker script. This creates a kernel
609 that can be stored in flash, with possibly the text, and data
610 regions being copied out to RAM at startup.
611
612config ROMBASE
613 hex "Address of the base of ROM device"
614 default "0"
615 depends on ROM
616 help
617 Define the address that the ROM region starts at. Some platforms
618 use this to set their chip select region accordingly for the boot
619 device.
620
621config ROMVEC
622 hex "Address of the base of the ROM vectors"
623 default "0"
624 depends on ROM
625 help
626 This is almost always the same as the base of the ROM. Since on all
3cb2fccc 627 68000 type variants the vectors are at the base of the boot device
c750a012
GU
628 on system startup.
629
630config ROMVECSIZE
631 hex "Size of ROM vector region (in bytes)"
632 default "0x400"
633 depends on ROM
634 help
635 Define the size of the vector region in ROM. For most 68000
3cb2fccc 636 variants this would be 0x400 bytes in size. Set to 0 if you do
c750a012
GU
637 not want a vector region at the start of the ROM.
638
639config ROMSTART
640 hex "Address of the base of system image in ROM"
641 default "0x400"
642 depends on ROM
643 help
644 Define the start address of the system image in ROM. Commonly this
645 is strait after the ROM vectors.
646
647config ROMSIZE
648 hex "Size of the ROM device"
649 default "0x100000"
650 depends on ROM
651 help
652 Size of the ROM device. On some platforms this is used to setup
653 the chip select that controls the boot ROM device.
654
1da177e4
LT
655choice
656 prompt "Kernel executes from"
657 ---help---
658 Choose the memory type that the kernel will be running in.
659
660config RAMKERNEL
661 bool "RAM"
662 help
663 The kernel will be resident in RAM when running.
664
665config ROMKERNEL
666 bool "ROM"
667 help
63e413d1
GU
668 The kernel will be resident in FLASH/ROM when running. This is
669 often referred to as Execute-in-Place (XIP), since the kernel
670 code executes from the position it is stored in the FLASH/ROM.
1da177e4
LT
671
672endchoice
673
3f22ab27
DH
674source "mm/Kconfig"
675
1da177e4
LT
676endmenu
677
5cae841b
AV
678config ISA_DMA_API
679 bool
680 depends on !M5272
681 default y
682
1da177e4
LT
683menu "Bus options (PCI, PCMCIA, EISA, MCA, ISA)"
684
685config PCI
686 bool "PCI support"
687 help
688 Support for PCI bus.
689
690config COMEMPCI
691 bool "CO-MEM lite PCI controller support"
692 depends on (M5307 || M5407)
693
694source "drivers/pci/Kconfig"
695
696source "drivers/pcmcia/Kconfig"
697
698source "drivers/pci/hotplug/Kconfig"
699
700endmenu
701
702menu "Executable file formats"
703
704source "fs/Kconfig.binfmt"
705
706endmenu
707
708menu "Power management options"
709
710config PM
711 bool "Power Management support"
712 help
713 Support processor power management modes
714
715endmenu
716
d5950b43
SR
717source "net/Kconfig"
718
1da177e4
LT
719source "drivers/Kconfig"
720
721source "fs/Kconfig"
722
723source "arch/m68knommu/Kconfig.debug"
724
725source "security/Kconfig"
726
727source "crypto/Kconfig"
728
729source "lib/Kconfig"