blob: 6ce10f92f48113fedb34966ef0b05d66d5e49957 [file] [log] [blame]
Christoph Lameter66701b12007-02-10 01:43:09 -08001config ZONE_DMA
Johannes Weiner35f9cd02009-03-04 16:21:28 +01002 def_bool y
Christoph Lameter66701b12007-02-10 01:43:09 -08003
Chris Zankel8e1a6dd2005-06-23 22:01:10 -07004config XTENSA
Johannes Weiner35f9cd02009-03-04 16:21:28 +01005 def_bool y
Max Filippov8f371c72013-04-15 09:21:35 +04006 select ARCH_WANT_FRAME_POINTERS
Max Filippove9691612013-01-06 16:17:21 +04007 select ARCH_WANT_IPC_PARSE_VERSION
Max Filippov6ed65f32012-09-17 05:44:42 +04008 select ARCH_WANT_OPTIONAL_GPIOLIB
Max Filippov25df8192014-02-18 15:29:11 +04009 select BUILDTIME_EXTABLE_SORT
Al Viro3e41f9b2012-10-26 23:41:40 -040010 select CLONE_BACKWARDS
Max Filippovbda89322014-01-29 06:20:46 +040011 select COMMON_CLK
Max Filippov920f8a392014-06-16 08:20:17 +040012 select GENERIC_ATOMIC64
13 select GENERIC_CLOCKEVENTS
14 select GENERIC_IRQ_SHOW
15 select GENERIC_PCI_IOMAP
16 select GENERIC_SCHED_CLOCK
Max Filippovc75959a2015-05-25 06:55:05 +030017 select HAVE_DMA_API_DEBUG
18 select HAVE_DMA_ATTRS
Max Filippov920f8a392014-06-16 08:20:17 +040019 select HAVE_FUNCTION_TRACER
Max Filippov920f8a392014-06-16 08:20:17 +040020 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
Chris Zankel8e1a6dd2005-06-23 22:01:10 -070026 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
Masanari Iida0ada4492013-01-04 17:29:18 +090032 a home page at <http://www.linux-xtensa.org/>.
Chris Zankel8e1a6dd2005-06-23 22:01:10 -070033
Chris Zankel8e1a6dd2005-06-23 22:01:10 -070034config RWSEM_XCHGADD_ALGORITHM
Johannes Weiner35f9cd02009-03-04 16:21:28 +010035 def_bool y
Chris Zankel8e1a6dd2005-06-23 22:01:10 -070036
Akinobu Mitad4337aa2006-03-26 01:39:43 -080037config GENERIC_HWEIGHT
Johannes Weiner35f9cd02009-03-04 16:21:28 +010038 def_bool y
Akinobu Mitad4337aa2006-03-26 01:39:43 -080039
David Howellsf0d1b0b2006-12-08 02:37:49 -080040config ARCH_HAS_ILOG2_U32
Johannes Weiner35f9cd02009-03-04 16:21:28 +010041 def_bool n
David Howellsf0d1b0b2006-12-08 02:37:49 -080042
43config ARCH_HAS_ILOG2_U64
Johannes Weiner35f9cd02009-03-04 16:21:28 +010044 def_bool n
David Howellsf0d1b0b2006-12-08 02:37:49 -080045
Uwe Kleine-Königce816fa2014-04-07 15:39:19 -070046config NO_IOPORT_MAP
Max Filippovd046f772012-09-17 05:44:41 +040047 def_bool n
Al Viro5ea81762007-02-11 15:41:31 +000048
H. Peter Anvinbdc80782008-02-08 04:21:26 -080049config HZ
50 int
51 default 100
52
Chris Zankel8e1a6dd2005-06-23 22:01:10 -070053source "init/Kconfig"
Matt Helsleydc52ddc2008-10-18 20:27:21 -070054source "kernel/Kconfig.freezer"
Chris Zankel8e1a6dd2005-06-23 22:01:10 -070055
Max Filippov8f371c72013-04-15 09:21:35 +040056config LOCKDEP_SUPPORT
57 def_bool y
58
Max Filippov3e4196a2013-04-15 09:20:48 +040059config STACKTRACE_SUPPORT
60 def_bool y
61
Max Filippovc92931b2013-03-31 06:32:42 +040062config TRACE_IRQFLAGS_SUPPORT
63 def_bool y
64
Johannes Weiner35f9cd02009-03-04 16:21:28 +010065config MMU
Max Filippov420ae952014-06-16 07:25:06 +040066 bool
67 default n if !XTENSA_VARIANT_CUSTOM
68 default XTENSA_VARIANT_MMU if XTENSA_VARIANT_CUSTOM
Johannes Weiner35f9cd02009-03-04 16:21:28 +010069
Johannes Weiner4c0d21412009-03-04 16:21:31 +010070config VARIANT_IRQ_SWITCH
71 def_bool n
72
Baruch Siacha1a2bde2013-12-18 09:10:29 +020073config HAVE_XTENSA_GPIO32
74 def_bool n
75
Max Filippovf6151362013-10-17 02:42:26 +040076config MAY_HAVE_SMP
77 def_bool n
78
Chris Zankel8e1a6dd2005-06-23 22:01:10 -070079menu "Processor type and features"
80
81choice
82 prompt "Xtensa Processor Configuration"
Chris Zankel173d6682006-12-10 02:18:48 -080083 default XTENSA_VARIANT_FSF
Chris Zankel8e1a6dd2005-06-23 22:01:10 -070084
Chris Zankel173d6682006-12-10 02:18:48 -080085config XTENSA_VARIANT_FSF
Chris Zankel00254272008-10-21 09:11:43 -070086 bool "fsf - default (not generic) configuration"
Johannes Weiner35f9cd02009-03-04 16:21:28 +010087 select MMU
Chris Zankel00254272008-10-21 09:11:43 -070088
89config XTENSA_VARIANT_DC232B
90 bool "dc232b - Diamond 232L Standard Core Rev.B (LE)"
Johannes Weiner35f9cd02009-03-04 16:21:28 +010091 select MMU
Baruch Siacha1a2bde2013-12-18 09:10:29 +020092 select HAVE_XTENSA_GPIO32
Chris Zankel00254272008-10-21 09:11:43 -070093 help
Johannes Weiner35f9cd02009-03-04 16:21:28 +010094 This variant refers to Tensilica's Diamond 232L Standard core Rev.B (LE).
Johannes Weiner000af2c2009-03-04 16:21:32 +010095
Pete Delaneyd0b73b42013-01-05 04:57:16 +040096config XTENSA_VARIANT_DC233C
97 bool "dc233c - Diamond 233L Standard Core Rev.C (LE)"
98 select MMU
Baruch Siacha1a2bde2013-12-18 09:10:29 +020099 select HAVE_XTENSA_GPIO32
Pete Delaneyd0b73b42013-01-05 04:57:16 +0400100 help
101 This variant refers to Tensilica's Diamond 233L Standard core Rev.C (LE).
102
Max Filippov420ae952014-06-16 07:25:06 +0400103config 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.
Chris Zankel8e1a6dd2005-06-23 22:01:10 -0700110endchoice
111
Max Filippov420ae952014-06-16 07:25:06 +0400112config 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
120config 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
Max Filippov420ae952014-06-16 07:25:06 +0400125 default XTENSA_VARIANT_CUSTOM_NAME if XTENSA_VARIANT_CUSTOM
126
127config 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
Chris Zankel8e1a6dd2005-06-23 22:01:10 -0700135config XTENSA_UNALIGNED_USER
136 bool "Unaligned memory access in use space"
Johannes Weiner35f9cd02009-03-04 16:21:28 +0100137 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.
Chris Zankel8e1a6dd2005-06-23 22:01:10 -0700141
Johannes Weiner35f9cd02009-03-04 16:21:28 +0100142 Say Y here to enable unaligned memory access in user space.
Chris Zankel8e1a6dd2005-06-23 22:01:10 -0700143
Frederic Weisbeckerbd96efe2011-07-05 17:45:34 +0200144source "kernel/Kconfig.preempt"
Chris Zankel8e1a6dd2005-06-23 22:01:10 -0700145
Max Filippovf6151362013-10-17 02:42:26 +0400146config 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
Masanari Iida769a12a2015-04-27 22:52:07 +0900156 interrupt controllers.
Max Filippovf6151362013-10-17 02:42:26 +0400157
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
164config SMP
165 bool "Enable Symmetric multi-processing support"
166 depends on HAVE_SMP
Max Filippovf6151362013-10-17 02:42:26 +0400167 select GENERIC_SMP_IDLE_THREAD
168 help
169 Enabled SMP Software; allows more than one CPU/CORE
170 to be activated during startup.
171
172config NR_CPUS
173 depends on SMP
174 int "Maximum number of CPUs (2-32)"
175 range 2 32
176 default "4"
177
Max Filippov49b424f2013-10-17 02:42:28 +0400178config 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
Max Filippove85e3352012-12-03 15:01:43 +0400187config 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
Max Filippov655591002014-02-04 02:17:09 +0400216config HIGHMEM
217 bool "High Memory Support"
Max Filippov8a9de052014-06-16 08:15:43 +0400218 depends on MMU
Max Filippov655591002014-02-04 02:17:09 +0400219 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
Max Filippov91842892014-08-07 03:32:30 +0400235config 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
248config 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
Chris Zankel8e1a6dd2005-06-23 22:01:10 -0700261endmenu
262
Johannes Weiner35f9cd02009-03-04 16:21:28 +0100263config 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
270config SERIAL_CONSOLE
271 def_bool n
272
Johannes Weiner35f9cd02009-03-04 16:21:28 +0100273menu "Bus options"
274
275config 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
284source "drivers/pci/Kconfig"
285
Chris Zankel35e71f92009-04-16 00:25:39 -0700286endmenu
287
Chris Zankel8e1a6dd2005-06-23 22:01:10 -0700288menu "Platform options"
289
290choice
291 prompt "Xtensa System Type"
292 default XTENSA_PLATFORM_ISS
293
294config XTENSA_PLATFORM_ISS
295 bool "ISS"
Johannes Weiner35f9cd02009-03-04 16:21:28 +0100296 select XTENSA_CALIBRATE_CCOUNT
297 select SERIAL_CONSOLE
Chris Zankel8e1a6dd2005-06-23 22:01:10 -0700298 help
299 ISS is an acronym for Tensilica's Instruction Set Simulator.
300
301config XTENSA_PLATFORM_XT2000
302 bool "XT2000"
Max Filippov49645272014-06-16 08:25:43 +0400303 select HAVE_IDE
Chris Zankel8e1a6dd2005-06-23 22:01:10 -0700304 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
Max Filippov0d456ba2012-11-05 07:37:14 +0400308config XTENSA_PLATFORM_XTFPGA
309 bool "XTFPGA"
Max Filippov61e47e92014-10-04 04:44:04 +0400310 select ETHOC if ETHERNET
Max Filippov3932b9c2014-10-04 04:45:39 +0400311 select PLATFORM_WANT_DEFAULT_MEM
Max Filippov0d456ba2012-11-05 07:37:14 +0400312 select SERIAL_CONSOLE
Max Filippov0d456ba2012-11-05 07:37:14 +0400313 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
Chris Zankel8e1a6dd2005-06-23 22:01:10 -0700318endchoice
319
320
Chris Zankel8e1a6dd2005-06-23 22:01:10 -0700321config XTENSA_CPU_CLOCK
322 int "CPU clock rate [MHz]"
323 depends on !XTENSA_CALIBRATE_CCOUNT
Johannes Weiner35f9cd02009-03-04 16:21:28 +0100324 default 16
Chris Zankel8e1a6dd2005-06-23 22:01:10 -0700325
326config GENERIC_CALIBRATE_DELAY
327 bool "Auto calibration of the BogoMIPS value"
Johannes Weiner35f9cd02009-03-04 16:21:28 +0100328 help
Chris Zankel82300bf2005-06-30 02:58:58 -0700329 The BogoMIPS value can easily be derived from the CPU frequency.
Chris Zankel8e1a6dd2005-06-23 22:01:10 -0700330
331config CMDLINE_BOOL
332 bool "Default bootloader kernel arguments"
333
334config 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
Max Filippovda844a82012-11-04 00:30:13 +0400345config 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
352config BUILTIN_DTB
353 string "DTB to build into the kernel image"
354 depends on OF
355
Victor Prupisb6c7e872008-05-19 14:50:38 -0700356config BLK_DEV_SIMDISK
357 tristate "Host file-based simulated block device support"
358 default n
Max Filippov7a0684c2014-08-27 14:54:48 +0400359 depends on XTENSA_PLATFORM_ISS && BLOCK
Victor Prupisb6c7e872008-05-19 14:50:38 -0700360 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
365config 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
376config 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
384config 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
Chris Zankel82300bf2005-06-30 02:58:58 -0700392source "mm/Kconfig"
393
Chris Zankel8e1a6dd2005-06-23 22:01:10 -0700394source "drivers/pcmcia/Kconfig"
395
396source "drivers/pci/hotplug/Kconfig"
397
Max Filippov3932b9c2014-10-04 04:45:39 +0400398config PLATFORM_WANT_DEFAULT_MEM
399 def_bool n
400
401config 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
420config 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
Max Filippov49490092015-02-27 06:28:00 +0300433config 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
444config 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
454config 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
Chris Zankel8e1a6dd2005-06-23 22:01:10 -0700463endmenu
464
Matt LaPlantecab00892006-10-03 22:36:44 +0200465menu "Executable file formats"
Chris Zankel8e1a6dd2005-06-23 22:01:10 -0700466
Chris Zankel8e1a6dd2005-06-23 22:01:10 -0700467source "fs/Kconfig.binfmt"
468
469endmenu
470
Max Filippove00d8b22014-10-29 01:42:01 +0300471menu "Power management options"
472
473source "kernel/power/Kconfig"
474
475endmenu
476
Sam Ravnborgd5950b42005-07-11 21:03:49 -0700477source "net/Kconfig"
478
Chris Zankel8e1a6dd2005-06-23 22:01:10 -0700479source "drivers/Kconfig"
480
481source "fs/Kconfig"
482
Chris Zankel8e1a6dd2005-06-23 22:01:10 -0700483source "arch/xtensa/Kconfig.debug"
484
485source "security/Kconfig"
486
487source "crypto/Kconfig"
488
489source "lib/Kconfig"
490
491