]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/frv/Kconfig
frv: switch to generic sigaltstack
[mirror_ubuntu-bionic-kernel.git] / arch / frv / Kconfig
CommitLineData
1da177e4
LT
1config FRV
2 bool
3 default y
ec7748b5 4 select HAVE_IDE
4a3b9893 5 select HAVE_ARCH_TRACEHOOK
e360adbe 6 select HAVE_IRQ_WORK
cdd6c482 7 select HAVE_PERF_EVENTS
af1839eb 8 select HAVE_UID16
f39b02d6 9 select HAVE_GENERIC_HARDIRQS
3062aa50 10 select GENERIC_IRQ_SHOW
9b2a60c4 11 select HAVE_DEBUG_BUGVERBOSE
df013ffb 12 select ARCH_HAVE_NMI_SAFE_CMPXCHG
9f13a1fd 13 select GENERIC_CPU_DEVICES
c1d7e01d 14 select ARCH_WANT_IPC_PARSE_VERSION
fe761416 15 select GENERIC_SIGALTSTACK
1da177e4 16
66701b14
CL
17config ZONE_DMA
18 bool
19 default y
20
1da177e4
LT
21config RWSEM_GENERIC_SPINLOCK
22 bool
23 default y
24
25config RWSEM_XCHGADD_ALGORITHM
26 bool
27
1f6d7a93
AM
28config GENERIC_HWEIGHT
29 bool
30 default y
31
1da177e4
LT
32config GENERIC_CALIBRATE_DELAY
33 bool
34 default n
35
06027bdd
IM
36config TIME_LOW_RES
37 bool
38 default y
39
8defab33 40config QUICKLIST
f0d1b0b3
DH
41 bool
42 default y
43
8defab33 44config ARCH_HAS_ILOG2_U32
f0d1b0b3
DH
45 bool
46 default y
47
8defab33 48config ARCH_HAS_ILOG2_U64
81819f0f
CL
49 bool
50 default y
51
bdc80787
PA
52config HZ
53 int
54 default 1000
55
1da177e4
LT
56source "init/Kconfig"
57
dc52ddc0
MH
58source "kernel/Kconfig.freezer"
59
1da177e4
LT
60
61menu "Fujitsu FR-V system setup"
62
63config MMU
64 bool "MMU support"
65 help
66 This options switches on and off support for the FR-V MMU
67 (effectively switching between vmlinux and uClinux). Not all FR-V
68 CPUs support this. Currently only the FR451 has a sufficiently
69 featured MMU.
70
71config FRV_OUTOFLINE_ATOMIC_OPS
72 bool "Out-of-line the FRV atomic operations"
73 default n
74 help
75 Setting this option causes the FR-V atomic operations to be mostly
76 implemented out-of-line.
77
0868ff7a 78 See Documentation/frv/atomic-ops.txt for more information.
1da177e4
LT
79
80config HIGHMEM
81 bool "High memory support"
82 depends on MMU
83 default y
84 help
85 If you wish to use more than 256MB of memory with your MMU based
86 system, you will need to select this option. The kernel can only see
87 the memory between 0xC0000000 and 0xD0000000 directly... everything
88 else must be kmapped.
89
90 The arch is, however, capable of supporting up to 3GB of SDRAM.
91
92config HIGHPTE
93 bool "Allocate page tables in highmem"
94 depends on HIGHMEM
95 default y
96 help
97 The VM uses one page of memory for each page table. For systems
98 with a lot of RAM, this can be wasteful of precious low memory.
99 Setting this option will put user-space page tables in high memory.
100
3f22ab27
DH
101source "mm/Kconfig"
102
1da177e4
LT
103choice
104 prompt "uClinux kernel load address"
105 depends on !MMU
106 default UCPAGE_OFFSET_C0000000
107 help
108 This option sets the base address for the uClinux kernel. The kernel
109 will rearrange the SDRAM layout to start at this address, and move
110 itself to start there. It must be greater than 0, and it must be
111 sufficiently less than 0xE0000000 that the SDRAM does not intersect
112 the I/O region.
113
114 The base address must also be aligned such that the SDRAM controller
115 can decode it. For instance, a 512MB SDRAM bank must be 512MB aligned.
116
117config UCPAGE_OFFSET_20000000
118 bool "0x20000000"
119
120config UCPAGE_OFFSET_40000000
121 bool "0x40000000"
122
123config UCPAGE_OFFSET_60000000
124 bool "0x60000000"
125
126config UCPAGE_OFFSET_80000000
127 bool "0x80000000"
128
129config UCPAGE_OFFSET_A0000000
130 bool "0xA0000000"
131
132config UCPAGE_OFFSET_C0000000
133 bool "0xC0000000 (Recommended)"
134
135endchoice
136
7038220a
DH
137config PAGE_OFFSET
138 hex
139 default 0x20000000 if UCPAGE_OFFSET_20000000
140 default 0x40000000 if UCPAGE_OFFSET_40000000
141 default 0x60000000 if UCPAGE_OFFSET_60000000
142 default 0x80000000 if UCPAGE_OFFSET_80000000
143 default 0xA0000000 if UCPAGE_OFFSET_A0000000
144 default 0xC0000000
145
1da177e4
LT
146config PROTECT_KERNEL
147 bool "Protect core kernel against userspace"
148 depends on !MMU
149 default y
150 help
151 Selecting this option causes the uClinux kernel to change the
152 permittivity of DAMPR register covering the core kernel image to
153 prevent userspace accessing the underlying memory directly.
154
155choice
156 prompt "CPU Caching mode"
157 default FRV_DEFL_CACHE_WBACK
158 help
159 This option determines the default caching mode for the kernel.
160
161 Write-Back caching mode involves the all reads and writes causing
162 the affected cacheline to be read into the cache first before being
163 operated upon. Memory is not then updated by a write until the cache
164 is filled and a cacheline needs to be displaced from the cache to
165 make room. Only at that point is it written back.
166
167 Write-Behind caching is similar to Write-Back caching, except that a
168 write won't fetch a cacheline into the cache if there isn't already
169 one there; it will write directly to memory instead.
170
171 Write-Through caching only fetches cachelines from memory on a
172 read. Writes always get written directly to memory. If the affected
173 cacheline is also in cache, it will be updated too.
174
175 The final option is to turn of caching entirely.
176
177 Note that not all CPUs support Write-Behind caching. If the CPU on
178 which the kernel is running doesn't, it'll fall back to Write-Back
179 caching.
180
181config FRV_DEFL_CACHE_WBACK
182 bool "Write-Back"
183
184config FRV_DEFL_CACHE_WBEHIND
185 bool "Write-Behind"
186
187config FRV_DEFL_CACHE_WTHRU
188 bool "Write-Through"
189
190config FRV_DEFL_CACHE_DISABLED
191 bool "Disabled"
192
193endchoice
194
195menu "CPU core support"
196
197config CPU_FR401
198 bool "Include FR401 core support"
199 depends on !MMU
200 default y
201 help
202 This enables support for the FR401, FR401A and FR403 CPUs
203
204config CPU_FR405
205 bool "Include FR405 core support"
206 depends on !MMU
207 default y
208 help
209 This enables support for the FR405 CPU
210
211config CPU_FR451
212 bool "Include FR451 core support"
213 default y
214 help
215 This enables support for the FR451 CPU
216
217config CPU_FR451_COMPILE
218 bool "Specifically compile for FR451 core"
219 depends on CPU_FR451 && !CPU_FR401 && !CPU_FR405 && !CPU_FR551
220 default y
221 help
222 This causes appropriate flags to be passed to the compiler to
223 optimise for the FR451 CPU
224
225config CPU_FR551
226 bool "Include FR551 core support"
227 depends on !MMU
228 default y
229 help
230 This enables support for the FR555 CPU
231
232config CPU_FR551_COMPILE
233 bool "Specifically compile for FR551 core"
234 depends on CPU_FR551 && !CPU_FR401 && !CPU_FR405 && !CPU_FR451
235 default y
236 help
237 This causes appropriate flags to be passed to the compiler to
238 optimise for the FR555 CPU
239
240config FRV_L1_CACHE_SHIFT
241 int
242 default "5" if CPU_FR401 || CPU_FR405 || CPU_FR451
243 default "6" if CPU_FR551
244
245endmenu
246
247choice
248 prompt "System support"
249 default MB93091_VDK
250
251config MB93091_VDK
252 bool "MB93091 CPU board with or without motherboard"
253
254config MB93093_PDK
255 bool "MB93093 PDK unit"
256
257endchoice
258
259if MB93091_VDK
260choice
261 prompt "Motherboard support"
262 default MB93090_MB00
263
264config MB93090_MB00
265 bool "Use the MB93090-MB00 motherboard"
266 help
267 Select this option if the MB93091 CPU board is going to be used with
268 a MB93090-MB00 VDK motherboard
269
270config MB93091_NO_MB
271 bool "Use standalone"
272 help
273 Select this option if the MB93091 CPU board is going to be used
274 without a motherboard
275
276endchoice
277endif
278
1bcbba30
DH
279config FUJITSU_MB93493
280 bool "MB93493 Multimedia chip"
281 help
282 Select this option if the MB93493 multimedia chip is going to be
283 used.
284
1da177e4
LT
285choice
286 prompt "GP-Relative data support"
287 default GPREL_DATA_8
288 help
289 This option controls what data, if any, should be placed in the GP
290 relative data sections. Using this means that the compiler can
291 generate accesses to the data using GR16-relative addressing which
292 is faster than absolute instructions and saves space (2 instructions
293 per access).
294
295 However, the GPREL region is limited in size because the immediate
296 value used in the load and store instructions is limited to a 12-bit
297 signed number.
298
299 So if the linker starts complaining that accesses to GPREL data are
300 out of range, try changing this option from the default.
301
302 Note that modules will always be compiled with this feature disabled
303 as the module data will not be in range of the GP base address.
304
305config GPREL_DATA_8
306 bool "Put data objects of up to 8 bytes into GP-REL"
307
308config GPREL_DATA_4
309 bool "Put data objects of up to 4 bytes into GP-REL"
310
311config GPREL_DATA_NONE
312 bool "Don't use GP-REL"
313
314endchoice
315
f8aec757
DH
316config FRV_ONCPU_SERIAL
317 bool "Use on-CPU serial ports"
318 select SERIAL_8250
319 default y
320
1da177e4
LT
321config PCI
322 bool "Use PCI"
323 depends on MB93090_MB00
324 default y
53224185 325 select GENERIC_PCI_IOMAP
1da177e4
LT
326 help
327 Some FR-V systems (such as the MB93090-MB00 VDK) have PCI
328 onboard. If you have one of these boards and you wish to use the PCI
329 facilities, say Y here.
330
1da177e4
LT
331config RESERVE_DMA_COHERENT
332 bool "Reserve DMA coherent memory"
333 depends on PCI && !MMU
334 default y
335 help
336 Many PCI drivers require access to uncached memory for DMA device
337 communications (such as is done with some Ethernet buffer rings). If
338 a fully featured MMU is available, this can be done through page
339 table settings, but if not, a region has to be set aside and marked
340 with a special DAMPR register.
341
342 Setting this option causes uClinux to set aside a portion of the
343 available memory for use in this manner. The memory will then be
344 unavailable for normal kernel use.
345
346source "drivers/pci/Kconfig"
347
7a758313 348source "drivers/pcmcia/Kconfig"
1da177e4 349
1da177e4 350menu "Power management options"
f4cb5700
JB
351
352config ARCH_SUSPEND_POSSIBLE
353 def_bool y
f4cb5700 354
1da177e4
LT
355source kernel/power/Kconfig
356endmenu
357
358endmenu
359
360
361menu "Executable formats"
362
363source "fs/Kconfig.binfmt"
364
365endmenu
366
d5950b43
SR
367source "net/Kconfig"
368
1da177e4
LT
369source "drivers/Kconfig"
370
371source "fs/Kconfig"
372
373source "arch/frv/Kconfig.debug"
374
375source "security/Kconfig"
376
377source "crypto/Kconfig"
378
379source "lib/Kconfig"