ARC: Process-creation/scheduling/idle-loop
[linux-2.6-block.git] / arch / arc / Kconfig
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
9 config ARC
10         def_bool y
11         select ARCH_NO_VIRT_TO_BUS
12         select CLONE_BACKWARDS
13         # ARC Busybox based initramfs absolutely relies on DEVTMPFS for /dev
14         select DEVTMPFS if !INITRAMFS_SOURCE=""
15         select GENERIC_ATOMIC64
16         select GENERIC_CLOCKEVENTS
17         select GENERIC_FIND_FIRST_BIT
18         # for now, we don't need GENERIC_IRQ_PROBE, CONFIG_GENERIC_IRQ_CHIP
19         select GENERIC_IRQ_SHOW
20         select GENERIC_KERNEL_EXECVE
21         select GENERIC_KERNEL_THREAD
22         select GENERIC_PENDING_IRQ if SMP
23         select GENERIC_SMP_IDLE_THREAD
24         select HAVE_GENERIC_HARDIRQS
25         select MODULES_USE_ELF_RELA
26
27 config SCHED_OMIT_FRAME_POINTER
28         def_bool y
29
30 config GENERIC_CSUM
31         def_bool y
32
33 config RWSEM_GENERIC_SPINLOCK
34         def_bool y
35
36 config ARCH_FLATMEM_ENABLE
37         def_bool y
38
39 config MMU
40         def_bool y
41
42 config NO_IOPORT
43         def_bool y
44
45 config GENERIC_CALIBRATE_DELAY
46         def_bool y
47
48 config GENERIC_HWEIGHT
49         def_bool y
50
51 config BINFMT_ELF
52         def_bool y
53
54 config HAVE_LATENCYTOP_SUPPORT
55         def_bool y
56
57 config NO_DMA
58         def_bool n
59
60 source "init/Kconfig"
61 source "kernel/Kconfig.freezer"
62
63 menu "ARC Architecture Configuration"
64
65 choice
66         prompt "ARC Platform"
67         default ARC_PLAT_FPGA_LEGACY
68
69 config ARC_PLAT_FPGA_LEGACY
70         bool "\"Legacy\" ARC FPGA dev platform"
71         help
72           Support for ARC development platforms, provided by Synopsys.
73           These are based on FPGA or ISS. e.g.
74           - ARCAngel4
75           - ML509
76           - MetaWare ISS
77
78 #New platform adds here
79 endchoice
80
81 menu "ARC CPU Configuration"
82
83 choice
84         prompt "ARC Core"
85         default ARC_CPU_770
86
87 config ARC_CPU_750D
88         bool "ARC750D"
89         help
90           Support for ARC750 core
91
92 config ARC_CPU_770
93         bool "ARC770"
94         select ARC_CPU_REL_4_10
95         help
96           Support for ARC770 core introduced with Rel 4.10 (Summer 2011)
97           This core has a bunch of cool new features:
98           -MMU-v3: Variable Page Sz (4k, 8k, 16k), bigger J-TLB (128x4)
99                    Shared Address Spaces (for sharing TLB entires in MMU)
100           -Caches: New Prog Model, Region Flush
101           -Insns: endian swap, load-locked/store-conditional, time-stamp-ctr
102
103 endchoice
104
105 config CPU_BIG_ENDIAN
106         bool "Enable Big Endian Mode"
107         default n
108         help
109           Build kernel for Big Endian Mode of ARC CPU
110
111 menuconfig ARC_CACHE
112         bool "Enable Cache Support"
113         default y
114
115 if ARC_CACHE
116
117 config ARC_CACHE_LINE_SHIFT
118         int "Cache Line Length (as power of 2)"
119         range 5 7
120         default "6"
121         help
122           Starting with ARC700 4.9, Cache line length is configurable,
123           This option specifies "N", with Line-len = 2 power N
124           So line lengths of 32, 64, 128 are specified by 5,6,7, respectively
125           Linux only supports same line lengths for I and D caches.
126
127 config ARC_HAS_ICACHE
128         bool "Use Instruction Cache"
129         default y
130
131 config ARC_HAS_DCACHE
132         bool "Use Data Cache"
133         default y
134
135 config ARC_CACHE_PAGES
136         bool "Per Page Cache Control"
137         default y
138         depends on ARC_HAS_ICACHE || ARC_HAS_DCACHE
139         help
140           This can be used to over-ride the global I/D Cache Enable on a
141           per-page basis (but only for pages accessed via MMU such as
142           Kernel Virtual address or User Virtual Address)
143           TLB entries have a per-page Cache Enable Bit.
144           Note that Global I/D ENABLE + Per Page DISABLE works but corollary
145           Global DISABLE + Per Page ENABLE won't work
146
147 endif   #ARC_CACHE
148
149 config ARC_HAS_HW_MPY
150         bool "Use Hardware Multiplier (Normal or Faster XMAC)"
151         default y
152         help
153           Influences how gcc generates code for MPY operations.
154           If enabled, MPYxx insns are generated, provided by Standard/XMAC
155           Multipler. Otherwise software multipy lib is used
156
157 choice
158         prompt "ARC700 MMU Version"
159         default ARC_MMU_V3 if ARC_CPU_770
160         default ARC_MMU_V2 if ARC_CPU_750D
161
162 config ARC_MMU_V1
163         bool "MMU v1"
164         help
165           Orig ARC700 MMU
166
167 config ARC_MMU_V2
168         bool "MMU v2"
169         help
170           Fixed the deficiency of v1 - possible thrashing in memcpy sceanrio
171           when 2 D-TLB and 1 I-TLB entries index into same 2way set.
172
173 config ARC_MMU_V3
174         bool "MMU v3"
175         depends on ARC_CPU_770
176         help
177           Introduced with ARC700 4.10: New Features
178           Variable Page size (1k-16k), var JTLB size 128 x (2 or 4)
179           Shared Address Spaces (SASID)
180
181 endchoice
182
183
184 choice
185         prompt "MMU Page Size"
186         default ARC_PAGE_SIZE_8K
187
188 config ARC_PAGE_SIZE_8K
189         bool "8KB"
190         help
191           Choose between 8k vs 16k
192
193 config ARC_PAGE_SIZE_16K
194         bool "16KB"
195         depends on ARC_MMU_V3
196
197 config ARC_PAGE_SIZE_4K
198         bool "4KB"
199         depends on ARC_MMU_V3
200
201 endchoice
202
203 config ARC_FPU_SAVE_RESTORE
204         bool "Enable FPU state persistence across context switch"
205         default n
206         help
207           Double Precision Floating Point unit had dedictaed regs which
208           need to be saved/restored across context-switch.
209           Note that ARC FPU is overly simplistic, unlike say x86, which has
210           hardware pieces to allow software to conditionally save/restore,
211           based on actual usage of FPU by a task. Thus our implemn does
212           this for all tasks in system.
213
214 menuconfig ARC_CPU_REL_4_10
215         bool "Enable support for Rel 4.10 features"
216         default n
217         help
218           -ARC770 (and dependent features) enabled
219           -ARC750 also shares some of the new features with 770
220
221 config ARC_HAS_LLSC
222         bool "Insn: LLOCK/SCOND (efficient atomic ops)"
223         default y
224         depends on ARC_CPU_770
225         # if SMP, enable LLSC ONLY if ARC implementation has coherent atomics
226         depends on !SMP || ARC_HAS_COH_LLSC
227
228 config ARC_HAS_SWAPE
229         bool "Insn: SWAPE (endian-swap)"
230         default y
231         depends on ARC_CPU_REL_4_10
232
233 config ARC_HAS_RTSC
234         bool "Insn: RTSC (64-bit r/o cycle counter)"
235         default y
236         depends on ARC_CPU_REL_4_10
237
238 endmenu   # "ARC CPU Configuration"
239
240 menu "Platform Board Configuration"
241
242 source "arch/arc/plat-arcfpga/Kconfig"
243
244 #New platform adds here
245
246 config ARC_PLAT_CLK
247         int "Clk speed in Hz"
248         default "80000000"
249
250 config LINUX_LINK_BASE
251         hex "Linux Link Address"
252         default "0x80000000"
253         help
254           ARC700 divides the 32 bit phy address space into two equal halves
255           -Lower 2G (0 - 0x7FFF_FFFF ) is user virtual, translated by MMU
256           -Upper 2G (0x8000_0000 onwards) is untranslated, for kernel
257           Typically Linux kernel is linked at the start of untransalted addr,
258           hence the default value of 0x8zs.
259           However some customers have peripherals mapped at this addr, so
260           Linux needs to be scooted a bit.
261           If you don't know what the above means, leave this setting alone.
262
263 config ARC_PLAT_SDRAM_SIZE
264         hex "SD RAM Size"
265         default "0x10000000"
266         help
267           Implies the amount of SDRAM/DRAM Linux is going to claim/own.
268           The actual memory itself could be larger than this number. But for
269           all software purposes, this is the amt of memory.
270
271 endmenu # "Platform Board Configuration"
272
273 config ARC_STACK_NONEXEC
274         bool "Make stack non-executable"
275         default n
276         help
277           To disable the execute permissions of stack/heap of processes
278           which are enabled by default.
279
280 config HZ
281         int "Timer Frequency"
282         default 100
283
284 menuconfig ARC_DBG
285         bool "ARC debugging"
286         default y
287
288 config ARC_DBG_TLB_PARANOIA
289         bool "Paranoia Checks in Low Level TLB Handlers"
290         depends on ARC_DBG
291         default n
292
293 config ARC_DBG_TLB_MISS_COUNT
294         bool "Profile TLB Misses"
295         default n
296         select DEBUG_FS
297         depends on ARC_DBG
298         help
299           Counts number of I and D TLB Misses and exports them via Debugfs
300           The counters can be cleared via Debugfs as well
301
302 config CMDLINE
303         string "Kernel command line to built-in"
304         default "print-fatal-signals=1"
305         help
306           The default command line which will be appended to the optional
307           u-boot provided command line (see below)
308
309 config CMDLINE_UBOOT
310         bool "Support U-boot kernel command line passing"
311         default n
312         help
313           If you are using U-boot (www.denx.de) and wish to pass the kernel
314           command line from the U-boot environment to the Linux kernel then
315           switch this option on.
316           ARC U-boot will setup the cmdline in RAM/flash and set r2 to point
317           to it. kernel startup code will copy the string into cmdline buffer
318           and also append CONFIG_CMDLINE.
319
320 source "kernel/Kconfig.preempt"
321
322 endmenu  # "ARC Architecture Configuration"
323
324 source "mm/Kconfig"
325 source "net/Kconfig"
326 source "drivers/Kconfig"
327 source "fs/Kconfig"
328 source "arch/arc/Kconfig.debug"
329 source "security/Kconfig"
330 source "crypto/Kconfig"
331 source "lib/Kconfig"