blob: ae413d4a8bb770783661104ba6d8d77ae0c3a103 [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
Geert Uytterhoevend890d732011-09-11 11:28:04 +02006 select HAVE_GENERIC_HARDIRQS
7 select GENERIC_IRQ_SHOW
Huang Yingdf013ff2011-07-13 13:14:22 +08008 select ARCH_HAVE_NMI_SAFE_CMPXCHG if RMW_INSNS
Ben Hutchings9f13a1f2012-01-10 03:04:32 +00009 select GENERIC_CPU_DEVICES
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
Greg Ungerer7f73baf2011-10-18 15:49:19 +100041config GENERIC_CSUM
42 bool
43
Ingo Molnar06027bd2006-02-14 13:53:15 -080044config TIME_LOW_RES
45 bool
46 default y
47
Greg Ungerer0e152d82011-06-20 15:49:09 +100048config ARCH_USES_GETTIMEOFFSET
Greg Ungerer4a13c6d2011-10-19 13:24:24 +100049 def_bool MMU && !COLDFIRE
Greg Ungerer0e152d82011-06-20 15:49:09 +100050
Al Viro5ea81762007-02-11 15:41:31 +000051config NO_IOPORT
52 def_bool y
53
Al Virodfedfaf2007-07-20 04:33:58 +010054config NO_DMA
Greg Ungerer66d857b2011-03-22 13:39:27 +100055 def_bool (MMU && SUN3) || (!MMU && !COLDFIRE)
Al Virodfedfaf2007-07-20 04:33:58 +010056
Greg Ungerer66d857b2011-03-22 13:39:27 +100057config ZONE_DMA
58 bool
59 default y
Greg Ungerer171d8092011-05-17 16:45:00 +100060
61config CPU_HAS_NO_BITFIELDS
62 bool
63
Greg Ungerer84f3fb72011-11-11 15:13:08 +100064config CPU_HAS_NO_MULDIV64
65 bool
66
Greg Ungerere08d7032011-10-14 14:43:30 +100067config CPU_HAS_ADDRESS_SPACES
68 bool
69
H. Peter Anvinbdc80782008-02-08 04:21:26 -080070config HZ
71 int
Greg Ungerer66d857b2011-03-22 13:39:27 +100072 default 1000 if CLEOPATRA
H. Peter Anvinbdc80782008-02-08 04:21:26 -080073 default 100
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075source "init/Kconfig"
76
Matt Helsleydc52ddc2008-10-18 20:27:21 -070077source "kernel/Kconfig.freezer"
78
Greg Ungerer66d857b2011-03-22 13:39:27 +100079config MMU
80 bool "MMU-based Paged Memory Management Support"
81 default y
Michael S. Tsirkin4673ca82011-11-24 14:54:28 +020082 select GENERIC_IOMAP
Greg Ungerer66d857b2011-03-22 13:39:27 +100083 help
84 Select if you want MMU-based virtualised addressing space
85 support by paged memory management. If unsure, say 'Y'.
86
Greg Ungerer0e152d82011-06-20 15:49:09 +100087config MMU_MOTOROLA
88 bool
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Greg Ungerer0e6782c2011-10-18 16:26:11 +100090config MMU_COLDFIRE
91 bool
92
Greg Ungerer0e152d82011-06-20 15:49:09 +100093config MMU_SUN3
94 bool
Greg Ungerer0e6782c2011-10-18 16:26:11 +100095 depends on MMU && !MMU_MOTOROLA && !MMU_COLDFIRE
Greg Ungerer0e152d82011-06-20 15:49:09 +100096
97menu "Platform setup"
98
99source arch/m68k/Kconfig.cpu
100
101source arch/m68k/Kconfig.machine
102
103source arch/m68k/Kconfig.bus
104
105endmenu
106
107menu "Kernel Features"
108
109if COLDFIRE
110source "kernel/Kconfig.preempt"
Greg Ungerer66d857b2011-03-22 13:39:27 +1000111endif
Greg Ungerer0e152d82011-06-20 15:49:09 +1000112
113if !MMU || COLDFIRE
114source "kernel/time/Kconfig"
Greg Ungerer66d857b2011-03-22 13:39:27 +1000115endif
Roman Zippel12d810c2007-05-31 00:40:54 -0700116
Dave Hansen3f22ab22005-06-23 00:07:43 -0700117source "mm/Kconfig"
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119endmenu
120
Greg Ungerer66d857b2011-03-22 13:39:27 +1000121menu "Executable file formats"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123source "fs/Kconfig.binfmt"
124
Greg Ungerer66d857b2011-03-22 13:39:27 +1000125endmenu
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Greg Ungerer66d857b2011-03-22 13:39:27 +1000127if !MMU
128menu "Power management options"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Greg Ungerer66d857b2011-03-22 13:39:27 +1000130config PM
Greg Ungerer0e152d82011-06-20 15:49:09 +1000131 bool "Power Management support"
132 help
133 Support processor power management modes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135endmenu
Greg Ungerer66d857b2011-03-22 13:39:27 +1000136endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Sam Ravnborgd5950b42005-07-11 21:03:49 -0700138source "net/Kconfig"
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140source "drivers/Kconfig"
141
Greg Ungerer0e152d82011-06-20 15:49:09 +1000142source "arch/m68k/Kconfig.devices"
Greg Ungerer66d857b2011-03-22 13:39:27 +1000143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144source "fs/Kconfig"
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146source "arch/m68k/Kconfig.debug"
147
148source "security/Kconfig"
149
150source "crypto/Kconfig"
151
152source "lib/Kconfig"