blob: 2914b036d76e50a21b9a0421562cb07edca09b99 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
Linus Torvalds1da177e2005-04-16 15:20:36 -070010config RWSEM_GENERIC_SPINLOCK
11 bool
12 default y
13
14config RWSEM_XCHGADD_ALGORITHM
15 bool
16
David Howellsf0d1b0b2006-12-08 02:37:49 -080017config ARCH_HAS_ILOG2_U32
18 bool
David Howellsf0d1b0b2006-12-08 02:37:49 -080019
20config ARCH_HAS_ILOG2_U64
21 bool
David Howellsf0d1b0b2006-12-08 02:37:49 -080022
Greg Ungerer0e152d82011-06-20 15:49:09 +100023config GENERIC_CLOCKEVENTS
24 bool
25
26config GENERIC_CMOS_UPDATE
27 def_bool !MMU
28
29config GENERIC_GPIO
30 bool
31
Akinobu Mitaba1a5b32006-03-26 01:39:27 -080032config GENERIC_HWEIGHT
33 bool
34 default y
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036config GENERIC_CALIBRATE_DELAY
37 bool
38 default y
39
Greg Ungerer0e152d82011-06-20 15:49:09 +100040config GENERIC_IOMAP
41 def_bool MMU
42
Ingo Molnar06027bd2006-02-14 13:53:15 -080043config TIME_LOW_RES
44 bool
45 default y
46
Greg Ungerer0e152d82011-06-20 15:49:09 +100047config ARCH_USES_GETTIMEOFFSET
48 def_bool MMU
49
Al Viro5ea81762007-02-11 15:41:31 +000050config NO_IOPORT
51 def_bool y
52
Al Virodfedfaf2007-07-20 04:33:58 +010053config NO_DMA
Greg Ungerer66d857b2011-03-22 13:39:27 +100054 def_bool (MMU && SUN3) || (!MMU && !COLDFIRE)
Al Virodfedfaf2007-07-20 04:33:58 +010055
Greg Ungerer66d857b2011-03-22 13:39:27 +100056config ZONE_DMA
57 bool
58 default y
Greg Ungerer171d8092011-05-17 16:45:00 +100059
60config CPU_HAS_NO_BITFIELDS
61 bool
62
H. Peter Anvinbdc80782008-02-08 04:21:26 -080063config HZ
64 int
Greg Ungerer66d857b2011-03-22 13:39:27 +100065 default 1000 if CLEOPATRA
H. Peter Anvinbdc80782008-02-08 04:21:26 -080066 default 100
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068source "init/Kconfig"
69
Matt Helsleydc52ddc2008-10-18 20:27:21 -070070source "kernel/Kconfig.freezer"
71
Greg Ungerer66d857b2011-03-22 13:39:27 +100072config MMU
73 bool "MMU-based Paged Memory Management Support"
74 default y
75 help
76 Select if you want MMU-based virtualised addressing space
77 support by paged memory management. If unsure, say 'Y'.
78
Greg Ungerer0e152d82011-06-20 15:49:09 +100079config MMU_MOTOROLA
80 bool
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Greg Ungerer0e152d82011-06-20 15:49:09 +100082config MMU_SUN3
83 bool
84 depends on MMU && !MMU_MOTOROLA
85
86menu "Platform setup"
87
88source arch/m68k/Kconfig.cpu
89
90source arch/m68k/Kconfig.machine
91
92source arch/m68k/Kconfig.bus
93
94endmenu
95
96menu "Kernel Features"
97
98if COLDFIRE
99source "kernel/Kconfig.preempt"
Greg Ungerer66d857b2011-03-22 13:39:27 +1000100endif
Greg Ungerer0e152d82011-06-20 15:49:09 +1000101
102if !MMU || COLDFIRE
103source "kernel/time/Kconfig"
Greg Ungerer66d857b2011-03-22 13:39:27 +1000104endif
Roman Zippel12d810c2007-05-31 00:40:54 -0700105
Dave Hansen3f22ab22005-06-23 00:07:43 -0700106source "mm/Kconfig"
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108endmenu
109
Greg Ungerer66d857b2011-03-22 13:39:27 +1000110menu "Executable file formats"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112source "fs/Kconfig.binfmt"
113
Greg Ungerer66d857b2011-03-22 13:39:27 +1000114endmenu
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Greg Ungerer66d857b2011-03-22 13:39:27 +1000116if !MMU
117menu "Power management options"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Greg Ungerer66d857b2011-03-22 13:39:27 +1000119config PM
Greg Ungerer0e152d82011-06-20 15:49:09 +1000120 bool "Power Management support"
121 help
122 Support processor power management modes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124endmenu
Greg Ungerer66d857b2011-03-22 13:39:27 +1000125endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Sam Ravnborgd5950b42005-07-11 21:03:49 -0700127source "net/Kconfig"
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129source "drivers/Kconfig"
130
Greg Ungerer0e152d82011-06-20 15:49:09 +1000131source "arch/m68k/Kconfig.devices"
Greg Ungerer66d857b2011-03-22 13:39:27 +1000132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133source "fs/Kconfig"
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135source "arch/m68k/Kconfig.debug"
136
137source "security/Kconfig"
138
139source "crypto/Kconfig"
140
141source "lib/Kconfig"