blob: 973e68614f28eb5a0c79627be9c370d73080f6da [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001config M68K
2 bool
3 default y
Sam Ravnborgec7748b2008-02-09 10:46:40 +01004 select HAVE_IDE
Greg Ungerer66d857b2011-03-22 13:39:27 +10005 select HAVE_AOUT if MMU
6 select GENERIC_ATOMIC64 if MMU
Geert Uytterhoevend890d732011-09-11 11:28:04 +02007 select HAVE_GENERIC_HARDIRQS
8 select GENERIC_IRQ_SHOW
Huang Yingdf013ff2011-07-13 13:14:22 +08009 select ARCH_HAVE_NMI_SAFE_CMPXCHG if RMW_INSNS
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Linus Torvalds1da177e2005-04-16 15:20:36 -070011config RWSEM_GENERIC_SPINLOCK
12 bool
13 default y
14
15config RWSEM_XCHGADD_ALGORITHM
16 bool
17
David Howellsf0d1b0b2006-12-08 02:37:49 -080018config ARCH_HAS_ILOG2_U32
19 bool
David Howellsf0d1b0b2006-12-08 02:37:49 -080020
21config ARCH_HAS_ILOG2_U64
22 bool
David Howellsf0d1b0b2006-12-08 02:37:49 -080023
Greg Ungerer0e152d82011-06-20 15:49:09 +100024config GENERIC_CLOCKEVENTS
25 bool
26
27config GENERIC_CMOS_UPDATE
28 def_bool !MMU
29
30config GENERIC_GPIO
31 bool
32
Akinobu Mitaba1a5b32006-03-26 01:39:27 -080033config GENERIC_HWEIGHT
34 bool
35 default y
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037config GENERIC_CALIBRATE_DELAY
38 bool
39 default y
40
Ingo Molnar06027bd2006-02-14 13:53:15 -080041config TIME_LOW_RES
42 bool
43 default y
44
Greg Ungerer0e152d82011-06-20 15:49:09 +100045config ARCH_USES_GETTIMEOFFSET
46 def_bool MMU
47
Al Viro5ea81762007-02-11 15:41:31 +000048config NO_IOPORT
49 def_bool y
50
Al Virodfedfaf2007-07-20 04:33:58 +010051config NO_DMA
Greg Ungerer66d857b2011-03-22 13:39:27 +100052 def_bool (MMU && SUN3) || (!MMU && !COLDFIRE)
Al Virodfedfaf2007-07-20 04:33:58 +010053
Greg Ungerer66d857b2011-03-22 13:39:27 +100054config ZONE_DMA
55 bool
56 default y
Greg Ungerer171d8092011-05-17 16:45:00 +100057
58config CPU_HAS_NO_BITFIELDS
59 bool
60
H. Peter Anvinbdc80782008-02-08 04:21:26 -080061config HZ
62 int
Greg Ungerer66d857b2011-03-22 13:39:27 +100063 default 1000 if CLEOPATRA
H. Peter Anvinbdc80782008-02-08 04:21:26 -080064 default 100
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066source "init/Kconfig"
67
Matt Helsleydc52ddc2008-10-18 20:27:21 -070068source "kernel/Kconfig.freezer"
69
Greg Ungerer66d857b2011-03-22 13:39:27 +100070config MMU
71 bool "MMU-based Paged Memory Management Support"
72 default y
Michael S. Tsirkin4673ca82011-11-24 14:54:28 +020073 select GENERIC_IOMAP
Greg Ungerer66d857b2011-03-22 13:39:27 +100074 help
75 Select if you want MMU-based virtualised addressing space
76 support by paged memory management. If unsure, say 'Y'.
77
Greg Ungerer0e152d82011-06-20 15:49:09 +100078config MMU_MOTOROLA
79 bool
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Greg Ungerer0e152d82011-06-20 15:49:09 +100081config MMU_SUN3
82 bool
83 depends on MMU && !MMU_MOTOROLA
84
85menu "Platform setup"
86
87source arch/m68k/Kconfig.cpu
88
89source arch/m68k/Kconfig.machine
90
91source arch/m68k/Kconfig.bus
92
93endmenu
94
95menu "Kernel Features"
96
97if COLDFIRE
98source "kernel/Kconfig.preempt"
Greg Ungerer66d857b2011-03-22 13:39:27 +100099endif
Greg Ungerer0e152d82011-06-20 15:49:09 +1000100
101if !MMU || COLDFIRE
102source "kernel/time/Kconfig"
Greg Ungerer66d857b2011-03-22 13:39:27 +1000103endif
Roman Zippel12d810c2007-05-31 00:40:54 -0700104
Dave Hansen3f22ab22005-06-23 00:07:43 -0700105source "mm/Kconfig"
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107endmenu
108
Greg Ungerer66d857b2011-03-22 13:39:27 +1000109menu "Executable file formats"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111source "fs/Kconfig.binfmt"
112
Greg Ungerer66d857b2011-03-22 13:39:27 +1000113endmenu
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Greg Ungerer66d857b2011-03-22 13:39:27 +1000115if !MMU
116menu "Power management options"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Greg Ungerer66d857b2011-03-22 13:39:27 +1000118config PM
Greg Ungerer0e152d82011-06-20 15:49:09 +1000119 bool "Power Management support"
120 help
121 Support processor power management modes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123endmenu
Greg Ungerer66d857b2011-03-22 13:39:27 +1000124endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Sam Ravnborgd5950b42005-07-11 21:03:49 -0700126source "net/Kconfig"
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128source "drivers/Kconfig"
129
Greg Ungerer0e152d82011-06-20 15:49:09 +1000130source "arch/m68k/Kconfig.devices"
Greg Ungerer66d857b2011-03-22 13:39:27 +1000131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132source "fs/Kconfig"
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134source "arch/m68k/Kconfig.debug"
135
136source "security/Kconfig"
137
138source "crypto/Kconfig"
139
140source "lib/Kconfig"