blob: d318c606c8883d20c8b7e3230d71852091d8a3c6 [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
Greg Ungerer9657a872012-01-30 11:58:21 +100010 select FPU if MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Linus Torvalds1da177e2005-04-16 15:20:36 -070012config RWSEM_GENERIC_SPINLOCK
13 bool
14 default y
15
16config RWSEM_XCHGADD_ALGORITHM
17 bool
18
David Howellsf0d1b0b2006-12-08 02:37:49 -080019config ARCH_HAS_ILOG2_U32
20 bool
David Howellsf0d1b0b2006-12-08 02:37:49 -080021
22config ARCH_HAS_ILOG2_U64
23 bool
David Howellsf0d1b0b2006-12-08 02:37:49 -080024
Greg Ungerer0e152d82011-06-20 15:49:09 +100025config GENERIC_CLOCKEVENTS
26 bool
27
Greg Ungerer0e152d82011-06-20 15:49:09 +100028config GENERIC_GPIO
29 bool
30
Akinobu Mitaba1a5b32006-03-26 01:39:27 -080031config GENERIC_HWEIGHT
32 bool
33 default y
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035config GENERIC_CALIBRATE_DELAY
36 bool
37 default y
38
Greg Ungerer7f73baf2011-10-18 15:49:19 +100039config GENERIC_CSUM
40 bool
41
Ingo Molnar06027bd2006-02-14 13:53:15 -080042config TIME_LOW_RES
43 bool
44 default y
45
Greg Ungerer0e152d82011-06-20 15:49:09 +100046config ARCH_USES_GETTIMEOFFSET
Greg Ungerer4a13c6d2011-10-19 13:24:24 +100047 def_bool MMU && !COLDFIRE
Greg Ungerer0e152d82011-06-20 15:49:09 +100048
Al Viro5ea81762007-02-11 15:41:31 +000049config NO_IOPORT
50 def_bool y
51
Al Virodfedfaf2007-07-20 04:33:58 +010052config NO_DMA
Greg Ungerer66d857b2011-03-22 13:39:27 +100053 def_bool (MMU && SUN3) || (!MMU && !COLDFIRE)
Al Virodfedfaf2007-07-20 04:33:58 +010054
Greg Ungerer66d857b2011-03-22 13:39:27 +100055config ZONE_DMA
56 bool
57 default y
Greg Ungerer171d8092011-05-17 16:45:00 +100058
59config CPU_HAS_NO_BITFIELDS
60 bool
61
Greg Ungerer84f3fb72011-11-11 15:13:08 +100062config CPU_HAS_NO_MULDIV64
63 bool
64
Greg Ungerere08d7032011-10-14 14:43:30 +100065config CPU_HAS_ADDRESS_SPACES
66 bool
67
Greg Ungerer9657a872012-01-30 11:58:21 +100068config FPU
69 bool
70
H. Peter Anvinbdc80782008-02-08 04:21:26 -080071config HZ
72 int
Greg Ungerer66d857b2011-03-22 13:39:27 +100073 default 1000 if CLEOPATRA
H. Peter Anvinbdc80782008-02-08 04:21:26 -080074 default 100
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076source "init/Kconfig"
77
Matt Helsleydc52ddc2008-10-18 20:27:21 -070078source "kernel/Kconfig.freezer"
79
Greg Ungerer66d857b2011-03-22 13:39:27 +100080config MMU
81 bool "MMU-based Paged Memory Management Support"
82 default y
Michael S. Tsirkin4673ca82011-11-24 14:54:28 +020083 select GENERIC_IOMAP
Greg Ungerer66d857b2011-03-22 13:39:27 +100084 help
85 Select if you want MMU-based virtualised addressing space
86 support by paged memory management. If unsure, say 'Y'.
87
Greg Ungerer0e152d82011-06-20 15:49:09 +100088config MMU_MOTOROLA
89 bool
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Greg Ungerer0e6782c2011-10-18 16:26:11 +100091config MMU_COLDFIRE
92 bool
93
Greg Ungerer0e152d82011-06-20 15:49:09 +100094config MMU_SUN3
95 bool
Greg Ungerer0e6782c2011-10-18 16:26:11 +100096 depends on MMU && !MMU_MOTOROLA && !MMU_COLDFIRE
Greg Ungerer0e152d82011-06-20 15:49:09 +100097
98menu "Platform setup"
99
100source arch/m68k/Kconfig.cpu
101
102source arch/m68k/Kconfig.machine
103
104source arch/m68k/Kconfig.bus
105
106endmenu
107
108menu "Kernel Features"
109
110if COLDFIRE
111source "kernel/Kconfig.preempt"
Greg Ungerer66d857b2011-03-22 13:39:27 +1000112endif
Greg Ungerer0e152d82011-06-20 15:49:09 +1000113
114if !MMU || COLDFIRE
115source "kernel/time/Kconfig"
Greg Ungerer66d857b2011-03-22 13:39:27 +1000116endif
Roman Zippel12d810c2007-05-31 00:40:54 -0700117
Dave Hansen3f22ab22005-06-23 00:07:43 -0700118source "mm/Kconfig"
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120endmenu
121
Greg Ungerer66d857b2011-03-22 13:39:27 +1000122menu "Executable file formats"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124source "fs/Kconfig.binfmt"
125
Greg Ungerer66d857b2011-03-22 13:39:27 +1000126endmenu
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Greg Ungerer66d857b2011-03-22 13:39:27 +1000128if !MMU
129menu "Power management options"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Greg Ungerer66d857b2011-03-22 13:39:27 +1000131config PM
Greg Ungerer0e152d82011-06-20 15:49:09 +1000132 bool "Power Management support"
133 help
134 Support processor power management modes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136endmenu
Greg Ungerer66d857b2011-03-22 13:39:27 +1000137endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Sam Ravnborgd5950b42005-07-11 21:03:49 -0700139source "net/Kconfig"
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141source "drivers/Kconfig"
142
Greg Ungerer0e152d82011-06-20 15:49:09 +1000143source "arch/m68k/Kconfig.devices"
Greg Ungerer66d857b2011-03-22 13:39:27 +1000144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145source "fs/Kconfig"
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147source "arch/m68k/Kconfig.debug"
148
149source "security/Kconfig"
150
151source "crypto/Kconfig"
152
153source "lib/Kconfig"