blob: 311a300d48cca82b82a5faa0bf6abbaee42cacef [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 GENERIC_IRQ_SHOW
Greg Ungerer42b1b942012-08-14 14:31:33 +10008 select GENERIC_ATOMIC64
Catalin Marinasaf1839e2012-10-08 16:28:08 -07009 select HAVE_UID16
Stephen Rothwell4febd952013-03-07 15:48:16 +110010 select VIRT_TO_BUS
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
Greg Ungererf79b8592013-08-02 17:24:38 +100013 select GENERIC_IOMAP
Geert Uytterhoevend8ce7262012-05-29 23:30:08 +020014 select GENERIC_STRNCPY_FROM_USER if MMU
15 select GENERIC_STRNLEN_USER if MMU
Greg Ungerer9657a872012-01-30 11:58:21 +100016 select FPU if MMU
Will Deaconc1d7e012012-07-30 14:42:46 -070017 select ARCH_WANT_IPC_PARSE_VERSION
Anna-Maria Gleixner60a5e4c2012-05-18 16:45:49 +000018 select ARCH_USES_GETTIMEOFFSET if MMU && !COLDFIRE
David Howells786d35d2012-09-28 14:31:03 +093019 select HAVE_MOD_ARCH_SPECIFIC
20 select MODULES_USE_ELF_REL
21 select MODULES_USE_ELF_RELA
Al Viro1ba3e7e2012-12-25 16:26:28 -050022 select OLD_SIGSUSPEND3
Al Viro8be433a2012-12-25 19:29:01 -050023 select OLD_SIGACTION
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025config RWSEM_GENERIC_SPINLOCK
26 bool
27 default y
28
29config RWSEM_XCHGADD_ALGORITHM
30 bool
31
David Howellsf0d1b0b2006-12-08 02:37:49 -080032config ARCH_HAS_ILOG2_U32
33 bool
David Howellsf0d1b0b2006-12-08 02:37:49 -080034
35config ARCH_HAS_ILOG2_U64
36 bool
David Howellsf0d1b0b2006-12-08 02:37:49 -080037
Akinobu Mitaba1a5b32006-03-26 01:39:27 -080038config GENERIC_HWEIGHT
39 bool
40 default y
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042config GENERIC_CALIBRATE_DELAY
43 bool
44 default y
45
Greg Ungerer7f73baf2011-10-18 15:49:19 +100046config GENERIC_CSUM
47 bool
48
Ingo Molnar06027bd2006-02-14 13:53:15 -080049config TIME_LOW_RES
50 bool
51 default y
52
Al Viro5ea81762007-02-11 15:41:31 +000053config NO_IOPORT
54 def_bool y
55
Al Virodfedfaf2007-07-20 04:33:58 +010056config NO_DMA
Greg Ungerer66d857b2011-03-22 13:39:27 +100057 def_bool (MMU && SUN3) || (!MMU && !COLDFIRE)
Al Virodfedfaf2007-07-20 04:33:58 +010058
Greg Ungerer66d857b2011-03-22 13:39:27 +100059config ZONE_DMA
60 bool
61 default y
Greg Ungerer171d8092011-05-17 16:45:00 +100062
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 Ungerer0e6782c2011-10-18 16:26:11 +100082config MMU_COLDFIRE
83 bool
84
Greg Ungerer0e152d82011-06-20 15:49:09 +100085config MMU_SUN3
86 bool
Greg Ungerer0e6782c2011-10-18 16:26:11 +100087 depends on MMU && !MMU_MOTOROLA && !MMU_COLDFIRE
Greg Ungerer0e152d82011-06-20 15:49:09 +100088
89menu "Platform setup"
90
91source arch/m68k/Kconfig.cpu
92
93source arch/m68k/Kconfig.machine
94
95source arch/m68k/Kconfig.bus
96
97endmenu
98
99menu "Kernel Features"
100
101if COLDFIRE
102source "kernel/Kconfig.preempt"
Greg Ungerer66d857b2011-03-22 13:39:27 +1000103endif
Greg Ungerer0e152d82011-06-20 15:49:09 +1000104
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"