MN10300: SMP TLB flushing
[linux-2.6-block.git] / arch / mn10300 / Kconfig
CommitLineData
b920de1b
DH
1#
2# For a description of the syntax of this configuration file,
3# see Documentation/kbuild/kconfig-language.txt.
4#
5
6mainmenu "Linux Kernel Configuration"
7
8config MN10300
9 def_bool y
58bafe72 10 select HAVE_OPROFILE
b920de1b 11
22d4225f
AT
12config AM33_2
13 def_bool n
14
15config AM33_3
16 def_bool n
17
18config AM34_2
19 def_bool n
8fbbf7c7 20 select MN10300_HAS_ATOMIC_OPS_UNIT
b478491f 21 select MN10300_HAS_CACHE_SNOOP
b920de1b 22
8f19e3da
AT
23config ERRATUM_NEED_TO_RELOAD_MMUCTR
24 def_bool y if AM33_3 || AM34_2
25
b920de1b
DH
26config MMU
27 def_bool y
28
29config HIGHMEM
30 def_bool n
31
32config NUMA
33 def_bool n
34
35config UID16
36 def_bool y
37
38config RWSEM_GENERIC_SPINLOCK
39 def_bool y
40
41config RWSEM_XCHGADD_ALGORITHM
42 bool
43
44config GENERIC_HARDIRQS_NO__DO_IRQ
45 def_bool y
46
47config GENERIC_CALIBRATE_DELAY
48 def_bool y
49
f7a56575
JS
50config GENERIC_CMOS_UPDATE
51 def_bool y
52
b920de1b
DH
53config GENERIC_FIND_NEXT_BIT
54 def_bool y
55
56config GENERIC_HWEIGHT
57 def_bool y
58
b920de1b
DH
59config GENERIC_BUG
60 def_bool y
61
62config QUICKLIST
63 def_bool y
64
65config ARCH_HAS_ILOG2_U32
66 def_bool y
67
b920de1b
DH
68# Use the generic interrupt handling code in kernel/irq/
69config GENERIC_HARDIRQS
70 def_bool y
71
72config HOTPLUG_CPU
73 def_bool n
74
860f7be2
DH
75config HZ
76 int
77 default 1000
78
b920de1b
DH
79mainmenu "Matsushita MN10300/AM33 Kernel Configuration"
80
81source "init/Kconfig"
82
dc52ddc0
MH
83source "kernel/Kconfig.freezer"
84
b920de1b
DH
85
86menu "Matsushita MN10300 system setup"
87
88choice
89 prompt "Unit type"
90 default MN10300_UNIT_ASB2303
91 help
92 This option specifies board for which the kernel will be
93 compiled. It affects the external peripherals catered for.
94
95config MN10300_UNIT_ASB2303
96 bool "ASB2303"
97
98config MN10300_UNIT_ASB2305
99 bool "ASB2305"
100
101endchoice
102
103choice
104 prompt "Processor support"
105 default MN10300_PROC_MN103E010
106 help
107 This option specifies the processor for which the kernel will be
108 compiled. It affects the on-chip peripherals catered for.
109
110config MN10300_PROC_MN103E010
111 bool "MN103E010"
112 depends on MN10300_UNIT_ASB2303 || MN10300_UNIT_ASB2305
22d4225f 113 select AM33_2
b920de1b
DH
114 select MN10300_PROC_HAS_TTYSM0
115 select MN10300_PROC_HAS_TTYSM1
116 select MN10300_PROC_HAS_TTYSM2
117
118endchoice
119
120choice
121 prompt "Processor core support"
122 default MN10300_CPU_AM33V2
123 help
124 This option specifies the processor core for which the kernel will be
125 compiled. It affects the instruction set used.
126
127config MN10300_CPU_AM33V2
128 bool "AM33v2"
129
130endchoice
131
8fbbf7c7
AT
132config MN10300_HAS_ATOMIC_OPS_UNIT
133 def_bool n
134 help
135 This should be enabled if the processor has an atomic ops unit
136 capable of doing LL/SC equivalent operations.
137
b920de1b
DH
138config FPU
139 bool "FPU present"
140 default y
141 depends on MN10300_PROC_MN103E010
142
0bc42d7f 143source "arch/mn10300/mm/Kconfig.cache"
b920de1b 144
a9bc60eb
AT
145config MN10300_TLB_USE_PIDR
146 def_bool y
147
b920de1b
DH
148menu "Memory layout options"
149
150config KERNEL_RAM_BASE_ADDRESS
151 hex "Base address of kernel RAM"
152 default "0x90000000"
153
154config INTERRUPT_VECTOR_BASE
155 hex "Base address of vector table"
156 default "0x90000000"
157 help
158 The base address of the vector table will be programmed into
159 the TBR register. It must be on 16MiB address boundary.
160
161config KERNEL_TEXT_ADDRESS
162 hex "Base address of kernel"
163 default "0x90001000"
164
165config KERNEL_ZIMAGE_BASE_ADDRESS
166 hex "Base address of compressed vmlinux image"
167 default "0x90700000"
168
169endmenu
170
171config PREEMPT
172 bool "Preemptible Kernel"
173 help
174 This option reduces the latency of the kernel when reacting to
175 real-time or interactive events by allowing a low priority process to
176 be preempted even if it is in kernel mode executing a system call.
177 This allows applications to run more reliably even when the system is
178 under load.
179
180 Say Y here if you are building a kernel for a desktop, embedded
181 or real-time system. Say N if you are unsure.
182
b920de1b
DH
183config MN10300_CURRENT_IN_E2
184 bool "Hold current task address in E2 register"
185 default y
186 help
187 This option removes the E2/R2 register from the set available to gcc
188 for normal use and instead uses it to store the address of the
189 current process's task_struct whilst in the kernel.
190
191 This means the kernel doesn't need to calculate the address each time
192 "current" is used (take SP, AND with mask and dereference pointer
193 just to get the address), and instead can just use E2+offset
194 addressing each time.
195
196 This has no effect on userspace.
197
198config MN10300_USING_JTAG
199 bool "Using JTAG to debug kernel"
200 default y
201 help
202 This options indicates that JTAG will be used to debug the kernel. It
203 suppresses the use of certain hardware debugging features, such as
204 single-stepping, which are taken over completely by the JTAG unit.
205
206config MN10300_RTC
207 bool "Using MN10300 RTC"
208 depends on MN10300_PROC_MN103E010
209 default n
210 help
211
212 This option enables support for the RTC, thus enabling time to be
213 tracked, even when system is powered down. This is available on-chip
214 on the MN103E010.
215
216config MN10300_WD_TIMER
217 bool "Using MN10300 watchdog timer"
218 default y
219 help
220 This options indicates that the watchdog timer will be used.
221
222config PCI
223 bool "Use PCI"
224 depends on MN10300_UNIT_ASB2305
225 default y
226 help
227 Some systems (such as the ASB2305) have PCI onboard. If you have one
228 of these boards and you wish to use the PCI facilities, say Y here.
229
230 The PCI-HOWTO, available from
231 <http://www.tldp.org/docs.html#howto>, contains valuable
232 information about which PCI hardware does work under Linux and which
233 doesn't.
234
235source "drivers/pci/Kconfig"
236
237source "drivers/pcmcia/Kconfig"
238
239menu "MN10300 internal serial options"
240
241config MN10300_PROC_HAS_TTYSM0
242 bool
243 default n
244
245config MN10300_PROC_HAS_TTYSM1
246 bool
247 default n
248
249config MN10300_PROC_HAS_TTYSM2
250 bool
251 default n
252
253config MN10300_TTYSM
254 bool "Support for ttySM serial ports"
255 depends on MN10300
256 default y
257 select SERIAL_CORE
258 help
259 This option enables support for the on-chip serial ports that the
260 MN10300 has available.
261
262config MN10300_TTYSM_CONSOLE
263 bool "Support for console on ttySM serial ports"
264 depends on MN10300_TTYSM
265 select SERIAL_CORE_CONSOLE
266 help
267 This option enables support for a console on the on-chip serial ports
268 that the MN10300 has available.
269
270#
271# /dev/ttySM0
272#
273config MN10300_TTYSM0
274 bool "Enable SIF0 (/dev/ttySM0)"
275 depends on MN10300_TTYSM && MN10300_PROC_HAS_TTYSM0
276 help
277 Enable access to SIF0 through /dev/ttySM0 or gdb-stub
278
279choice
280 prompt "Select the timer to supply the clock for SIF0"
281 default MN10300_TTYSM0_TIMER8
282 depends on MN10300_TTYSM0
283
284config MN10300_TTYSM0_TIMER8
285 bool "Use timer 8 (16-bit)"
286
287config MN10300_TTYSM0_TIMER2
288 bool "Use timer 2 (8-bit)"
289
290endchoice
291
292#
293# /dev/ttySM1
294#
295config MN10300_TTYSM1
296 bool "Enable SIF1 (/dev/ttySM1)"
297 depends on MN10300_TTYSM && MN10300_PROC_HAS_TTYSM1
298 help
299 Enable access to SIF1 through /dev/ttySM1 or gdb-stub
300
301choice
302 prompt "Select the timer to supply the clock for SIF1"
303 default MN10300_TTYSM0_TIMER9
304 depends on MN10300_TTYSM1
305
306config MN10300_TTYSM1_TIMER9
307 bool "Use timer 9 (16-bit)"
308
309config MN10300_TTYSM1_TIMER3
310 bool "Use timer 3 (8-bit)"
311
312endchoice
313
314#
315# /dev/ttySM2
316#
317config MN10300_TTYSM2
318 bool "Enable SIF2 (/dev/ttySM2)"
319 depends on MN10300_TTYSM && MN10300_PROC_HAS_TTYSM2
320 help
321 Enable access to SIF2 through /dev/ttySM2 or gdb-stub
322
323choice
324 prompt "Select the timer to supply the clock for SIF2"
325 default MN10300_TTYSM0_TIMER10
326 depends on MN10300_TTYSM2
327
328config MN10300_TTYSM2_TIMER10
329 bool "Use timer 10 (16-bit)"
330
331endchoice
332
333config MN10300_TTYSM2_CTS
334 bool "Enable the use of the CTS line /dev/ttySM2"
335 depends on MN10300_TTYSM2
336
337endmenu
338
339source "mm/Kconfig"
340
341menu "Power management options"
342source kernel/power/Kconfig
343endmenu
344
345endmenu
346
347
348menu "Executable formats"
349
350source "fs/Kconfig.binfmt"
351
352endmenu
353
354source "net/Kconfig"
355
356source "drivers/Kconfig"
357
358source "fs/Kconfig"
359
360source "arch/mn10300/Kconfig.debug"
361
362source "security/Kconfig"
363
364source "crypto/Kconfig"
365
366source "lib/Kconfig"