6ce10f92f48113fedb34966ef0b05d66d5e49957
[firefly-linux-kernel-4.4.55.git] / arch / xtensa / Kconfig
1 config ZONE_DMA
2         def_bool y
3
4 config XTENSA
5         def_bool y
6         select ARCH_WANT_FRAME_POINTERS
7         select ARCH_WANT_IPC_PARSE_VERSION
8         select ARCH_WANT_OPTIONAL_GPIOLIB
9         select BUILDTIME_EXTABLE_SORT
10         select CLONE_BACKWARDS
11         select COMMON_CLK
12         select GENERIC_ATOMIC64
13         select GENERIC_CLOCKEVENTS
14         select GENERIC_IRQ_SHOW
15         select GENERIC_PCI_IOMAP
16         select GENERIC_SCHED_CLOCK
17         select HAVE_DMA_API_DEBUG
18         select HAVE_DMA_ATTRS
19         select HAVE_FUNCTION_TRACER
20         select HAVE_IRQ_TIME_ACCOUNTING
21         select HAVE_OPROFILE
22         select HAVE_PERF_EVENTS
23         select IRQ_DOMAIN
24         select MODULES_USE_ELF_RELA
25         select VIRT_TO_BUS
26         help
27           Xtensa processors are 32-bit RISC machines designed by Tensilica
28           primarily for embedded systems.  These processors are both
29           configurable and extensible.  The Linux port to the Xtensa
30           architecture supports all processor configurations and extensions,
31           with reasonable minimum requirements.  The Xtensa Linux project has
32           a home page at <http://www.linux-xtensa.org/>.
33
34 config RWSEM_XCHGADD_ALGORITHM
35         def_bool y
36
37 config GENERIC_HWEIGHT
38         def_bool y
39
40 config ARCH_HAS_ILOG2_U32
41         def_bool n
42
43 config ARCH_HAS_ILOG2_U64
44         def_bool n
45
46 config NO_IOPORT_MAP
47         def_bool n
48
49 config HZ
50         int
51         default 100
52
53 source "init/Kconfig"
54 source "kernel/Kconfig.freezer"
55
56 config LOCKDEP_SUPPORT
57         def_bool y
58
59 config STACKTRACE_SUPPORT
60         def_bool y
61
62 config TRACE_IRQFLAGS_SUPPORT
63         def_bool y
64
65 config MMU
66         bool
67         default n if !XTENSA_VARIANT_CUSTOM
68         default XTENSA_VARIANT_MMU if XTENSA_VARIANT_CUSTOM
69
70 config VARIANT_IRQ_SWITCH
71         def_bool n
72
73 config HAVE_XTENSA_GPIO32
74         def_bool n
75
76 config MAY_HAVE_SMP
77         def_bool n
78
79 menu "Processor type and features"
80
81 choice
82         prompt "Xtensa Processor Configuration"
83         default XTENSA_VARIANT_FSF
84
85 config XTENSA_VARIANT_FSF
86         bool "fsf - default (not generic) configuration"
87         select MMU
88
89 config XTENSA_VARIANT_DC232B
90         bool "dc232b - Diamond 232L Standard Core Rev.B (LE)"
91         select MMU
92         select HAVE_XTENSA_GPIO32
93         help
94           This variant refers to Tensilica's Diamond 232L Standard core Rev.B (LE).
95
96 config XTENSA_VARIANT_DC233C
97         bool "dc233c - Diamond 233L Standard Core Rev.C (LE)"
98         select MMU
99         select HAVE_XTENSA_GPIO32
100         help
101           This variant refers to Tensilica's Diamond 233L Standard core Rev.C (LE).
102
103 config XTENSA_VARIANT_CUSTOM
104         bool "Custom Xtensa processor configuration"
105         select MAY_HAVE_SMP
106         select HAVE_XTENSA_GPIO32
107         help
108           Select this variant to use a custom Xtensa processor configuration.
109           You will be prompted for a processor variant CORENAME.
110 endchoice
111
112 config XTENSA_VARIANT_CUSTOM_NAME
113         string "Xtensa Processor Custom Core Variant Name"
114         depends on XTENSA_VARIANT_CUSTOM
115         help
116           Provide the name of a custom Xtensa processor variant.
117           This CORENAME selects arch/xtensa/variant/CORENAME.
118           Dont forget you have to select MMU if you have one.
119
120 config XTENSA_VARIANT_NAME
121         string
122         default "dc232b"                        if XTENSA_VARIANT_DC232B
123         default "dc233c"                        if XTENSA_VARIANT_DC233C
124         default "fsf"                           if XTENSA_VARIANT_FSF
125         default XTENSA_VARIANT_CUSTOM_NAME      if XTENSA_VARIANT_CUSTOM
126
127 config XTENSA_VARIANT_MMU
128         bool "Core variant has a Full MMU (TLB, Pages, Protection, etc)"
129         depends on XTENSA_VARIANT_CUSTOM
130         default y
131         help
132           Build a Conventional Kernel with full MMU support,
133           ie: it supports a TLB with auto-loading, page protection.
134
135 config XTENSA_UNALIGNED_USER
136         bool "Unaligned memory access in use space"
137         help
138           The Xtensa architecture currently does not handle unaligned
139           memory accesses in hardware but through an exception handler.
140           Per default, unaligned memory accesses are disabled in user space.
141
142           Say Y here to enable unaligned memory access in user space.
143
144 source "kernel/Kconfig.preempt"
145
146 config HAVE_SMP
147         bool "System Supports SMP (MX)"
148         depends on MAY_HAVE_SMP
149         select XTENSA_MX
150         help
151           This option is use to indicate that the system-on-a-chip (SOC)
152           supports Multiprocessing. Multiprocessor support implemented above
153           the CPU core definition and currently needs to be selected manually.
154
155           Multiprocessor support in implemented with external cache and
156           interrupt controllers.
157
158           The MX interrupt distributer adds Interprocessor Interrupts
159           and causes the IRQ numbers to be increased by 4 for devices
160           like the open cores ethernet driver and the serial interface.
161
162           You still have to select "Enable SMP" to enable SMP on this SOC.
163
164 config SMP
165         bool "Enable Symmetric multi-processing support"
166         depends on HAVE_SMP
167         select GENERIC_SMP_IDLE_THREAD
168         help
169           Enabled SMP Software; allows more than one CPU/CORE
170           to be activated during startup.
171
172 config NR_CPUS
173         depends on SMP
174         int "Maximum number of CPUs (2-32)"
175         range 2 32
176         default "4"
177
178 config HOTPLUG_CPU
179         bool "Enable CPU hotplug support"
180         depends on SMP
181         help
182           Say Y here to allow turning CPUs off and on. CPUs can be
183           controlled through /sys/devices/system/cpu.
184
185           Say N if you want to disable CPU hotplug.
186
187 config INITIALIZE_XTENSA_MMU_INSIDE_VMLINUX
188         bool "Initialize Xtensa MMU inside the Linux kernel code"
189         default y
190         help
191           Earlier version initialized the MMU in the exception vector
192           before jumping to _startup in head.S and had an advantage that
193           it was possible to place a software breakpoint at 'reset' and
194           then enter your normal kernel breakpoints once the MMU was mapped
195           to the kernel mappings (0XC0000000).
196
197           This unfortunately doesn't work for U-Boot and likley also wont
198           work for using KEXEC to have a hot kernel ready for doing a
199           KDUMP.
200
201           So now the MMU is initialized in head.S but it's necessary to
202           use hardware breakpoints (gdb 'hbreak' cmd) to break at _startup.
203           xt-gdb can't place a Software Breakpoint in the  0XD region prior
204           to mapping the MMU and after mapping even if the area of low memory
205           was mapped gdb wouldn't remove the breakpoint on hitting it as the
206           PC wouldn't match. Since Hardware Breakpoints are recommended for
207           Linux configurations it seems reasonable to just assume they exist
208           and leave this older mechanism for unfortunate souls that choose
209           not to follow Tensilica's recommendation.
210
211           Selecting this will cause U-Boot to set the KERNEL Load and Entry
212           address at 0x00003000 instead of the mapped std of 0xD0003000.
213
214           If in doubt, say Y.
215
216 config HIGHMEM
217         bool "High Memory Support"
218         depends on MMU
219         help
220           Linux can use the full amount of RAM in the system by
221           default. However, the default MMUv2 setup only maps the
222           lowermost 128 MB of memory linearly to the areas starting
223           at 0xd0000000 (cached) and 0xd8000000 (uncached).
224           When there are more than 128 MB memory in the system not
225           all of it can be "permanently mapped" by the kernel.
226           The physical memory that's not permanently mapped is called
227           "high memory".
228
229           If you are compiling a kernel which will never run on a
230           machine with more than 128 MB total physical RAM, answer
231           N here.
232
233           If unsure, say Y.
234
235 config FAST_SYSCALL_XTENSA
236         bool "Enable fast atomic syscalls"
237         default n
238         help
239           fast_syscall_xtensa is a syscall that can make atomic operations
240           on UP kernel when processor has no s32c1i support.
241
242           This syscall is deprecated. It may have issues when called with
243           invalid arguments. It is provided only for backwards compatibility.
244           Only enable it if your userspace software requires it.
245
246           If unsure, say N.
247
248 config FAST_SYSCALL_SPILL_REGISTERS
249         bool "Enable spill registers syscall"
250         default n
251         help
252           fast_syscall_spill_registers is a syscall that spills all active
253           register windows of a calling userspace task onto its stack.
254
255           This syscall is deprecated. It may have issues when called with
256           invalid arguments. It is provided only for backwards compatibility.
257           Only enable it if your userspace software requires it.
258
259           If unsure, say N.
260
261 endmenu
262
263 config XTENSA_CALIBRATE_CCOUNT
264         def_bool n
265         help
266           On some platforms (XT2000, for example), the CPU clock rate can
267           vary.  The frequency can be determined, however, by measuring
268           against a well known, fixed frequency, such as an UART oscillator.
269
270 config SERIAL_CONSOLE
271         def_bool n
272
273 menu "Bus options"
274
275 config PCI
276         bool "PCI support"
277         default y
278         help
279           Find out whether you have a PCI motherboard. PCI is the name of a
280           bus system, i.e. the way the CPU talks to the other stuff inside
281           your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or
282           VESA. If you have PCI, say Y, otherwise N.
283
284 source "drivers/pci/Kconfig"
285
286 endmenu
287
288 menu "Platform options"
289
290 choice
291         prompt "Xtensa System Type"
292         default XTENSA_PLATFORM_ISS
293
294 config XTENSA_PLATFORM_ISS
295         bool "ISS"
296         select XTENSA_CALIBRATE_CCOUNT
297         select SERIAL_CONSOLE
298         help
299           ISS is an acronym for Tensilica's Instruction Set Simulator.
300
301 config XTENSA_PLATFORM_XT2000
302         bool "XT2000"
303         select HAVE_IDE
304         help
305           XT2000 is the name of Tensilica's feature-rich emulation platform.
306           This hardware is capable of running a full Linux distribution.
307
308 config XTENSA_PLATFORM_XTFPGA
309         bool "XTFPGA"
310         select ETHOC if ETHERNET
311         select PLATFORM_WANT_DEFAULT_MEM
312         select SERIAL_CONSOLE
313         select XTENSA_CALIBRATE_CCOUNT
314         help
315           XTFPGA is the name of Tensilica board family (LX60, LX110, LX200, ML605).
316           This hardware is capable of running a full Linux distribution.
317
318 endchoice
319
320
321 config XTENSA_CPU_CLOCK
322         int "CPU clock rate [MHz]"
323         depends on !XTENSA_CALIBRATE_CCOUNT
324         default 16
325
326 config GENERIC_CALIBRATE_DELAY
327         bool "Auto calibration of the BogoMIPS value"
328         help
329           The BogoMIPS value can easily be derived from the CPU frequency.
330
331 config CMDLINE_BOOL
332         bool "Default bootloader kernel arguments"
333
334 config CMDLINE
335         string "Initial kernel command string"
336         depends on CMDLINE_BOOL
337         default "console=ttyS0,38400 root=/dev/ram"
338         help
339           On some architectures (EBSA110 and CATS), there is currently no way
340           for the boot loader to pass arguments to the kernel. For these
341           architectures, you should supply some command-line options at build
342           time by entering them here. As a minimum, you should specify the
343           memory size and the root device (e.g., mem=64M root=/dev/nfs).
344
345 config USE_OF
346         bool "Flattened Device Tree support"
347         select OF
348         select OF_EARLY_FLATTREE
349         help
350           Include support for flattened device tree machine descriptions.
351
352 config BUILTIN_DTB
353         string "DTB to build into the kernel image"
354         depends on OF
355
356 config BLK_DEV_SIMDISK
357         tristate "Host file-based simulated block device support"
358         default n
359         depends on XTENSA_PLATFORM_ISS && BLOCK
360         help
361           Create block devices that map to files in the host file system.
362           Device binding to host file may be changed at runtime via proc
363           interface provided the device is not in use.
364
365 config BLK_DEV_SIMDISK_COUNT
366         int "Number of host file-based simulated block devices"
367         range 1 10
368         depends on BLK_DEV_SIMDISK
369         default 2
370         help
371           This is the default minimal number of created block devices.
372           Kernel/module parameter 'simdisk_count' may be used to change this
373           value at runtime. More file names (but no more than 10) may be
374           specified as parameters, simdisk_count grows accordingly.
375
376 config SIMDISK0_FILENAME
377         string "Host filename for the first simulated device"
378         depends on BLK_DEV_SIMDISK = y
379         default ""
380         help
381           Attach a first simdisk to a host file. Conventionally, this file
382           contains a root file system.
383
384 config SIMDISK1_FILENAME
385         string "Host filename for the second simulated device"
386         depends on BLK_DEV_SIMDISK = y && BLK_DEV_SIMDISK_COUNT != 1
387         default ""
388         help
389           Another simulated disk in a host file for a buildroot-independent
390           storage.
391
392 source "mm/Kconfig"
393
394 source "drivers/pcmcia/Kconfig"
395
396 source "drivers/pci/hotplug/Kconfig"
397
398 config PLATFORM_WANT_DEFAULT_MEM
399         def_bool n
400
401 config DEFAULT_MEM_START
402         hex "Physical address of the default memory area start"
403         depends on PLATFORM_WANT_DEFAULT_MEM
404         default 0x00000000 if MMU
405         default 0x40000000 if !MMU
406         help
407           This is a fallback start address of the default memory area, it is
408           used when no physical memory size is passed through DTB or through
409           boot parameter from bootloader.
410
411           In noMMU configuration the following parameters are derived from it:
412           - kernel load address;
413           - kernel entry point address;
414           - relocatable vectors base address;
415           - uBoot load address;
416           - TASK_SIZE.
417
418           If unsure, leave the default value here.
419
420 config DEFAULT_MEM_SIZE
421         hex "Maximal size of the default memory area"
422         depends on PLATFORM_WANT_DEFAULT_MEM
423         default 0x04000000
424         help
425           This is a fallback size of the default memory area, it is used when
426           no physical memory size is passed through DTB or through boot
427           parameter from bootloader.
428
429           It's also used for TASK_SIZE calculation in noMMU configuration.
430
431           If unsure, leave the default value here.
432
433 config XTFPGA_LCD
434         bool "Enable XTFPGA LCD driver"
435         depends on XTENSA_PLATFORM_XTFPGA
436         default n
437         help
438           There's a 2x16 LCD on most of XTFPGA boards, kernel may output
439           progress messages there during bootup/shutdown. It may be useful
440           during board bringup.
441
442           If unsure, say N.
443
444 config XTFPGA_LCD_BASE_ADDR
445         hex "XTFPGA LCD base address"
446         depends on XTFPGA_LCD
447         default "0x0d0c0000"
448         help
449           Base address of the LCD controller inside KIO region.
450           Different boards from XTFPGA family have LCD controller at different
451           addresses. Please consult prototyping user guide for your board for
452           the correct address. Wrong address here may lead to hardware lockup.
453
454 config XTFPGA_LCD_8BIT_ACCESS
455         bool "Use 8-bit access to XTFPGA LCD"
456         depends on XTFPGA_LCD
457         default n
458         help
459           LCD may be connected with 4- or 8-bit interface, 8-bit access may
460           only be used with 8-bit interface. Please consult prototyping user
461           guide for your board for the correct interface width.
462
463 endmenu
464
465 menu "Executable file formats"
466
467 source "fs/Kconfig.binfmt"
468
469 endmenu
470
471 menu "Power management options"
472
473 source "kernel/power/Kconfig"
474
475 endmenu
476
477 source "net/Kconfig"
478
479 source "drivers/Kconfig"
480
481 source "fs/Kconfig"
482
483 source "arch/xtensa/Kconfig.debug"
484
485 source "security/Kconfig"
486
487 source "crypto/Kconfig"
488
489 source "lib/Kconfig"
490
491