blob: 0df07cee3faf5e1c0585f879a8e61e8d69a1d81b [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
Greg Ungerer42b1b942012-08-14 14:31:33 +10008 select GENERIC_ATOMIC64
Huang Yingdf013ff2011-07-13 13:14:22 +08009 select ARCH_HAVE_NMI_SAFE_CMPXCHG if RMW_INSNS
Ben Hutchings9f13a1f2012-01-10 03:04:32 +000010 select GENERIC_CPU_DEVICES
Geert Uytterhoevend8ce7262012-05-29 23:30:08 +020011 select GENERIC_STRNCPY_FROM_USER if MMU
12 select GENERIC_STRNLEN_USER if MMU
Greg Ungerer9657a872012-01-30 11:58:21 +100013 select FPU if MMU
Will Deaconc1d7e012012-07-30 14:42:46 -070014 select ARCH_WANT_IPC_PARSE_VERSION
Anna-Maria Gleixner60a5e4c2012-05-18 16:45:49 +000015 select ARCH_USES_GETTIMEOFFSET if MMU && !COLDFIRE
David Howells786d35d2012-09-28 14:31:03 +093016 select HAVE_MOD_ARCH_SPECIFIC
17 select MODULES_USE_ELF_REL
18 select MODULES_USE_ELF_RELA
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Linus Torvalds1da177e2005-04-16 15:20:36 -070020config RWSEM_GENERIC_SPINLOCK
21 bool
22 default y
23
24config RWSEM_XCHGADD_ALGORITHM
25 bool
26
David Howellsf0d1b0b2006-12-08 02:37:49 -080027config ARCH_HAS_ILOG2_U32
28 bool
David Howellsf0d1b0b2006-12-08 02:37:49 -080029
30config ARCH_HAS_ILOG2_U64
31 bool
David Howellsf0d1b0b2006-12-08 02:37:49 -080032
Greg Ungerer0e152d82011-06-20 15:49:09 +100033config GENERIC_GPIO
34 bool
35
Akinobu Mitaba1a5b32006-03-26 01:39:27 -080036config GENERIC_HWEIGHT
37 bool
38 default y
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040config GENERIC_CALIBRATE_DELAY
41 bool
42 default y
43
Greg Ungerer7f73baf2011-10-18 15:49:19 +100044config GENERIC_CSUM
45 bool
46
Ingo Molnar06027bd2006-02-14 13:53:15 -080047config TIME_LOW_RES
48 bool
49 default y
50
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
H. Peter Anvinbdc80782008-02-08 04:21:26 -080061config HZ
62 int
Greg Ungerer66d857b2011-03-22 13:39:27 +100063 default 1000 if CLEOPATRA
H. Peter Anvinbdc80782008-02-08 04:21:26 -080064 default 100
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066source "init/Kconfig"
67
Matt Helsleydc52ddc2008-10-18 20:27:21 -070068source "kernel/Kconfig.freezer"
69
Greg Ungerer66d857b2011-03-22 13:39:27 +100070config MMU
71 bool "MMU-based Paged Memory Management Support"
72 default y
Michael S. Tsirkin4673ca82011-11-24 14:54:28 +020073 select GENERIC_IOMAP
Greg Ungerer66d857b2011-03-22 13:39:27 +100074 help
75 Select if you want MMU-based virtualised addressing space
76 support by paged memory management. If unsure, say 'Y'.
77
Greg Ungerer0e152d82011-06-20 15:49:09 +100078config MMU_MOTOROLA
79 bool
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Greg Ungerer0e6782c2011-10-18 16:26:11 +100081config MMU_COLDFIRE
82 bool
83
Greg Ungerer0e152d82011-06-20 15:49:09 +100084config MMU_SUN3
85 bool
Greg Ungerer0e6782c2011-10-18 16:26:11 +100086 depends on MMU && !MMU_MOTOROLA && !MMU_COLDFIRE
Greg Ungerer0e152d82011-06-20 15:49:09 +100087
88menu "Platform setup"
89
90source arch/m68k/Kconfig.cpu
91
92source arch/m68k/Kconfig.machine
93
94source arch/m68k/Kconfig.bus
95
96endmenu
97
98menu "Kernel Features"
99
100if COLDFIRE
101source "kernel/Kconfig.preempt"
Greg Ungerer66d857b2011-03-22 13:39:27 +1000102endif
Greg Ungerer0e152d82011-06-20 15:49:09 +1000103
Dave Hansen3f22ab22005-06-23 00:07:43 -0700104source "mm/Kconfig"
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106endmenu
107
Greg Ungerer66d857b2011-03-22 13:39:27 +1000108menu "Executable file formats"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110source "fs/Kconfig.binfmt"
111
Greg Ungerer66d857b2011-03-22 13:39:27 +1000112endmenu
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Greg Ungerer66d857b2011-03-22 13:39:27 +1000114if !MMU
115menu "Power management options"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Greg Ungerer66d857b2011-03-22 13:39:27 +1000117config PM
Greg Ungerer0e152d82011-06-20 15:49:09 +1000118 bool "Power Management support"
119 help
120 Support processor power management modes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122endmenu
Greg Ungerer66d857b2011-03-22 13:39:27 +1000123endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Sam Ravnborgd5950b42005-07-11 21:03:49 -0700125source "net/Kconfig"
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127source "drivers/Kconfig"
128
Greg Ungerer0e152d82011-06-20 15:49:09 +1000129source "arch/m68k/Kconfig.devices"
Greg Ungerer66d857b2011-03-22 13:39:27 +1000130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131source "fs/Kconfig"
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133source "arch/m68k/Kconfig.debug"
134
135source "security/Kconfig"
136
137source "crypto/Kconfig"
138
139source "lib/Kconfig"