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