blob: dae1e7e16a374d3e100c2f86115181ea2b0006ca [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
Catalin Marinas9b2a60c2012-10-08 16:28:13 -07006 select HAVE_DEBUG_BUGVERBOSE
Geert Uytterhoevend890d732011-09-11 11:28:04 +02007 select HAVE_GENERIC_HARDIRQS
8 select GENERIC_IRQ_SHOW
Greg Ungerer42b1b942012-08-14 14:31:33 +10009 select GENERIC_ATOMIC64
Catalin Marinasaf1839e2012-10-08 16:28:08 -070010 select HAVE_UID16
Huang Yingdf013ff2011-07-13 13:14:22 +080011 select ARCH_HAVE_NMI_SAFE_CMPXCHG if RMW_INSNS
Ben Hutchings9f13a1f2012-01-10 03:04:32 +000012 select GENERIC_CPU_DEVICES
Geert Uytterhoevend8ce7262012-05-29 23:30:08 +020013 select GENERIC_STRNCPY_FROM_USER if MMU
14 select GENERIC_STRNLEN_USER if MMU
Greg Ungerer9657a872012-01-30 11:58:21 +100015 select FPU if MMU
Will Deaconc1d7e012012-07-30 14:42:46 -070016 select ARCH_WANT_IPC_PARSE_VERSION
Anna-Maria Gleixner60a5e4c2012-05-18 16:45:49 +000017 select ARCH_USES_GETTIMEOFFSET if MMU && !COLDFIRE
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Linus Torvalds1da177e2005-04-16 15:20:36 -070019config RWSEM_GENERIC_SPINLOCK
20 bool
21 default y
22
23config RWSEM_XCHGADD_ALGORITHM
24 bool
25
David Howellsf0d1b0b2006-12-08 02:37:49 -080026config ARCH_HAS_ILOG2_U32
27 bool
David Howellsf0d1b0b2006-12-08 02:37:49 -080028
29config ARCH_HAS_ILOG2_U64
30 bool
David Howellsf0d1b0b2006-12-08 02:37:49 -080031
Greg Ungerer0e152d82011-06-20 15:49:09 +100032config GENERIC_GPIO
33 bool
34
Akinobu Mitaba1a5b32006-03-26 01:39:27 -080035config GENERIC_HWEIGHT
36 bool
37 default y
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039config GENERIC_CALIBRATE_DELAY
40 bool
41 default y
42
Greg Ungerer7f73baf2011-10-18 15:49:19 +100043config GENERIC_CSUM
44 bool
45
Ingo Molnar06027bd2006-02-14 13:53:15 -080046config TIME_LOW_RES
47 bool
48 default y
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
H. Peter Anvinbdc80782008-02-08 04:21:26 -080060config HZ
61 int
Greg Ungerer66d857b2011-03-22 13:39:27 +100062 default 1000 if CLEOPATRA
H. Peter Anvinbdc80782008-02-08 04:21:26 -080063 default 100
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065source "init/Kconfig"
66
Matt Helsleydc52ddc2008-10-18 20:27:21 -070067source "kernel/Kconfig.freezer"
68
Greg Ungerer66d857b2011-03-22 13:39:27 +100069config MMU
70 bool "MMU-based Paged Memory Management Support"
71 default y
Michael S. Tsirkin4673ca82011-11-24 14:54:28 +020072 select GENERIC_IOMAP
Greg Ungerer66d857b2011-03-22 13:39:27 +100073 help
74 Select if you want MMU-based virtualised addressing space
75 support by paged memory management. If unsure, say 'Y'.
76
Greg Ungerer0e152d82011-06-20 15:49:09 +100077config MMU_MOTOROLA
78 bool
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Greg Ungerer0e6782c2011-10-18 16:26:11 +100080config MMU_COLDFIRE
81 bool
82
Greg Ungerer0e152d82011-06-20 15:49:09 +100083config MMU_SUN3
84 bool
Greg Ungerer0e6782c2011-10-18 16:26:11 +100085 depends on MMU && !MMU_MOTOROLA && !MMU_COLDFIRE
Greg Ungerer0e152d82011-06-20 15:49:09 +100086
87menu "Platform setup"
88
89source arch/m68k/Kconfig.cpu
90
91source arch/m68k/Kconfig.machine
92
93source arch/m68k/Kconfig.bus
94
95endmenu
96
97menu "Kernel Features"
98
99if COLDFIRE
100source "kernel/Kconfig.preempt"
Greg Ungerer66d857b2011-03-22 13:39:27 +1000101endif
Greg Ungerer0e152d82011-06-20 15:49:09 +1000102
Dave Hansen3f22ab22005-06-23 00:07:43 -0700103source "mm/Kconfig"
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105endmenu
106
Greg Ungerer66d857b2011-03-22 13:39:27 +1000107menu "Executable file formats"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109source "fs/Kconfig.binfmt"
110
Greg Ungerer66d857b2011-03-22 13:39:27 +1000111endmenu
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Greg Ungerer66d857b2011-03-22 13:39:27 +1000113if !MMU
114menu "Power management options"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Greg Ungerer66d857b2011-03-22 13:39:27 +1000116config PM
Greg Ungerer0e152d82011-06-20 15:49:09 +1000117 bool "Power Management support"
118 help
119 Support processor power management modes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121endmenu
Greg Ungerer66d857b2011-03-22 13:39:27 +1000122endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Sam Ravnborgd5950b42005-07-11 21:03:49 -0700124source "net/Kconfig"
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126source "drivers/Kconfig"
127
Greg Ungerer0e152d82011-06-20 15:49:09 +1000128source "arch/m68k/Kconfig.devices"
Greg Ungerer66d857b2011-03-22 13:39:27 +1000129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130source "fs/Kconfig"
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132source "arch/m68k/Kconfig.debug"
133
134source "security/Kconfig"
135
136source "crypto/Kconfig"
137
138source "lib/Kconfig"