ARC: [kbuild] Allow platforms to disable LLSC for !SMP as well
[linux-2.6-block.git] / arch / arc / Kconfig
CommitLineData
cfdbc2e1
VG
1#
2# Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
3#
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License version 2 as
6# published by the Free Software Foundation.
7#
8
9config ARC
10 def_bool y
4adeefe1 11 select CLONE_BACKWARDS
cfdbc2e1
VG
12 # ARC Busybox based initramfs absolutely relies on DEVTMPFS for /dev
13 select DEVTMPFS if !INITRAMFS_SOURCE=""
14 select GENERIC_ATOMIC64
15 select GENERIC_CLOCKEVENTS
16 select GENERIC_FIND_FIRST_BIT
17 # for now, we don't need GENERIC_IRQ_PROBE, CONFIG_GENERIC_IRQ_CHIP
18 select GENERIC_IRQ_SHOW
bf90e1ea
VG
19 select GENERIC_KERNEL_EXECVE
20 select GENERIC_KERNEL_THREAD
cfdbc2e1
VG
21 select GENERIC_PENDING_IRQ if SMP
22 select GENERIC_SMP_IDLE_THREAD
f46121bd 23 select HAVE_ARCH_KGDB
547f1125 24 select HAVE_ARCH_TRACEHOOK
cfdbc2e1 25 select HAVE_GENERIC_HARDIRQS
4368902b 26 select HAVE_IOREMAP_PROT
4d86dfbb
VG
27 select HAVE_KPROBES
28 select HAVE_KRETPROBES
c121c506 29 select HAVE_MEMBLOCK
854a0d95 30 select HAVE_MOD_ARCH_SPECIFIC if ARC_DW2_UNWIND
769bc1fd 31 select HAVE_OPROFILE
9c57564e 32 select HAVE_PERF_EVENTS
999159a5 33 select IRQ_DOMAIN
cfdbc2e1 34 select MODULES_USE_ELF_RELA
c121c506 35 select NO_BOOTMEM
999159a5
VG
36 select OF
37 select OF_EARLY_FLATTREE
9c57564e 38 select PERF_USE_VMALLOC
cfdbc2e1
VG
39
40config SCHED_OMIT_FRAME_POINTER
41 def_bool y
42
43config GENERIC_CSUM
44 def_bool y
45
46config RWSEM_GENERIC_SPINLOCK
47 def_bool y
48
49config ARCH_FLATMEM_ENABLE
50 def_bool y
51
52config MMU
53 def_bool y
54
55config NO_IOPORT
56 def_bool y
57
58config GENERIC_CALIBRATE_DELAY
59 def_bool y
60
61config GENERIC_HWEIGHT
62 def_bool y
63
64config BINFMT_ELF
65 def_bool y
66
44c8bb91
VG
67config STACKTRACE_SUPPORT
68 def_bool y
69 select STACKTRACE
70
cfdbc2e1
VG
71config HAVE_LATENCYTOP_SUPPORT
72 def_bool y
73
74config NO_DMA
75 def_bool n
76
77source "init/Kconfig"
78source "kernel/Kconfig.freezer"
79
80menu "ARC Architecture Configuration"
81
93ad700d 82menu "ARC Platform/SoC/Board"
cfdbc2e1 83
93ad700d 84source "arch/arc/plat-arcfpga/Kconfig"
cfdbc2e1 85#New platform adds here
93ad700d 86
53d98958 87endmenu
cfdbc2e1
VG
88
89menu "ARC CPU Configuration"
90
91choice
92 prompt "ARC Core"
93 default ARC_CPU_770
94
95config ARC_CPU_750D
96 bool "ARC750D"
97 help
98 Support for ARC750 core
99
100config ARC_CPU_770
101 bool "ARC770"
102 select ARC_CPU_REL_4_10
103 help
104 Support for ARC770 core introduced with Rel 4.10 (Summer 2011)
105 This core has a bunch of cool new features:
106 -MMU-v3: Variable Page Sz (4k, 8k, 16k), bigger J-TLB (128x4)
107 Shared Address Spaces (for sharing TLB entires in MMU)
108 -Caches: New Prog Model, Region Flush
109 -Insns: endian swap, load-locked/store-conditional, time-stamp-ctr
110
111endchoice
112
113config CPU_BIG_ENDIAN
114 bool "Enable Big Endian Mode"
115 default n
116 help
117 Build kernel for Big Endian Mode of ARC CPU
118
fc7943d2
VG
119# If a platform can't work with 0x8000_0000 based dma_addr_t
120config ARC_PLAT_NEEDS_CPU_TO_DMA
121 bool
122
41195d23
VG
123config SMP
124 bool "Symmetric Multi-Processing (Incomplete)"
125 default n
126 select USE_GENERIC_SMP_HELPERS
127 help
128 This enables support for systems with more than one CPU. If you have
129 a system with only one CPU, like most personal computers, say N. If
130 you have a system with more than one CPU, say Y.
131
132if SMP
133
134config ARC_HAS_COH_CACHES
135 def_bool n
136
41195d23
VG
137config ARC_HAS_COH_RTSC
138 def_bool n
139
140config ARC_HAS_REENTRANT_IRQ_LV2
141 def_bool n
142
143endif
144
145config NR_CPUS
146 int "Maximum number of CPUs (2-32)"
147 range 2 32
148 depends on SMP
149 default "2"
150
cfdbc2e1
VG
151menuconfig ARC_CACHE
152 bool "Enable Cache Support"
153 default y
41195d23
VG
154 # if SMP, cache enabled ONLY if ARC implementation has cache coherency
155 depends on !SMP || ARC_HAS_COH_CACHES
cfdbc2e1
VG
156
157if ARC_CACHE
158
159config ARC_CACHE_LINE_SHIFT
160 int "Cache Line Length (as power of 2)"
161 range 5 7
162 default "6"
163 help
164 Starting with ARC700 4.9, Cache line length is configurable,
165 This option specifies "N", with Line-len = 2 power N
166 So line lengths of 32, 64, 128 are specified by 5,6,7, respectively
167 Linux only supports same line lengths for I and D caches.
168
169config ARC_HAS_ICACHE
170 bool "Use Instruction Cache"
171 default y
172
173config ARC_HAS_DCACHE
174 bool "Use Data Cache"
175 default y
176
177config ARC_CACHE_PAGES
178 bool "Per Page Cache Control"
179 default y
180 depends on ARC_HAS_ICACHE || ARC_HAS_DCACHE
181 help
182 This can be used to over-ride the global I/D Cache Enable on a
183 per-page basis (but only for pages accessed via MMU such as
184 Kernel Virtual address or User Virtual Address)
185 TLB entries have a per-page Cache Enable Bit.
186 Note that Global I/D ENABLE + Per Page DISABLE works but corollary
187 Global DISABLE + Per Page ENABLE won't work
188
189endif #ARC_CACHE
190
8b5850f8
VG
191config ARC_HAS_ICCM
192 bool "Use ICCM"
193 help
194 Single Cycle RAMS to store Fast Path Code
195 default n
196
197config ARC_ICCM_SZ
198 int "ICCM Size in KB"
199 default "64"
200 depends on ARC_HAS_ICCM
201
202config ARC_HAS_DCCM
203 bool "Use DCCM"
204 help
205 Single Cycle RAMS to store Fast Path Data
206 default n
207
208config ARC_DCCM_SZ
209 int "DCCM Size in KB"
210 default "64"
211 depends on ARC_HAS_DCCM
212
213config ARC_DCCM_BASE
214 hex "DCCM map address"
215 default "0xA0000000"
216 depends on ARC_HAS_DCCM
217
cfdbc2e1
VG
218config ARC_HAS_HW_MPY
219 bool "Use Hardware Multiplier (Normal or Faster XMAC)"
220 default y
221 help
222 Influences how gcc generates code for MPY operations.
223 If enabled, MPYxx insns are generated, provided by Standard/XMAC
224 Multipler. Otherwise software multipy lib is used
225
226choice
227 prompt "ARC700 MMU Version"
228 default ARC_MMU_V3 if ARC_CPU_770
229 default ARC_MMU_V2 if ARC_CPU_750D
230
231config ARC_MMU_V1
232 bool "MMU v1"
233 help
234 Orig ARC700 MMU
235
236config ARC_MMU_V2
237 bool "MMU v2"
238 help
239 Fixed the deficiency of v1 - possible thrashing in memcpy sceanrio
240 when 2 D-TLB and 1 I-TLB entries index into same 2way set.
241
242config ARC_MMU_V3
243 bool "MMU v3"
244 depends on ARC_CPU_770
245 help
246 Introduced with ARC700 4.10: New Features
247 Variable Page size (1k-16k), var JTLB size 128 x (2 or 4)
248 Shared Address Spaces (SASID)
249
250endchoice
251
252
253choice
254 prompt "MMU Page Size"
255 default ARC_PAGE_SIZE_8K
256
257config ARC_PAGE_SIZE_8K
258 bool "8KB"
259 help
260 Choose between 8k vs 16k
261
262config ARC_PAGE_SIZE_16K
263 bool "16KB"
264 depends on ARC_MMU_V3
265
266config ARC_PAGE_SIZE_4K
267 bool "4KB"
268 depends on ARC_MMU_V3
269
270endchoice
271
4788a594
VG
272config ARC_COMPACT_IRQ_LEVELS
273 bool "ARCompact IRQ Priorities: High(2)/Low(1)"
274 default n
275 # Timer HAS to be high priority, for any other high priority config
276 select ARC_IRQ3_LV2
41195d23
VG
277 # if SMP, LV2 enabled ONLY if ARC implementation has LV2 re-entrancy
278 depends on !SMP || ARC_HAS_REENTRANT_IRQ_LV2
4788a594
VG
279
280if ARC_COMPACT_IRQ_LEVELS
281
282config ARC_IRQ3_LV2
283 bool
284
285config ARC_IRQ5_LV2
286 bool
287
288config ARC_IRQ6_LV2
289 bool
290
291endif
292
cfdbc2e1
VG
293config ARC_FPU_SAVE_RESTORE
294 bool "Enable FPU state persistence across context switch"
295 default n
296 help
297 Double Precision Floating Point unit had dedictaed regs which
298 need to be saved/restored across context-switch.
299 Note that ARC FPU is overly simplistic, unlike say x86, which has
300 hardware pieces to allow software to conditionally save/restore,
301 based on actual usage of FPU by a task. Thus our implemn does
302 this for all tasks in system.
303
fbf8e13d
VG
304config ARC_CANT_LLSC
305 def_bool n
306
cfdbc2e1
VG
307menuconfig ARC_CPU_REL_4_10
308 bool "Enable support for Rel 4.10 features"
309 default n
310 help
311 -ARC770 (and dependent features) enabled
312 -ARC750 also shares some of the new features with 770
313
314config ARC_HAS_LLSC
315 bool "Insn: LLOCK/SCOND (efficient atomic ops)"
316 default y
fbf8e13d 317 depends on ARC_CPU_770 && !ARC_CANT_LLSC
cfdbc2e1
VG
318
319config ARC_HAS_SWAPE
320 bool "Insn: SWAPE (endian-swap)"
321 default y
322 depends on ARC_CPU_REL_4_10
323
324config ARC_HAS_RTSC
325 bool "Insn: RTSC (64-bit r/o cycle counter)"
326 default y
327 depends on ARC_CPU_REL_4_10
41195d23
VG
328 # if SMP, enable RTSC only if counter is coherent across cores
329 depends on !SMP || ARC_HAS_COH_RTSC
cfdbc2e1
VG
330
331endmenu # "ARC CPU Configuration"
332
cfdbc2e1
VG
333config LINUX_LINK_BASE
334 hex "Linux Link Address"
335 default "0x80000000"
336 help
337 ARC700 divides the 32 bit phy address space into two equal halves
338 -Lower 2G (0 - 0x7FFF_FFFF ) is user virtual, translated by MMU
339 -Upper 2G (0x8000_0000 onwards) is untranslated, for kernel
340 Typically Linux kernel is linked at the start of untransalted addr,
341 hence the default value of 0x8zs.
342 However some customers have peripherals mapped at this addr, so
343 Linux needs to be scooted a bit.
344 If you don't know what the above means, leave this setting alone.
345
080c3747
VG
346config ARC_CURR_IN_REG
347 bool "Dedicate Register r25 for current_task pointer"
348 default y
349 help
350 This reserved Register R25 to point to Current Task in
351 kernel mode. This saves memory access for each such access
352
2e651ea1
VG
353
354config ARC_MISALIGN_ACCESS
355 bool "Emulate unaligned memory access (userspace only)"
356 default N
357 select SYSCTL_ARCH_UNALIGN_NO_WARN
358 select SYSCTL_ARCH_UNALIGN_ALLOW
359 help
360 This enables misaligned 16 & 32 bit memory access from user space.
361 Use ONLY-IF-ABS-NECESSARY as it will be very slow and also can hide
362 potential bugs in code
363
cfdbc2e1
VG
364config ARC_STACK_NONEXEC
365 bool "Make stack non-executable"
366 default n
367 help
368 To disable the execute permissions of stack/heap of processes
369 which are enabled by default.
370
371config HZ
372 int "Timer Frequency"
373 default 100
374
cbe056f7
VG
375config ARC_METAWARE_HLINK
376 bool "Support for Metaware debugger assisted Host access"
377 default n
378 help
379 This options allows a Linux userland apps to directly access
380 host file system (open/creat/read/write etc) with help from
381 Metaware Debugger. This can come in handy for Linux-host communication
382 when there is no real usable peripheral such as EMAC.
383
cfdbc2e1
VG
384menuconfig ARC_DBG
385 bool "ARC debugging"
386 default y
387
854a0d95
VG
388config ARC_DW2_UNWIND
389 bool "Enable DWARF specific kernel stack unwind"
390 depends on ARC_DBG
391 default y
392 select KALLSYMS
393 help
394 Compiles the kernel with DWARF unwind information and can be used
395 to get stack backtraces.
396
397 If you say Y here the resulting kernel image will be slightly larger
398 but not slower, and it will give very useful debugging information.
399 If you don't debug the kernel, you can say N, but we may not be able
400 to solve problems without frame unwind information
401
cfdbc2e1
VG
402config ARC_DBG_TLB_PARANOIA
403 bool "Paranoia Checks in Low Level TLB Handlers"
f46121bd 404 depends on ARC_DBG
cfdbc2e1
VG
405 default n
406
407config ARC_DBG_TLB_MISS_COUNT
408 bool "Profile TLB Misses"
409 default n
410 select DEBUG_FS
411 depends on ARC_DBG
412 help
413 Counts number of I and D TLB Misses and exports them via Debugfs
414 The counters can be cleared via Debugfs as well
415
416config CMDLINE
417 string "Kernel command line to built-in"
418 default "print-fatal-signals=1"
419 help
420 The default command line which will be appended to the optional
421 u-boot provided command line (see below)
422
423config CMDLINE_UBOOT
424 bool "Support U-boot kernel command line passing"
425 default n
426 help
427 If you are using U-boot (www.denx.de) and wish to pass the kernel
428 command line from the U-boot environment to the Linux kernel then
429 switch this option on.
430 ARC U-boot will setup the cmdline in RAM/flash and set r2 to point
431 to it. kernel startup code will copy the string into cmdline buffer
432 and also append CONFIG_CMDLINE.
433
999159a5
VG
434config ARC_BUILTIN_DTB_NAME
435 string "Built in DTB"
436 help
437 Set the name of the DTB to embed in the vmlinux binary
438 Leaving it blank selects the minimal "skeleton" dtb
439
cfdbc2e1
VG
440source "kernel/Kconfig.preempt"
441
442endmenu # "ARC Architecture Configuration"
443
444source "mm/Kconfig"
445source "net/Kconfig"
446source "drivers/Kconfig"
447source "fs/Kconfig"
448source "arch/arc/Kconfig.debug"
449source "security/Kconfig"
450source "crypto/Kconfig"
451source "lib/Kconfig"