lib/scatterlist: make ARCH_HAS_SG_CHAIN an actual Kconfig
[deliverable/linux.git] / arch / arm / Kconfig
1 config ARM
2 bool
3 default y
4 select ARCH_BINFMT_ELF_RANDOMIZE_PIE
5 select ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE
6 select ARCH_HAS_TICK_BROADCAST if GENERIC_CLOCKEVENTS_BROADCAST
7 select ARCH_HAVE_CUSTOM_GPIO_H
8 select ARCH_MIGHT_HAVE_PC_PARPORT
9 select ARCH_SUPPORTS_ATOMIC_RMW
10 select ARCH_USE_BUILTIN_BSWAP
11 select ARCH_USE_CMPXCHG_LOCKREF
12 select ARCH_WANT_IPC_PARSE_VERSION
13 select BUILDTIME_EXTABLE_SORT if MMU
14 select CLONE_BACKWARDS
15 select CPU_PM if (SUSPEND || CPU_IDLE)
16 select DCACHE_WORD_ACCESS if HAVE_EFFICIENT_UNALIGNED_ACCESS
17 select GENERIC_ATOMIC64 if (CPU_V7M || CPU_V6 || !CPU_32v6K || !AEABI)
18 select GENERIC_CLOCKEVENTS_BROADCAST if SMP
19 select GENERIC_IDLE_POLL_SETUP
20 select GENERIC_IRQ_PROBE
21 select GENERIC_IRQ_SHOW
22 select GENERIC_PCI_IOMAP
23 select GENERIC_SCHED_CLOCK
24 select GENERIC_SMP_IDLE_THREAD
25 select GENERIC_STRNCPY_FROM_USER
26 select GENERIC_STRNLEN_USER
27 select HARDIRQS_SW_RESEND
28 select HAVE_ARCH_AUDITSYSCALL if (AEABI && !OABI_COMPAT)
29 select HAVE_ARCH_JUMP_LABEL if !XIP_KERNEL
30 select HAVE_ARCH_KGDB
31 select HAVE_ARCH_SECCOMP_FILTER if (AEABI && !OABI_COMPAT)
32 select HAVE_ARCH_TRACEHOOK
33 select HAVE_BPF_JIT
34 select HAVE_CC_STACKPROTECTOR
35 select HAVE_CONTEXT_TRACKING
36 select HAVE_C_RECORDMCOUNT
37 select HAVE_DEBUG_KMEMLEAK
38 select HAVE_DMA_API_DEBUG
39 select HAVE_DMA_ATTRS
40 select HAVE_DMA_CONTIGUOUS if MMU
41 select HAVE_DYNAMIC_FTRACE if (!XIP_KERNEL)
42 select HAVE_EFFICIENT_UNALIGNED_ACCESS if (CPU_V6 || CPU_V6K || CPU_V7) && MMU
43 select HAVE_FTRACE_MCOUNT_RECORD if (!XIP_KERNEL)
44 select HAVE_FUNCTION_GRAPH_TRACER if (!THUMB2_KERNEL)
45 select HAVE_FUNCTION_TRACER if (!XIP_KERNEL)
46 select HAVE_GENERIC_DMA_COHERENT
47 select HAVE_HW_BREAKPOINT if (PERF_EVENTS && (CPU_V6 || CPU_V6K || CPU_V7))
48 select HAVE_IDE if PCI || ISA || PCMCIA
49 select HAVE_IRQ_TIME_ACCOUNTING
50 select HAVE_KERNEL_GZIP
51 select HAVE_KERNEL_LZ4
52 select HAVE_KERNEL_LZMA
53 select HAVE_KERNEL_LZO
54 select HAVE_KERNEL_XZ
55 select HAVE_KPROBES if !XIP_KERNEL
56 select HAVE_KRETPROBES if (HAVE_KPROBES)
57 select HAVE_MEMBLOCK
58 select HAVE_MOD_ARCH_SPECIFIC if ARM_UNWIND
59 select HAVE_OPROFILE if (HAVE_PERF_EVENTS)
60 select HAVE_PERF_EVENTS
61 select HAVE_PERF_REGS
62 select HAVE_PERF_USER_STACK_DUMP
63 select HAVE_REGS_AND_STACK_ACCESS_API
64 select HAVE_SYSCALL_TRACEPOINTS
65 select HAVE_UID16
66 select HAVE_VIRT_CPU_ACCOUNTING_GEN
67 select IRQ_FORCED_THREADING
68 select MODULES_USE_ELF_REL
69 select NO_BOOTMEM
70 select OLD_SIGACTION
71 select OLD_SIGSUSPEND3
72 select PERF_USE_VMALLOC
73 select RTC_LIB
74 select SYS_SUPPORTS_APM_EMULATION
75 # Above selects are sorted alphabetically; please add new ones
76 # according to that. Thanks.
77 help
78 The ARM series is a line of low-power-consumption RISC chip designs
79 licensed by ARM Ltd and targeted at embedded applications and
80 handhelds such as the Compaq IPAQ. ARM-based PCs are no longer
81 manufactured, but legacy ARM-based PC hardware remains popular in
82 Europe. There is an ARM Linux project with a web page at
83 <http://www.arm.linux.org.uk/>.
84
85 config ARM_HAS_SG_CHAIN
86 select ARCH_HAS_SG_CHAIN
87 bool
88
89 config NEED_SG_DMA_LENGTH
90 bool
91
92 config ARM_DMA_USE_IOMMU
93 bool
94 select ARM_HAS_SG_CHAIN
95 select NEED_SG_DMA_LENGTH
96
97 if ARM_DMA_USE_IOMMU
98
99 config ARM_DMA_IOMMU_ALIGNMENT
100 int "Maximum PAGE_SIZE order of alignment for DMA IOMMU buffers"
101 range 4 9
102 default 8
103 help
104 DMA mapping framework by default aligns all buffers to the smallest
105 PAGE_SIZE order which is greater than or equal to the requested buffer
106 size. This works well for buffers up to a few hundreds kilobytes, but
107 for larger buffers it just a waste of address space. Drivers which has
108 relatively small addressing window (like 64Mib) might run out of
109 virtual space with just a few allocations.
110
111 With this parameter you can specify the maximum PAGE_SIZE order for
112 DMA IOMMU buffers. Larger buffers will be aligned only to this
113 specified order. The order is expressed as a power of two multiplied
114 by the PAGE_SIZE.
115
116 endif
117
118 config MIGHT_HAVE_PCI
119 bool
120
121 config SYS_SUPPORTS_APM_EMULATION
122 bool
123
124 config HAVE_TCM
125 bool
126 select GENERIC_ALLOCATOR
127
128 config HAVE_PROC_CPU
129 bool
130
131 config NO_IOPORT_MAP
132 bool
133
134 config EISA
135 bool
136 ---help---
137 The Extended Industry Standard Architecture (EISA) bus was
138 developed as an open alternative to the IBM MicroChannel bus.
139
140 The EISA bus provided some of the features of the IBM MicroChannel
141 bus while maintaining backward compatibility with cards made for
142 the older ISA bus. The EISA bus saw limited use between 1988 and
143 1995 when it was made obsolete by the PCI bus.
144
145 Say Y here if you are building a kernel for an EISA-based machine.
146
147 Otherwise, say N.
148
149 config SBUS
150 bool
151
152 config STACKTRACE_SUPPORT
153 bool
154 default y
155
156 config HAVE_LATENCYTOP_SUPPORT
157 bool
158 depends on !SMP
159 default y
160
161 config LOCKDEP_SUPPORT
162 bool
163 default y
164
165 config TRACE_IRQFLAGS_SUPPORT
166 bool
167 default y
168
169 config RWSEM_XCHGADD_ALGORITHM
170 bool
171 default y
172
173 config ARCH_HAS_ILOG2_U32
174 bool
175
176 config ARCH_HAS_ILOG2_U64
177 bool
178
179 config ARCH_HAS_BANDGAP
180 bool
181
182 config GENERIC_HWEIGHT
183 bool
184 default y
185
186 config GENERIC_CALIBRATE_DELAY
187 bool
188 default y
189
190 config ARCH_MAY_HAVE_PC_FDC
191 bool
192
193 config ZONE_DMA
194 bool
195
196 config NEED_DMA_MAP_STATE
197 def_bool y
198
199 config ARCH_SUPPORTS_UPROBES
200 def_bool y
201
202 config ARCH_HAS_DMA_SET_COHERENT_MASK
203 bool
204
205 config GENERIC_ISA_DMA
206 bool
207
208 config FIQ
209 bool
210
211 config NEED_RET_TO_USER
212 bool
213
214 config ARCH_MTD_XIP
215 bool
216
217 config VECTORS_BASE
218 hex
219 default 0xffff0000 if MMU || CPU_HIGH_VECTOR
220 default DRAM_BASE if REMAP_VECTORS_TO_RAM
221 default 0x00000000
222 help
223 The base address of exception vectors. This must be two pages
224 in size.
225
226 config ARM_PATCH_PHYS_VIRT
227 bool "Patch physical to virtual translations at runtime" if EMBEDDED
228 default y
229 depends on !XIP_KERNEL && MMU
230 depends on !ARCH_REALVIEW || !SPARSEMEM
231 help
232 Patch phys-to-virt and virt-to-phys translation functions at
233 boot and module load time according to the position of the
234 kernel in system memory.
235
236 This can only be used with non-XIP MMU kernels where the base
237 of physical memory is at a 16MB boundary.
238
239 Only disable this option if you know that you do not require
240 this feature (eg, building a kernel for a single machine) and
241 you need to shrink the kernel to the minimal size.
242
243 config NEED_MACH_GPIO_H
244 bool
245 help
246 Select this when mach/gpio.h is required to provide special
247 definitions for this platform. The need for mach/gpio.h should
248 be avoided when possible.
249
250 config NEED_MACH_IO_H
251 bool
252 help
253 Select this when mach/io.h is required to provide special
254 definitions for this platform. The need for mach/io.h should
255 be avoided when possible.
256
257 config NEED_MACH_MEMORY_H
258 bool
259 help
260 Select this when mach/memory.h is required to provide special
261 definitions for this platform. The need for mach/memory.h should
262 be avoided when possible.
263
264 config PHYS_OFFSET
265 hex "Physical address of main memory" if MMU
266 depends on !ARM_PATCH_PHYS_VIRT
267 default DRAM_BASE if !MMU
268 default 0x00000000 if ARCH_EBSA110 || \
269 EP93XX_SDCE3_SYNC_PHYS_OFFSET || \
270 ARCH_FOOTBRIDGE || \
271 ARCH_INTEGRATOR || \
272 ARCH_IOP13XX || \
273 ARCH_KS8695 || \
274 (ARCH_REALVIEW && !REALVIEW_HIGH_PHYS_OFFSET)
275 default 0x10000000 if ARCH_OMAP1 || ARCH_RPC
276 default 0x20000000 if ARCH_S5PV210
277 default 0x70000000 if REALVIEW_HIGH_PHYS_OFFSET
278 default 0xc0000000 if EP93XX_SDCE0_PHYS_OFFSET || ARCH_SA1100
279 default 0xd0000000 if EP93XX_SDCE1_PHYS_OFFSET
280 default 0xe0000000 if EP93XX_SDCE2_PHYS_OFFSET
281 default 0xf0000000 if EP93XX_SDCE3_ASYNC_PHYS_OFFSET
282 help
283 Please provide the physical address corresponding to the
284 location of main memory in your system.
285
286 config GENERIC_BUG
287 def_bool y
288 depends on BUG
289
290 source "init/Kconfig"
291
292 source "kernel/Kconfig.freezer"
293
294 menu "System Type"
295
296 config MMU
297 bool "MMU-based Paged Memory Management Support"
298 default y
299 help
300 Select if you want MMU-based virtualised addressing space
301 support by paged memory management. If unsure, say 'Y'.
302
303 #
304 # The "ARM system type" choice list is ordered alphabetically by option
305 # text. Please add new entries in the option alphabetic order.
306 #
307 choice
308 prompt "ARM system type"
309 default ARCH_VERSATILE if !MMU
310 default ARCH_MULTIPLATFORM if MMU
311
312 config ARCH_MULTIPLATFORM
313 bool "Allow multiple platforms to be selected"
314 depends on MMU
315 select ARCH_WANT_OPTIONAL_GPIOLIB
316 select ARM_HAS_SG_CHAIN
317 select ARM_PATCH_PHYS_VIRT
318 select AUTO_ZRELADDR
319 select CLKSRC_OF
320 select COMMON_CLK
321 select GENERIC_CLOCKEVENTS
322 select MIGHT_HAVE_PCI
323 select MULTI_IRQ_HANDLER
324 select SPARSE_IRQ
325 select USE_OF
326
327 config ARCH_INTEGRATOR
328 bool "ARM Ltd. Integrator family"
329 select ARM_AMBA
330 select ARM_PATCH_PHYS_VIRT if MMU
331 select AUTO_ZRELADDR
332 select COMMON_CLK
333 select COMMON_CLK_VERSATILE
334 select GENERIC_CLOCKEVENTS
335 select HAVE_TCM
336 select ICST
337 select MULTI_IRQ_HANDLER
338 select NEED_MACH_MEMORY_H
339 select PLAT_VERSATILE
340 select SPARSE_IRQ
341 select USE_OF
342 select VERSATILE_FPGA_IRQ
343 help
344 Support for ARM's Integrator platform.
345
346 config ARCH_REALVIEW
347 bool "ARM Ltd. RealView family"
348 select ARCH_WANT_OPTIONAL_GPIOLIB
349 select ARM_AMBA
350 select ARM_TIMER_SP804
351 select COMMON_CLK
352 select COMMON_CLK_VERSATILE
353 select GENERIC_CLOCKEVENTS
354 select GPIO_PL061 if GPIOLIB
355 select ICST
356 select NEED_MACH_MEMORY_H
357 select PLAT_VERSATILE
358 select PLAT_VERSATILE_CLCD
359 help
360 This enables support for ARM Ltd RealView boards.
361
362 config ARCH_VERSATILE
363 bool "ARM Ltd. Versatile family"
364 select ARCH_WANT_OPTIONAL_GPIOLIB
365 select ARM_AMBA
366 select ARM_TIMER_SP804
367 select ARM_VIC
368 select CLKDEV_LOOKUP
369 select GENERIC_CLOCKEVENTS
370 select HAVE_MACH_CLKDEV
371 select ICST
372 select PLAT_VERSATILE
373 select PLAT_VERSATILE_CLCD
374 select PLAT_VERSATILE_CLOCK
375 select VERSATILE_FPGA_IRQ
376 help
377 This enables support for ARM Ltd Versatile board.
378
379 config ARCH_AT91
380 bool "Atmel AT91"
381 select ARCH_REQUIRE_GPIOLIB
382 select CLKDEV_LOOKUP
383 select IRQ_DOMAIN
384 select NEED_MACH_IO_H if PCCARD
385 select PINCTRL
386 select PINCTRL_AT91 if USE_OF
387 help
388 This enables support for systems based on Atmel
389 AT91RM9200 and AT91SAM9* processors.
390
391 config ARCH_CLPS711X
392 bool "Cirrus Logic CLPS711x/EP721x/EP731x-based"
393 select ARCH_REQUIRE_GPIOLIB
394 select AUTO_ZRELADDR
395 select CLKSRC_MMIO
396 select COMMON_CLK
397 select CPU_ARM720T
398 select GENERIC_CLOCKEVENTS
399 select MFD_SYSCON
400 help
401 Support for Cirrus Logic 711x/721x/731x based boards.
402
403 config ARCH_GEMINI
404 bool "Cortina Systems Gemini"
405 select ARCH_REQUIRE_GPIOLIB
406 select CLKSRC_MMIO
407 select CPU_FA526
408 select GENERIC_CLOCKEVENTS
409 help
410 Support for the Cortina Systems Gemini family SoCs
411
412 config ARCH_EBSA110
413 bool "EBSA-110"
414 select ARCH_USES_GETTIMEOFFSET
415 select CPU_SA110
416 select ISA
417 select NEED_MACH_IO_H
418 select NEED_MACH_MEMORY_H
419 select NO_IOPORT_MAP
420 help
421 This is an evaluation board for the StrongARM processor available
422 from Digital. It has limited hardware on-board, including an
423 Ethernet interface, two PCMCIA sockets, two serial ports and a
424 parallel port.
425
426 config ARCH_EFM32
427 bool "Energy Micro efm32"
428 depends on !MMU
429 select ARCH_REQUIRE_GPIOLIB
430 select ARM_NVIC
431 select AUTO_ZRELADDR
432 select CLKSRC_OF
433 select COMMON_CLK
434 select CPU_V7M
435 select GENERIC_CLOCKEVENTS
436 select NO_DMA
437 select NO_IOPORT_MAP
438 select SPARSE_IRQ
439 select USE_OF
440 help
441 Support for Energy Micro's (now Silicon Labs) efm32 Giant Gecko
442 processors.
443
444 config ARCH_EP93XX
445 bool "EP93xx-based"
446 select ARCH_HAS_HOLES_MEMORYMODEL
447 select ARCH_REQUIRE_GPIOLIB
448 select ARCH_USES_GETTIMEOFFSET
449 select ARM_AMBA
450 select ARM_VIC
451 select CLKDEV_LOOKUP
452 select CPU_ARM920T
453 help
454 This enables support for the Cirrus EP93xx series of CPUs.
455
456 config ARCH_FOOTBRIDGE
457 bool "FootBridge"
458 select CPU_SA110
459 select FOOTBRIDGE
460 select GENERIC_CLOCKEVENTS
461 select HAVE_IDE
462 select NEED_MACH_IO_H if !MMU
463 select NEED_MACH_MEMORY_H
464 help
465 Support for systems based on the DC21285 companion chip
466 ("FootBridge"), such as the Simtec CATS and the Rebel NetWinder.
467
468 config ARCH_NETX
469 bool "Hilscher NetX based"
470 select ARM_VIC
471 select CLKSRC_MMIO
472 select CPU_ARM926T
473 select GENERIC_CLOCKEVENTS
474 help
475 This enables support for systems based on the Hilscher NetX Soc
476
477 config ARCH_IOP13XX
478 bool "IOP13xx-based"
479 depends on MMU
480 select CPU_XSC3
481 select NEED_MACH_MEMORY_H
482 select NEED_RET_TO_USER
483 select PCI
484 select PLAT_IOP
485 select VMSPLIT_1G
486 select SPARSE_IRQ
487 help
488 Support for Intel's IOP13XX (XScale) family of processors.
489
490 config ARCH_IOP32X
491 bool "IOP32x-based"
492 depends on MMU
493 select ARCH_REQUIRE_GPIOLIB
494 select CPU_XSCALE
495 select GPIO_IOP
496 select NEED_RET_TO_USER
497 select PCI
498 select PLAT_IOP
499 help
500 Support for Intel's 80219 and IOP32X (XScale) family of
501 processors.
502
503 config ARCH_IOP33X
504 bool "IOP33x-based"
505 depends on MMU
506 select ARCH_REQUIRE_GPIOLIB
507 select CPU_XSCALE
508 select GPIO_IOP
509 select NEED_RET_TO_USER
510 select PCI
511 select PLAT_IOP
512 help
513 Support for Intel's IOP33X (XScale) family of processors.
514
515 config ARCH_IXP4XX
516 bool "IXP4xx-based"
517 depends on MMU
518 select ARCH_HAS_DMA_SET_COHERENT_MASK
519 select ARCH_REQUIRE_GPIOLIB
520 select ARCH_SUPPORTS_BIG_ENDIAN
521 select CLKSRC_MMIO
522 select CPU_XSCALE
523 select DMABOUNCE if PCI
524 select GENERIC_CLOCKEVENTS
525 select MIGHT_HAVE_PCI
526 select NEED_MACH_IO_H
527 select USB_EHCI_BIG_ENDIAN_DESC
528 select USB_EHCI_BIG_ENDIAN_MMIO
529 help
530 Support for Intel's IXP4XX (XScale) family of processors.
531
532 config ARCH_DOVE
533 bool "Marvell Dove"
534 select ARCH_REQUIRE_GPIOLIB
535 select CPU_PJ4
536 select GENERIC_CLOCKEVENTS
537 select MIGHT_HAVE_PCI
538 select MVEBU_MBUS
539 select PINCTRL
540 select PINCTRL_DOVE
541 select PLAT_ORION_LEGACY
542 help
543 Support for the Marvell Dove SoC 88AP510
544
545 config ARCH_KIRKWOOD
546 bool "Marvell Kirkwood"
547 select ARCH_REQUIRE_GPIOLIB
548 select CPU_FEROCEON
549 select GENERIC_CLOCKEVENTS
550 select MVEBU_MBUS
551 select PCI
552 select PCI_QUIRKS
553 select PINCTRL
554 select PINCTRL_KIRKWOOD
555 select PLAT_ORION_LEGACY
556 help
557 Support for the following Marvell Kirkwood series SoCs:
558 88F6180, 88F6192 and 88F6281.
559
560 config ARCH_MV78XX0
561 bool "Marvell MV78xx0"
562 select ARCH_REQUIRE_GPIOLIB
563 select CPU_FEROCEON
564 select GENERIC_CLOCKEVENTS
565 select MVEBU_MBUS
566 select PCI
567 select PLAT_ORION_LEGACY
568 help
569 Support for the following Marvell MV78xx0 series SoCs:
570 MV781x0, MV782x0.
571
572 config ARCH_ORION5X
573 bool "Marvell Orion"
574 depends on MMU
575 select ARCH_REQUIRE_GPIOLIB
576 select CPU_FEROCEON
577 select GENERIC_CLOCKEVENTS
578 select MVEBU_MBUS
579 select PCI
580 select PLAT_ORION_LEGACY
581 help
582 Support for the following Marvell Orion 5x series SoCs:
583 Orion-1 (5181), Orion-VoIP (5181L), Orion-NAS (5182),
584 Orion-2 (5281), Orion-1-90 (6183).
585
586 config ARCH_MMP
587 bool "Marvell PXA168/910/MMP2"
588 depends on MMU
589 select ARCH_REQUIRE_GPIOLIB
590 select CLKDEV_LOOKUP
591 select GENERIC_ALLOCATOR
592 select GENERIC_CLOCKEVENTS
593 select GPIO_PXA
594 select IRQ_DOMAIN
595 select MULTI_IRQ_HANDLER
596 select PINCTRL
597 select PLAT_PXA
598 select SPARSE_IRQ
599 help
600 Support for Marvell's PXA168/PXA910(MMP) and MMP2 processor line.
601
602 config ARCH_KS8695
603 bool "Micrel/Kendin KS8695"
604 select ARCH_REQUIRE_GPIOLIB
605 select CLKSRC_MMIO
606 select CPU_ARM922T
607 select GENERIC_CLOCKEVENTS
608 select NEED_MACH_MEMORY_H
609 help
610 Support for Micrel/Kendin KS8695 "Centaur" (ARM922T) based
611 System-on-Chip devices.
612
613 config ARCH_W90X900
614 bool "Nuvoton W90X900 CPU"
615 select ARCH_REQUIRE_GPIOLIB
616 select CLKDEV_LOOKUP
617 select CLKSRC_MMIO
618 select CPU_ARM926T
619 select GENERIC_CLOCKEVENTS
620 help
621 Support for Nuvoton (Winbond logic dept.) ARM9 processor,
622 At present, the w90x900 has been renamed nuc900, regarding
623 the ARM series product line, you can login the following
624 link address to know more.
625
626 <http://www.nuvoton.com/hq/enu/ProductAndSales/ProductLines/
627 ConsumerElectronicsIC/ARMMicrocontroller/ARMMicrocontroller>
628
629 config ARCH_LPC32XX
630 bool "NXP LPC32XX"
631 select ARCH_REQUIRE_GPIOLIB
632 select ARM_AMBA
633 select CLKDEV_LOOKUP
634 select CLKSRC_MMIO
635 select CPU_ARM926T
636 select GENERIC_CLOCKEVENTS
637 select HAVE_IDE
638 select USE_OF
639 help
640 Support for the NXP LPC32XX family of processors
641
642 config ARCH_PXA
643 bool "PXA2xx/PXA3xx-based"
644 depends on MMU
645 select ARCH_MTD_XIP
646 select ARCH_REQUIRE_GPIOLIB
647 select ARM_CPU_SUSPEND if PM
648 select AUTO_ZRELADDR
649 select CLKDEV_LOOKUP
650 select CLKSRC_MMIO
651 select CLKSRC_OF
652 select GENERIC_CLOCKEVENTS
653 select GPIO_PXA
654 select HAVE_IDE
655 select MULTI_IRQ_HANDLER
656 select PLAT_PXA
657 select SPARSE_IRQ
658 help
659 Support for Intel/Marvell's PXA2xx/PXA3xx processor line.
660
661 config ARCH_MSM
662 bool "Qualcomm MSM (non-multiplatform)"
663 select ARCH_REQUIRE_GPIOLIB
664 select COMMON_CLK
665 select GENERIC_CLOCKEVENTS
666 help
667 Support for Qualcomm MSM/QSD based systems. This runs on the
668 apps processor of the MSM/QSD and depends on a shared memory
669 interface to the modem processor which runs the baseband
670 stack and controls some vital subsystems
671 (clock and power control, etc).
672
673 config ARCH_SHMOBILE_LEGACY
674 bool "Renesas ARM SoCs (non-multiplatform)"
675 select ARCH_SHMOBILE
676 select ARM_PATCH_PHYS_VIRT if MMU
677 select CLKDEV_LOOKUP
678 select GENERIC_CLOCKEVENTS
679 select HAVE_ARM_SCU if SMP
680 select HAVE_ARM_TWD if SMP
681 select HAVE_MACH_CLKDEV
682 select HAVE_SMP
683 select MIGHT_HAVE_CACHE_L2X0
684 select MULTI_IRQ_HANDLER
685 select NO_IOPORT_MAP
686 select PINCTRL
687 select PM_GENERIC_DOMAINS if PM
688 select SPARSE_IRQ
689 help
690 Support for Renesas ARM SoC platforms using a non-multiplatform
691 kernel. This includes the SH-Mobile, R-Mobile, EMMA-Mobile, R-Car
692 and RZ families.
693
694 config ARCH_RPC
695 bool "RiscPC"
696 select ARCH_ACORN
697 select ARCH_MAY_HAVE_PC_FDC
698 select ARCH_SPARSEMEM_ENABLE
699 select ARCH_USES_GETTIMEOFFSET
700 select CPU_SA110
701 select FIQ
702 select HAVE_IDE
703 select HAVE_PATA_PLATFORM
704 select ISA_DMA_API
705 select NEED_MACH_IO_H
706 select NEED_MACH_MEMORY_H
707 select NO_IOPORT_MAP
708 select VIRT_TO_BUS
709 help
710 On the Acorn Risc-PC, Linux can support the internal IDE disk and
711 CD-ROM interface, serial and parallel port, and the floppy drive.
712
713 config ARCH_SA1100
714 bool "SA1100-based"
715 select ARCH_MTD_XIP
716 select ARCH_REQUIRE_GPIOLIB
717 select ARCH_SPARSEMEM_ENABLE
718 select CLKDEV_LOOKUP
719 select CLKSRC_MMIO
720 select CPU_FREQ
721 select CPU_SA1100
722 select GENERIC_CLOCKEVENTS
723 select HAVE_IDE
724 select ISA
725 select NEED_MACH_MEMORY_H
726 select SPARSE_IRQ
727 help
728 Support for StrongARM 11x0 based boards.
729
730 config ARCH_S3C24XX
731 bool "Samsung S3C24XX SoCs"
732 select ARCH_REQUIRE_GPIOLIB
733 select ATAGS
734 select CLKDEV_LOOKUP
735 select CLKSRC_SAMSUNG_PWM
736 select GENERIC_CLOCKEVENTS
737 select GPIO_SAMSUNG
738 select HAVE_S3C2410_I2C if I2C
739 select HAVE_S3C2410_WATCHDOG if WATCHDOG
740 select HAVE_S3C_RTC if RTC_CLASS
741 select MULTI_IRQ_HANDLER
742 select NEED_MACH_IO_H
743 select SAMSUNG_ATAGS
744 help
745 Samsung S3C2410, S3C2412, S3C2413, S3C2416, S3C2440, S3C2442, S3C2443
746 and S3C2450 SoCs based systems, such as the Simtec Electronics BAST
747 (<http://www.simtec.co.uk/products/EB110ITX/>), the IPAQ 1940 or the
748 Samsung SMDK2410 development board (and derivatives).
749
750 config ARCH_S3C64XX
751 bool "Samsung S3C64XX"
752 select ARCH_REQUIRE_GPIOLIB
753 select ARM_AMBA
754 select ARM_VIC
755 select ATAGS
756 select CLKDEV_LOOKUP
757 select CLKSRC_SAMSUNG_PWM
758 select COMMON_CLK_SAMSUNG
759 select CPU_V6K
760 select GENERIC_CLOCKEVENTS
761 select GPIO_SAMSUNG
762 select HAVE_S3C2410_I2C if I2C
763 select HAVE_S3C2410_WATCHDOG if WATCHDOG
764 select HAVE_TCM
765 select NO_IOPORT_MAP
766 select PLAT_SAMSUNG
767 select PM_GENERIC_DOMAINS if PM
768 select S3C_DEV_NAND
769 select S3C_GPIO_TRACK
770 select SAMSUNG_ATAGS
771 select SAMSUNG_WAKEMASK
772 select SAMSUNG_WDT_RESET
773 help
774 Samsung S3C64XX series based systems
775
776 config ARCH_S5P64X0
777 bool "Samsung S5P6440 S5P6450"
778 select ATAGS
779 select CLKDEV_LOOKUP
780 select CLKSRC_SAMSUNG_PWM
781 select CPU_V6
782 select GENERIC_CLOCKEVENTS
783 select GPIO_SAMSUNG
784 select HAVE_S3C2410_I2C if I2C
785 select HAVE_S3C2410_WATCHDOG if WATCHDOG
786 select HAVE_S3C_RTC if RTC_CLASS
787 select NEED_MACH_GPIO_H
788 select SAMSUNG_ATAGS
789 select SAMSUNG_WDT_RESET
790 help
791 Samsung S5P64X0 CPU based systems, such as the Samsung SMDK6440,
792 SMDK6450.
793
794 config ARCH_S5PC100
795 bool "Samsung S5PC100"
796 select ARCH_REQUIRE_GPIOLIB
797 select ATAGS
798 select CLKDEV_LOOKUP
799 select CLKSRC_SAMSUNG_PWM
800 select CPU_V7
801 select GENERIC_CLOCKEVENTS
802 select GPIO_SAMSUNG
803 select HAVE_S3C2410_I2C if I2C
804 select HAVE_S3C2410_WATCHDOG if WATCHDOG
805 select HAVE_S3C_RTC if RTC_CLASS
806 select NEED_MACH_GPIO_H
807 select SAMSUNG_ATAGS
808 select SAMSUNG_WDT_RESET
809 help
810 Samsung S5PC100 series based systems
811
812 config ARCH_S5PV210
813 bool "Samsung S5PV210/S5PC110"
814 select ARCH_HAS_HOLES_MEMORYMODEL
815 select ARCH_SPARSEMEM_ENABLE
816 select ATAGS
817 select CLKDEV_LOOKUP
818 select CLKSRC_SAMSUNG_PWM
819 select CPU_V7
820 select GENERIC_CLOCKEVENTS
821 select GPIO_SAMSUNG
822 select HAVE_S3C2410_I2C if I2C
823 select HAVE_S3C2410_WATCHDOG if WATCHDOG
824 select HAVE_S3C_RTC if RTC_CLASS
825 select NEED_MACH_GPIO_H
826 select NEED_MACH_MEMORY_H
827 select SAMSUNG_ATAGS
828 help
829 Samsung S5PV210/S5PC110 series based systems
830
831 config ARCH_DAVINCI
832 bool "TI DaVinci"
833 select ARCH_HAS_HOLES_MEMORYMODEL
834 select ARCH_REQUIRE_GPIOLIB
835 select CLKDEV_LOOKUP
836 select GENERIC_ALLOCATOR
837 select GENERIC_CLOCKEVENTS
838 select GENERIC_IRQ_CHIP
839 select HAVE_IDE
840 select TI_PRIV_EDMA
841 select USE_OF
842 select ZONE_DMA
843 help
844 Support for TI's DaVinci platform.
845
846 config ARCH_OMAP1
847 bool "TI OMAP1"
848 depends on MMU
849 select ARCH_HAS_HOLES_MEMORYMODEL
850 select ARCH_OMAP
851 select ARCH_REQUIRE_GPIOLIB
852 select CLKDEV_LOOKUP
853 select CLKSRC_MMIO
854 select GENERIC_CLOCKEVENTS
855 select GENERIC_IRQ_CHIP
856 select HAVE_IDE
857 select IRQ_DOMAIN
858 select NEED_MACH_IO_H if PCCARD
859 select NEED_MACH_MEMORY_H
860 help
861 Support for older TI OMAP1 (omap7xx, omap15xx or omap16xx)
862
863 endchoice
864
865 menu "Multiple platform selection"
866 depends on ARCH_MULTIPLATFORM
867
868 comment "CPU Core family selection"
869
870 config ARCH_MULTI_V4
871 bool "ARMv4 based platforms (FA526)"
872 depends on !ARCH_MULTI_V6_V7
873 select ARCH_MULTI_V4_V5
874 select CPU_FA526
875
876 config ARCH_MULTI_V4T
877 bool "ARMv4T based platforms (ARM720T, ARM920T, ...)"
878 depends on !ARCH_MULTI_V6_V7
879 select ARCH_MULTI_V4_V5
880 select CPU_ARM920T if !(CPU_ARM7TDMI || CPU_ARM720T || \
881 CPU_ARM740T || CPU_ARM9TDMI || CPU_ARM922T || \
882 CPU_ARM925T || CPU_ARM940T)
883
884 config ARCH_MULTI_V5
885 bool "ARMv5 based platforms (ARM926T, XSCALE, PJ1, ...)"
886 depends on !ARCH_MULTI_V6_V7
887 select ARCH_MULTI_V4_V5
888 select CPU_ARM926T if !(CPU_ARM946E || CPU_ARM1020 || \
889 CPU_ARM1020E || CPU_ARM1022 || CPU_ARM1026 || \
890 CPU_XSCALE || CPU_XSC3 || CPU_MOHAWK || CPU_FEROCEON)
891
892 config ARCH_MULTI_V4_V5
893 bool
894
895 config ARCH_MULTI_V6
896 bool "ARMv6 based platforms (ARM11)"
897 select ARCH_MULTI_V6_V7
898 select CPU_V6K
899
900 config ARCH_MULTI_V7
901 bool "ARMv7 based platforms (Cortex-A, PJ4, Scorpion, Krait)"
902 default y
903 select ARCH_MULTI_V6_V7
904 select CPU_V7
905 select HAVE_SMP
906
907 config ARCH_MULTI_V6_V7
908 bool
909 select MIGHT_HAVE_CACHE_L2X0
910
911 config ARCH_MULTI_CPU_AUTO
912 def_bool !(ARCH_MULTI_V4 || ARCH_MULTI_V4T || ARCH_MULTI_V6_V7)
913 select ARCH_MULTI_V5
914
915 endmenu
916
917 config ARCH_VIRT
918 bool "Dummy Virtual Machine" if ARCH_MULTI_V7
919 select ARM_AMBA
920 select ARM_GIC
921 select ARM_PSCI
922 select HAVE_ARM_ARCH_TIMER
923
924 #
925 # This is sorted alphabetically by mach-* pathname. However, plat-*
926 # Kconfigs may be included either alphabetically (according to the
927 # plat- suffix) or along side the corresponding mach-* source.
928 #
929 source "arch/arm/mach-mvebu/Kconfig"
930
931 source "arch/arm/mach-at91/Kconfig"
932
933 source "arch/arm/mach-axxia/Kconfig"
934
935 source "arch/arm/mach-bcm/Kconfig"
936
937 source "arch/arm/mach-berlin/Kconfig"
938
939 source "arch/arm/mach-clps711x/Kconfig"
940
941 source "arch/arm/mach-cns3xxx/Kconfig"
942
943 source "arch/arm/mach-davinci/Kconfig"
944
945 source "arch/arm/mach-dove/Kconfig"
946
947 source "arch/arm/mach-ep93xx/Kconfig"
948
949 source "arch/arm/mach-footbridge/Kconfig"
950
951 source "arch/arm/mach-gemini/Kconfig"
952
953 source "arch/arm/mach-highbank/Kconfig"
954
955 source "arch/arm/mach-hisi/Kconfig"
956
957 source "arch/arm/mach-integrator/Kconfig"
958
959 source "arch/arm/mach-iop32x/Kconfig"
960
961 source "arch/arm/mach-iop33x/Kconfig"
962
963 source "arch/arm/mach-iop13xx/Kconfig"
964
965 source "arch/arm/mach-ixp4xx/Kconfig"
966
967 source "arch/arm/mach-keystone/Kconfig"
968
969 source "arch/arm/mach-kirkwood/Kconfig"
970
971 source "arch/arm/mach-ks8695/Kconfig"
972
973 source "arch/arm/mach-msm/Kconfig"
974
975 source "arch/arm/mach-moxart/Kconfig"
976
977 source "arch/arm/mach-mv78xx0/Kconfig"
978
979 source "arch/arm/mach-imx/Kconfig"
980
981 source "arch/arm/mach-mxs/Kconfig"
982
983 source "arch/arm/mach-netx/Kconfig"
984
985 source "arch/arm/mach-nomadik/Kconfig"
986
987 source "arch/arm/mach-nspire/Kconfig"
988
989 source "arch/arm/plat-omap/Kconfig"
990
991 source "arch/arm/mach-omap1/Kconfig"
992
993 source "arch/arm/mach-omap2/Kconfig"
994
995 source "arch/arm/mach-orion5x/Kconfig"
996
997 source "arch/arm/mach-picoxcell/Kconfig"
998
999 source "arch/arm/mach-pxa/Kconfig"
1000 source "arch/arm/plat-pxa/Kconfig"
1001
1002 source "arch/arm/mach-mmp/Kconfig"
1003
1004 source "arch/arm/mach-qcom/Kconfig"
1005
1006 source "arch/arm/mach-realview/Kconfig"
1007
1008 source "arch/arm/mach-rockchip/Kconfig"
1009
1010 source "arch/arm/mach-sa1100/Kconfig"
1011
1012 source "arch/arm/mach-socfpga/Kconfig"
1013
1014 source "arch/arm/mach-spear/Kconfig"
1015
1016 source "arch/arm/mach-sti/Kconfig"
1017
1018 source "arch/arm/mach-s3c24xx/Kconfig"
1019
1020 source "arch/arm/mach-s3c64xx/Kconfig"
1021
1022 source "arch/arm/mach-s5p64x0/Kconfig"
1023
1024 source "arch/arm/mach-s5pc100/Kconfig"
1025
1026 source "arch/arm/mach-s5pv210/Kconfig"
1027
1028 source "arch/arm/mach-exynos/Kconfig"
1029 source "arch/arm/plat-samsung/Kconfig"
1030
1031 source "arch/arm/mach-shmobile/Kconfig"
1032
1033 source "arch/arm/mach-sunxi/Kconfig"
1034
1035 source "arch/arm/mach-prima2/Kconfig"
1036
1037 source "arch/arm/mach-tegra/Kconfig"
1038
1039 source "arch/arm/mach-u300/Kconfig"
1040
1041 source "arch/arm/mach-ux500/Kconfig"
1042
1043 source "arch/arm/mach-versatile/Kconfig"
1044
1045 source "arch/arm/mach-vexpress/Kconfig"
1046 source "arch/arm/plat-versatile/Kconfig"
1047
1048 source "arch/arm/mach-vt8500/Kconfig"
1049
1050 source "arch/arm/mach-w90x900/Kconfig"
1051
1052 source "arch/arm/mach-zynq/Kconfig"
1053
1054 # Definitions to make life easier
1055 config ARCH_ACORN
1056 bool
1057
1058 config PLAT_IOP
1059 bool
1060 select GENERIC_CLOCKEVENTS
1061
1062 config PLAT_ORION
1063 bool
1064 select CLKSRC_MMIO
1065 select COMMON_CLK
1066 select GENERIC_IRQ_CHIP
1067 select IRQ_DOMAIN
1068
1069 config PLAT_ORION_LEGACY
1070 bool
1071 select PLAT_ORION
1072
1073 config PLAT_PXA
1074 bool
1075
1076 config PLAT_VERSATILE
1077 bool
1078
1079 config ARM_TIMER_SP804
1080 bool
1081 select CLKSRC_MMIO
1082 select CLKSRC_OF if OF
1083
1084 source "arch/arm/firmware/Kconfig"
1085
1086 source arch/arm/mm/Kconfig
1087
1088 config IWMMXT
1089 bool "Enable iWMMXt support"
1090 depends on CPU_XSCALE || CPU_XSC3 || CPU_MOHAWK || CPU_PJ4 || CPU_PJ4B
1091 default y if PXA27x || PXA3xx || ARCH_MMP || CPU_PJ4 || CPU_PJ4B
1092 help
1093 Enable support for iWMMXt context switching at run time if
1094 running on a CPU that supports it.
1095
1096 config MULTI_IRQ_HANDLER
1097 bool
1098 help
1099 Allow each machine to specify it's own IRQ handler at run time.
1100
1101 if !MMU
1102 source "arch/arm/Kconfig-nommu"
1103 endif
1104
1105 config PJ4B_ERRATA_4742
1106 bool "PJ4B Errata 4742: IDLE Wake Up Commands can Cause the CPU Core to Cease Operation"
1107 depends on CPU_PJ4B && MACH_ARMADA_370
1108 default y
1109 help
1110 When coming out of either a Wait for Interrupt (WFI) or a Wait for
1111 Event (WFE) IDLE states, a specific timing sensitivity exists between
1112 the retiring WFI/WFE instructions and the newly issued subsequent
1113 instructions. This sensitivity can result in a CPU hang scenario.
1114 Workaround:
1115 The software must insert either a Data Synchronization Barrier (DSB)
1116 or Data Memory Barrier (DMB) command immediately after the WFI/WFE
1117 instruction
1118
1119 config ARM_ERRATA_326103
1120 bool "ARM errata: FSR write bit incorrect on a SWP to read-only memory"
1121 depends on CPU_V6
1122 help
1123 Executing a SWP instruction to read-only memory does not set bit 11
1124 of the FSR on the ARM 1136 prior to r1p0. This causes the kernel to
1125 treat the access as a read, preventing a COW from occurring and
1126 causing the faulting task to livelock.
1127
1128 config ARM_ERRATA_411920
1129 bool "ARM errata: Invalidation of the Instruction Cache operation can fail"
1130 depends on CPU_V6 || CPU_V6K
1131 help
1132 Invalidation of the Instruction Cache operation can
1133 fail. This erratum is present in 1136 (before r1p4), 1156 and 1176.
1134 It does not affect the MPCore. This option enables the ARM Ltd.
1135 recommended workaround.
1136
1137 config ARM_ERRATA_430973
1138 bool "ARM errata: Stale prediction on replaced interworking branch"
1139 depends on CPU_V7
1140 help
1141 This option enables the workaround for the 430973 Cortex-A8
1142 (r1p0..r1p2) erratum. If a code sequence containing an ARM/Thumb
1143 interworking branch is replaced with another code sequence at the
1144 same virtual address, whether due to self-modifying code or virtual
1145 to physical address re-mapping, Cortex-A8 does not recover from the
1146 stale interworking branch prediction. This results in Cortex-A8
1147 executing the new code sequence in the incorrect ARM or Thumb state.
1148 The workaround enables the BTB/BTAC operations by setting ACTLR.IBE
1149 and also flushes the branch target cache at every context switch.
1150 Note that setting specific bits in the ACTLR register may not be
1151 available in non-secure mode.
1152
1153 config ARM_ERRATA_458693
1154 bool "ARM errata: Processor deadlock when a false hazard is created"
1155 depends on CPU_V7
1156 depends on !ARCH_MULTIPLATFORM
1157 help
1158 This option enables the workaround for the 458693 Cortex-A8 (r2p0)
1159 erratum. For very specific sequences of memory operations, it is
1160 possible for a hazard condition intended for a cache line to instead
1161 be incorrectly associated with a different cache line. This false
1162 hazard might then cause a processor deadlock. The workaround enables
1163 the L1 caching of the NEON accesses and disables the PLD instruction
1164 in the ACTLR register. Note that setting specific bits in the ACTLR
1165 register may not be available in non-secure mode.
1166
1167 config ARM_ERRATA_460075
1168 bool "ARM errata: Data written to the L2 cache can be overwritten with stale data"
1169 depends on CPU_V7
1170 depends on !ARCH_MULTIPLATFORM
1171 help
1172 This option enables the workaround for the 460075 Cortex-A8 (r2p0)
1173 erratum. Any asynchronous access to the L2 cache may encounter a
1174 situation in which recent store transactions to the L2 cache are lost
1175 and overwritten with stale memory contents from external memory. The
1176 workaround disables the write-allocate mode for the L2 cache via the
1177 ACTLR register. Note that setting specific bits in the ACTLR register
1178 may not be available in non-secure mode.
1179
1180 config ARM_ERRATA_742230
1181 bool "ARM errata: DMB operation may be faulty"
1182 depends on CPU_V7 && SMP
1183 depends on !ARCH_MULTIPLATFORM
1184 help
1185 This option enables the workaround for the 742230 Cortex-A9
1186 (r1p0..r2p2) erratum. Under rare circumstances, a DMB instruction
1187 between two write operations may not ensure the correct visibility
1188 ordering of the two writes. This workaround sets a specific bit in
1189 the diagnostic register of the Cortex-A9 which causes the DMB
1190 instruction to behave as a DSB, ensuring the correct behaviour of
1191 the two writes.
1192
1193 config ARM_ERRATA_742231
1194 bool "ARM errata: Incorrect hazard handling in the SCU may lead to data corruption"
1195 depends on CPU_V7 && SMP
1196 depends on !ARCH_MULTIPLATFORM
1197 help
1198 This option enables the workaround for the 742231 Cortex-A9
1199 (r2p0..r2p2) erratum. Under certain conditions, specific to the
1200 Cortex-A9 MPCore micro-architecture, two CPUs working in SMP mode,
1201 accessing some data located in the same cache line, may get corrupted
1202 data due to bad handling of the address hazard when the line gets
1203 replaced from one of the CPUs at the same time as another CPU is
1204 accessing it. This workaround sets specific bits in the diagnostic
1205 register of the Cortex-A9 which reduces the linefill issuing
1206 capabilities of the processor.
1207
1208 config ARM_ERRATA_643719
1209 bool "ARM errata: LoUIS bit field in CLIDR register is incorrect"
1210 depends on CPU_V7 && SMP
1211 help
1212 This option enables the workaround for the 643719 Cortex-A9 (prior to
1213 r1p0) erratum. On affected cores the LoUIS bit field of the CLIDR
1214 register returns zero when it should return one. The workaround
1215 corrects this value, ensuring cache maintenance operations which use
1216 it behave as intended and avoiding data corruption.
1217
1218 config ARM_ERRATA_720789
1219 bool "ARM errata: TLBIASIDIS and TLBIMVAIS operations can broadcast a faulty ASID"
1220 depends on CPU_V7
1221 help
1222 This option enables the workaround for the 720789 Cortex-A9 (prior to
1223 r2p0) erratum. A faulty ASID can be sent to the other CPUs for the
1224 broadcasted CP15 TLB maintenance operations TLBIASIDIS and TLBIMVAIS.
1225 As a consequence of this erratum, some TLB entries which should be
1226 invalidated are not, resulting in an incoherency in the system page
1227 tables. The workaround changes the TLB flushing routines to invalidate
1228 entries regardless of the ASID.
1229
1230 config ARM_ERRATA_743622
1231 bool "ARM errata: Faulty hazard checking in the Store Buffer may lead to data corruption"
1232 depends on CPU_V7
1233 depends on !ARCH_MULTIPLATFORM
1234 help
1235 This option enables the workaround for the 743622 Cortex-A9
1236 (r2p*) erratum. Under very rare conditions, a faulty
1237 optimisation in the Cortex-A9 Store Buffer may lead to data
1238 corruption. This workaround sets a specific bit in the diagnostic
1239 register of the Cortex-A9 which disables the Store Buffer
1240 optimisation, preventing the defect from occurring. This has no
1241 visible impact on the overall performance or power consumption of the
1242 processor.
1243
1244 config ARM_ERRATA_751472
1245 bool "ARM errata: Interrupted ICIALLUIS may prevent completion of broadcasted operation"
1246 depends on CPU_V7
1247 depends on !ARCH_MULTIPLATFORM
1248 help
1249 This option enables the workaround for the 751472 Cortex-A9 (prior
1250 to r3p0) erratum. An interrupted ICIALLUIS operation may prevent the
1251 completion of a following broadcasted operation if the second
1252 operation is received by a CPU before the ICIALLUIS has completed,
1253 potentially leading to corrupted entries in the cache or TLB.
1254
1255 config ARM_ERRATA_754322
1256 bool "ARM errata: possible faulty MMU translations following an ASID switch"
1257 depends on CPU_V7
1258 help
1259 This option enables the workaround for the 754322 Cortex-A9 (r2p*,
1260 r3p*) erratum. A speculative memory access may cause a page table walk
1261 which starts prior to an ASID switch but completes afterwards. This
1262 can populate the micro-TLB with a stale entry which may be hit with
1263 the new ASID. This workaround places two dsb instructions in the mm
1264 switching code so that no page table walks can cross the ASID switch.
1265
1266 config ARM_ERRATA_754327
1267 bool "ARM errata: no automatic Store Buffer drain"
1268 depends on CPU_V7 && SMP
1269 help
1270 This option enables the workaround for the 754327 Cortex-A9 (prior to
1271 r2p0) erratum. The Store Buffer does not have any automatic draining
1272 mechanism and therefore a livelock may occur if an external agent
1273 continuously polls a memory location waiting to observe an update.
1274 This workaround defines cpu_relax() as smp_mb(), preventing correctly
1275 written polling loops from denying visibility of updates to memory.
1276
1277 config ARM_ERRATA_364296
1278 bool "ARM errata: Possible cache data corruption with hit-under-miss enabled"
1279 depends on CPU_V6
1280 help
1281 This options enables the workaround for the 364296 ARM1136
1282 r0p2 erratum (possible cache data corruption with
1283 hit-under-miss enabled). It sets the undocumented bit 31 in
1284 the auxiliary control register and the FI bit in the control
1285 register, thus disabling hit-under-miss without putting the
1286 processor into full low interrupt latency mode. ARM11MPCore
1287 is not affected.
1288
1289 config ARM_ERRATA_764369
1290 bool "ARM errata: Data cache line maintenance operation by MVA may not succeed"
1291 depends on CPU_V7 && SMP
1292 help
1293 This option enables the workaround for erratum 764369
1294 affecting Cortex-A9 MPCore with two or more processors (all
1295 current revisions). Under certain timing circumstances, a data
1296 cache line maintenance operation by MVA targeting an Inner
1297 Shareable memory region may fail to proceed up to either the
1298 Point of Coherency or to the Point of Unification of the
1299 system. This workaround adds a DSB instruction before the
1300 relevant cache maintenance functions and sets a specific bit
1301 in the diagnostic control register of the SCU.
1302
1303 config ARM_ERRATA_775420
1304 bool "ARM errata: A data cache maintenance operation which aborts, might lead to deadlock"
1305 depends on CPU_V7
1306 help
1307 This option enables the workaround for the 775420 Cortex-A9 (r2p2,
1308 r2p6,r2p8,r2p10,r3p0) erratum. In case a date cache maintenance
1309 operation aborts with MMU exception, it might cause the processor
1310 to deadlock. This workaround puts DSB before executing ISB if
1311 an abort may occur on cache maintenance.
1312
1313 config ARM_ERRATA_798181
1314 bool "ARM errata: TLBI/DSB failure on Cortex-A15"
1315 depends on CPU_V7 && SMP
1316 help
1317 On Cortex-A15 (r0p0..r3p2) the TLBI*IS/DSB operations are not
1318 adequately shooting down all use of the old entries. This
1319 option enables the Linux kernel workaround for this erratum
1320 which sends an IPI to the CPUs that are running the same ASID
1321 as the one being invalidated.
1322
1323 config ARM_ERRATA_773022
1324 bool "ARM errata: incorrect instructions may be executed from loop buffer"
1325 depends on CPU_V7
1326 help
1327 This option enables the workaround for the 773022 Cortex-A15
1328 (up to r0p4) erratum. In certain rare sequences of code, the
1329 loop buffer may deliver incorrect instructions. This
1330 workaround disables the loop buffer to avoid the erratum.
1331
1332 endmenu
1333
1334 source "arch/arm/common/Kconfig"
1335
1336 menu "Bus support"
1337
1338 config ARM_AMBA
1339 bool
1340
1341 config ISA
1342 bool
1343 help
1344 Find out whether you have ISA slots on your motherboard. ISA is the
1345 name of a bus system, i.e. the way the CPU talks to the other stuff
1346 inside your box. Other bus systems are PCI, EISA, MicroChannel
1347 (MCA) or VESA. ISA is an older system, now being displaced by PCI;
1348 newer boards don't support it. If you have ISA, say Y, otherwise N.
1349
1350 # Select ISA DMA controller support
1351 config ISA_DMA
1352 bool
1353 select ISA_DMA_API
1354
1355 # Select ISA DMA interface
1356 config ISA_DMA_API
1357 bool
1358
1359 config PCI
1360 bool "PCI support" if MIGHT_HAVE_PCI
1361 help
1362 Find out whether you have a PCI motherboard. PCI is the name of a
1363 bus system, i.e. the way the CPU talks to the other stuff inside
1364 your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or
1365 VESA. If you have PCI, say Y, otherwise N.
1366
1367 config PCI_DOMAINS
1368 bool
1369 depends on PCI
1370
1371 config PCI_NANOENGINE
1372 bool "BSE nanoEngine PCI support"
1373 depends on SA1100_NANOENGINE
1374 help
1375 Enable PCI on the BSE nanoEngine board.
1376
1377 config PCI_SYSCALL
1378 def_bool PCI
1379
1380 config PCI_HOST_ITE8152
1381 bool
1382 depends on PCI && MACH_ARMCORE
1383 default y
1384 select DMABOUNCE
1385
1386 source "drivers/pci/Kconfig"
1387 source "drivers/pci/pcie/Kconfig"
1388
1389 source "drivers/pcmcia/Kconfig"
1390
1391 endmenu
1392
1393 menu "Kernel Features"
1394
1395 config HAVE_SMP
1396 bool
1397 help
1398 This option should be selected by machines which have an SMP-
1399 capable CPU.
1400
1401 The only effect of this option is to make the SMP-related
1402 options available to the user for configuration.
1403
1404 config SMP
1405 bool "Symmetric Multi-Processing"
1406 depends on CPU_V6K || CPU_V7
1407 depends on GENERIC_CLOCKEVENTS
1408 depends on HAVE_SMP
1409 depends on MMU || ARM_MPU
1410 help
1411 This enables support for systems with more than one CPU. If you have
1412 a system with only one CPU, say N. If you have a system with more
1413 than one CPU, say Y.
1414
1415 If you say N here, the kernel will run on uni- and multiprocessor
1416 machines, but will use only one CPU of a multiprocessor machine. If
1417 you say Y here, the kernel will run on many, but not all,
1418 uniprocessor machines. On a uniprocessor machine, the kernel
1419 will run faster if you say N here.
1420
1421 See also <file:Documentation/x86/i386/IO-APIC.txt>,
1422 <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at
1423 <http://tldp.org/HOWTO/SMP-HOWTO.html>.
1424
1425 If you don't know what to do here, say N.
1426
1427 config SMP_ON_UP
1428 bool "Allow booting SMP kernel on uniprocessor systems (EXPERIMENTAL)"
1429 depends on SMP && !XIP_KERNEL && MMU
1430 default y
1431 help
1432 SMP kernels contain instructions which fail on non-SMP processors.
1433 Enabling this option allows the kernel to modify itself to make
1434 these instructions safe. Disabling it allows about 1K of space
1435 savings.
1436
1437 If you don't know what to do here, say Y.
1438
1439 config ARM_CPU_TOPOLOGY
1440 bool "Support cpu topology definition"
1441 depends on SMP && CPU_V7
1442 default y
1443 help
1444 Support ARM cpu topology definition. The MPIDR register defines
1445 affinity between processors which is then used to describe the cpu
1446 topology of an ARM System.
1447
1448 config SCHED_MC
1449 bool "Multi-core scheduler support"
1450 depends on ARM_CPU_TOPOLOGY
1451 help
1452 Multi-core scheduler support improves the CPU scheduler's decision
1453 making when dealing with multi-core CPU chips at a cost of slightly
1454 increased overhead in some places. If unsure say N here.
1455
1456 config SCHED_SMT
1457 bool "SMT scheduler support"
1458 depends on ARM_CPU_TOPOLOGY
1459 help
1460 Improves the CPU scheduler's decision making when dealing with
1461 MultiThreading at a cost of slightly increased overhead in some
1462 places. If unsure say N here.
1463
1464 config HAVE_ARM_SCU
1465 bool
1466 help
1467 This option enables support for the ARM system coherency unit
1468
1469 config HAVE_ARM_ARCH_TIMER
1470 bool "Architected timer support"
1471 depends on CPU_V7
1472 select ARM_ARCH_TIMER
1473 select GENERIC_CLOCKEVENTS
1474 help
1475 This option enables support for the ARM architected timer
1476
1477 config HAVE_ARM_TWD
1478 bool
1479 depends on SMP
1480 select CLKSRC_OF if OF
1481 help
1482 This options enables support for the ARM timer and watchdog unit
1483
1484 config MCPM
1485 bool "Multi-Cluster Power Management"
1486 depends on CPU_V7 && SMP
1487 help
1488 This option provides the common power management infrastructure
1489 for (multi-)cluster based systems, such as big.LITTLE based
1490 systems.
1491
1492 config BIG_LITTLE
1493 bool "big.LITTLE support (Experimental)"
1494 depends on CPU_V7 && SMP
1495 select MCPM
1496 help
1497 This option enables support selections for the big.LITTLE
1498 system architecture.
1499
1500 config BL_SWITCHER
1501 bool "big.LITTLE switcher support"
1502 depends on BIG_LITTLE && MCPM && HOTPLUG_CPU
1503 select ARM_CPU_SUSPEND
1504 select CPU_PM
1505 help
1506 The big.LITTLE "switcher" provides the core functionality to
1507 transparently handle transition between a cluster of A15's
1508 and a cluster of A7's in a big.LITTLE system.
1509
1510 config BL_SWITCHER_DUMMY_IF
1511 tristate "Simple big.LITTLE switcher user interface"
1512 depends on BL_SWITCHER && DEBUG_KERNEL
1513 help
1514 This is a simple and dummy char dev interface to control
1515 the big.LITTLE switcher core code. It is meant for
1516 debugging purposes only.
1517
1518 choice
1519 prompt "Memory split"
1520 depends on MMU
1521 default VMSPLIT_3G
1522 help
1523 Select the desired split between kernel and user memory.
1524
1525 If you are not absolutely sure what you are doing, leave this
1526 option alone!
1527
1528 config VMSPLIT_3G
1529 bool "3G/1G user/kernel split"
1530 config VMSPLIT_2G
1531 bool "2G/2G user/kernel split"
1532 config VMSPLIT_1G
1533 bool "1G/3G user/kernel split"
1534 endchoice
1535
1536 config PAGE_OFFSET
1537 hex
1538 default PHYS_OFFSET if !MMU
1539 default 0x40000000 if VMSPLIT_1G
1540 default 0x80000000 if VMSPLIT_2G
1541 default 0xC0000000
1542
1543 config NR_CPUS
1544 int "Maximum number of CPUs (2-32)"
1545 range 2 32
1546 depends on SMP
1547 default "4"
1548
1549 config HOTPLUG_CPU
1550 bool "Support for hot-pluggable CPUs"
1551 depends on SMP
1552 help
1553 Say Y here to experiment with turning CPUs off and on. CPUs
1554 can be controlled through /sys/devices/system/cpu.
1555
1556 config ARM_PSCI
1557 bool "Support for the ARM Power State Coordination Interface (PSCI)"
1558 depends on CPU_V7
1559 help
1560 Say Y here if you want Linux to communicate with system firmware
1561 implementing the PSCI specification for CPU-centric power
1562 management operations described in ARM document number ARM DEN
1563 0022A ("Power State Coordination Interface System Software on
1564 ARM processors").
1565
1566 # The GPIO number here must be sorted by descending number. In case of
1567 # a multiplatform kernel, we just want the highest value required by the
1568 # selected platforms.
1569 config ARCH_NR_GPIO
1570 int
1571 default 1024 if ARCH_SHMOBILE || ARCH_TEGRA
1572 default 512 if ARCH_EXYNOS || ARCH_KEYSTONE || SOC_OMAP5 || SOC_DRA7XX || ARCH_S3C24XX || ARCH_S3C64XX
1573 default 416 if ARCH_SUNXI
1574 default 392 if ARCH_U8500
1575 default 352 if ARCH_VT8500
1576 default 264 if MACH_H4700
1577 default 0
1578 help
1579 Maximum number of GPIOs in the system.
1580
1581 If unsure, leave the default value.
1582
1583 source kernel/Kconfig.preempt
1584
1585 config HZ_FIXED
1586 int
1587 default 200 if ARCH_EBSA110 || ARCH_S3C24XX || ARCH_S5P64X0 || \
1588 ARCH_S5PV210 || ARCH_EXYNOS4
1589 default AT91_TIMER_HZ if ARCH_AT91
1590 default SHMOBILE_TIMER_HZ if ARCH_SHMOBILE_LEGACY
1591 default 0
1592
1593 choice
1594 depends on HZ_FIXED = 0
1595 prompt "Timer frequency"
1596
1597 config HZ_100
1598 bool "100 Hz"
1599
1600 config HZ_200
1601 bool "200 Hz"
1602
1603 config HZ_250
1604 bool "250 Hz"
1605
1606 config HZ_300
1607 bool "300 Hz"
1608
1609 config HZ_500
1610 bool "500 Hz"
1611
1612 config HZ_1000
1613 bool "1000 Hz"
1614
1615 endchoice
1616
1617 config HZ
1618 int
1619 default HZ_FIXED if HZ_FIXED != 0
1620 default 100 if HZ_100
1621 default 200 if HZ_200
1622 default 250 if HZ_250
1623 default 300 if HZ_300
1624 default 500 if HZ_500
1625 default 1000
1626
1627 config SCHED_HRTICK
1628 def_bool HIGH_RES_TIMERS
1629
1630 config THUMB2_KERNEL
1631 bool "Compile the kernel in Thumb-2 mode" if !CPU_THUMBONLY
1632 depends on (CPU_V7 || CPU_V7M) && !CPU_V6 && !CPU_V6K
1633 default y if CPU_THUMBONLY
1634 select AEABI
1635 select ARM_ASM_UNIFIED
1636 select ARM_UNWIND
1637 help
1638 By enabling this option, the kernel will be compiled in
1639 Thumb-2 mode. A compiler/assembler that understand the unified
1640 ARM-Thumb syntax is needed.
1641
1642 If unsure, say N.
1643
1644 config THUMB2_AVOID_R_ARM_THM_JUMP11
1645 bool "Work around buggy Thumb-2 short branch relocations in gas"
1646 depends on THUMB2_KERNEL && MODULES
1647 default y
1648 help
1649 Various binutils versions can resolve Thumb-2 branches to
1650 locally-defined, preemptible global symbols as short-range "b.n"
1651 branch instructions.
1652
1653 This is a problem, because there's no guarantee the final
1654 destination of the symbol, or any candidate locations for a
1655 trampoline, are within range of the branch. For this reason, the
1656 kernel does not support fixing up the R_ARM_THM_JUMP11 (102)
1657 relocation in modules at all, and it makes little sense to add
1658 support.
1659
1660 The symptom is that the kernel fails with an "unsupported
1661 relocation" error when loading some modules.
1662
1663 Until fixed tools are available, passing
1664 -fno-optimize-sibling-calls to gcc should prevent gcc generating
1665 code which hits this problem, at the cost of a bit of extra runtime
1666 stack usage in some cases.
1667
1668 The problem is described in more detail at:
1669 https://bugs.launchpad.net/binutils-linaro/+bug/725126
1670
1671 Only Thumb-2 kernels are affected.
1672
1673 Unless you are sure your tools don't have this problem, say Y.
1674
1675 config ARM_ASM_UNIFIED
1676 bool
1677
1678 config AEABI
1679 bool "Use the ARM EABI to compile the kernel"
1680 help
1681 This option allows for the kernel to be compiled using the latest
1682 ARM ABI (aka EABI). This is only useful if you are using a user
1683 space environment that is also compiled with EABI.
1684
1685 Since there are major incompatibilities between the legacy ABI and
1686 EABI, especially with regard to structure member alignment, this
1687 option also changes the kernel syscall calling convention to
1688 disambiguate both ABIs and allow for backward compatibility support
1689 (selected with CONFIG_OABI_COMPAT).
1690
1691 To use this you need GCC version 4.0.0 or later.
1692
1693 config OABI_COMPAT
1694 bool "Allow old ABI binaries to run with this kernel (EXPERIMENTAL)"
1695 depends on AEABI && !THUMB2_KERNEL
1696 help
1697 This option preserves the old syscall interface along with the
1698 new (ARM EABI) one. It also provides a compatibility layer to
1699 intercept syscalls that have structure arguments which layout
1700 in memory differs between the legacy ABI and the new ARM EABI
1701 (only for non "thumb" binaries). This option adds a tiny
1702 overhead to all syscalls and produces a slightly larger kernel.
1703
1704 The seccomp filter system will not be available when this is
1705 selected, since there is no way yet to sensibly distinguish
1706 between calling conventions during filtering.
1707
1708 If you know you'll be using only pure EABI user space then you
1709 can say N here. If this option is not selected and you attempt
1710 to execute a legacy ABI binary then the result will be
1711 UNPREDICTABLE (in fact it can be predicted that it won't work
1712 at all). If in doubt say N.
1713
1714 config ARCH_HAS_HOLES_MEMORYMODEL
1715 bool
1716
1717 config ARCH_SPARSEMEM_ENABLE
1718 bool
1719
1720 config ARCH_SPARSEMEM_DEFAULT
1721 def_bool ARCH_SPARSEMEM_ENABLE
1722
1723 config ARCH_SELECT_MEMORY_MODEL
1724 def_bool ARCH_SPARSEMEM_ENABLE
1725
1726 config HAVE_ARCH_PFN_VALID
1727 def_bool ARCH_HAS_HOLES_MEMORYMODEL || !SPARSEMEM
1728
1729 config HIGHMEM
1730 bool "High Memory Support"
1731 depends on MMU
1732 help
1733 The address space of ARM processors is only 4 Gigabytes large
1734 and it has to accommodate user address space, kernel address
1735 space as well as some memory mapped IO. That means that, if you
1736 have a large amount of physical memory and/or IO, not all of the
1737 memory can be "permanently mapped" by the kernel. The physical
1738 memory that is not permanently mapped is called "high memory".
1739
1740 Depending on the selected kernel/user memory split, minimum
1741 vmalloc space and actual amount of RAM, you may not need this
1742 option which should result in a slightly faster kernel.
1743
1744 If unsure, say n.
1745
1746 config HIGHPTE
1747 bool "Allocate 2nd-level pagetables from highmem"
1748 depends on HIGHMEM
1749
1750 config HW_PERF_EVENTS
1751 bool "Enable hardware performance counter support for perf events"
1752 depends on PERF_EVENTS
1753 default y
1754 help
1755 Enable hardware performance counter support for perf events. If
1756 disabled, perf events will use software events only.
1757
1758 config SYS_SUPPORTS_HUGETLBFS
1759 def_bool y
1760 depends on ARM_LPAE
1761
1762 config HAVE_ARCH_TRANSPARENT_HUGEPAGE
1763 def_bool y
1764 depends on ARM_LPAE
1765
1766 config ARCH_WANT_GENERAL_HUGETLB
1767 def_bool y
1768
1769 source "mm/Kconfig"
1770
1771 config FORCE_MAX_ZONEORDER
1772 int "Maximum zone order" if ARCH_SHMOBILE_LEGACY
1773 range 11 64 if ARCH_SHMOBILE_LEGACY
1774 default "12" if SOC_AM33XX
1775 default "9" if SA1111 || ARCH_EFM32
1776 default "11"
1777 help
1778 The kernel memory allocator divides physically contiguous memory
1779 blocks into "zones", where each zone is a power of two number of
1780 pages. This option selects the largest power of two that the kernel
1781 keeps in the memory allocator. If you need to allocate very large
1782 blocks of physically contiguous memory, then you may need to
1783 increase this value.
1784
1785 This config option is actually maximum order plus one. For example,
1786 a value of 11 means that the largest free memory block is 2^10 pages.
1787
1788 config ALIGNMENT_TRAP
1789 bool
1790 depends on CPU_CP15_MMU
1791 default y if !ARCH_EBSA110
1792 select HAVE_PROC_CPU if PROC_FS
1793 help
1794 ARM processors cannot fetch/store information which is not
1795 naturally aligned on the bus, i.e., a 4 byte fetch must start at an
1796 address divisible by 4. On 32-bit ARM processors, these non-aligned
1797 fetch/store instructions will be emulated in software if you say
1798 here, which has a severe performance impact. This is necessary for
1799 correct operation of some network protocols. With an IP-only
1800 configuration it is safe to say N, otherwise say Y.
1801
1802 config UACCESS_WITH_MEMCPY
1803 bool "Use kernel mem{cpy,set}() for {copy_to,clear}_user()"
1804 depends on MMU
1805 default y if CPU_FEROCEON
1806 help
1807 Implement faster copy_to_user and clear_user methods for CPU
1808 cores where a 8-word STM instruction give significantly higher
1809 memory write throughput than a sequence of individual 32bit stores.
1810
1811 A possible side effect is a slight increase in scheduling latency
1812 between threads sharing the same address space if they invoke
1813 such copy operations with large buffers.
1814
1815 However, if the CPU data cache is using a write-allocate mode,
1816 this option is unlikely to provide any performance gain.
1817
1818 config SECCOMP
1819 bool
1820 prompt "Enable seccomp to safely compute untrusted bytecode"
1821 ---help---
1822 This kernel feature is useful for number crunching applications
1823 that may need to compute untrusted bytecode during their
1824 execution. By using pipes or other transports made available to
1825 the process as file descriptors supporting the read/write
1826 syscalls, it's possible to isolate those applications in
1827 their own address space using seccomp. Once seccomp is
1828 enabled via prctl(PR_SET_SECCOMP), it cannot be disabled
1829 and the task is only allowed to execute a few safe syscalls
1830 defined by each seccomp mode.
1831
1832 config SWIOTLB
1833 def_bool y
1834
1835 config IOMMU_HELPER
1836 def_bool SWIOTLB
1837
1838 config XEN_DOM0
1839 def_bool y
1840 depends on XEN
1841
1842 config XEN
1843 bool "Xen guest support on ARM (EXPERIMENTAL)"
1844 depends on ARM && AEABI && OF
1845 depends on CPU_V7 && !CPU_V6
1846 depends on !GENERIC_ATOMIC64
1847 depends on MMU
1848 select ARCH_DMA_ADDR_T_64BIT
1849 select ARM_PSCI
1850 select SWIOTLB_XEN
1851 help
1852 Say Y if you want to run Linux in a Virtual Machine on Xen on ARM.
1853
1854 endmenu
1855
1856 menu "Boot options"
1857
1858 config USE_OF
1859 bool "Flattened Device Tree support"
1860 select IRQ_DOMAIN
1861 select OF
1862 select OF_EARLY_FLATTREE
1863 select OF_RESERVED_MEM
1864 help
1865 Include support for flattened device tree machine descriptions.
1866
1867 config ATAGS
1868 bool "Support for the traditional ATAGS boot data passing" if USE_OF
1869 default y
1870 help
1871 This is the traditional way of passing data to the kernel at boot
1872 time. If you are solely relying on the flattened device tree (or
1873 the ARM_ATAG_DTB_COMPAT option) then you may unselect this option
1874 to remove ATAGS support from your kernel binary. If unsure,
1875 leave this to y.
1876
1877 config DEPRECATED_PARAM_STRUCT
1878 bool "Provide old way to pass kernel parameters"
1879 depends on ATAGS
1880 help
1881 This was deprecated in 2001 and announced to live on for 5 years.
1882 Some old boot loaders still use this way.
1883
1884 # Compressed boot loader in ROM. Yes, we really want to ask about
1885 # TEXT and BSS so we preserve their values in the config files.
1886 config ZBOOT_ROM_TEXT
1887 hex "Compressed ROM boot loader base address"
1888 default "0"
1889 help
1890 The physical address at which the ROM-able zImage is to be
1891 placed in the target. Platforms which normally make use of
1892 ROM-able zImage formats normally set this to a suitable
1893 value in their defconfig file.
1894
1895 If ZBOOT_ROM is not enabled, this has no effect.
1896
1897 config ZBOOT_ROM_BSS
1898 hex "Compressed ROM boot loader BSS address"
1899 default "0"
1900 help
1901 The base address of an area of read/write memory in the target
1902 for the ROM-able zImage which must be available while the
1903 decompressor is running. It must be large enough to hold the
1904 entire decompressed kernel plus an additional 128 KiB.
1905 Platforms which normally make use of ROM-able zImage formats
1906 normally set this to a suitable value in their defconfig file.
1907
1908 If ZBOOT_ROM is not enabled, this has no effect.
1909
1910 config ZBOOT_ROM
1911 bool "Compressed boot loader in ROM/flash"
1912 depends on ZBOOT_ROM_TEXT != ZBOOT_ROM_BSS
1913 depends on !ARM_APPENDED_DTB && !XIP_KERNEL && !AUTO_ZRELADDR
1914 help
1915 Say Y here if you intend to execute your compressed kernel image
1916 (zImage) directly from ROM or flash. If unsure, say N.
1917
1918 choice
1919 prompt "Include SD/MMC loader in zImage (EXPERIMENTAL)"
1920 depends on ZBOOT_ROM && ARCH_SH7372
1921 default ZBOOT_ROM_NONE
1922 help
1923 Include experimental SD/MMC loading code in the ROM-able zImage.
1924 With this enabled it is possible to write the ROM-able zImage
1925 kernel image to an MMC or SD card and boot the kernel straight
1926 from the reset vector. At reset the processor Mask ROM will load
1927 the first part of the ROM-able zImage which in turn loads the
1928 rest the kernel image to RAM.
1929
1930 config ZBOOT_ROM_NONE
1931 bool "No SD/MMC loader in zImage (EXPERIMENTAL)"
1932 help
1933 Do not load image from SD or MMC
1934
1935 config ZBOOT_ROM_MMCIF
1936 bool "Include MMCIF loader in zImage (EXPERIMENTAL)"
1937 help
1938 Load image from MMCIF hardware block.
1939
1940 config ZBOOT_ROM_SH_MOBILE_SDHI
1941 bool "Include SuperH Mobile SDHI loader in zImage (EXPERIMENTAL)"
1942 help
1943 Load image from SDHI hardware block
1944
1945 endchoice
1946
1947 config ARM_APPENDED_DTB
1948 bool "Use appended device tree blob to zImage (EXPERIMENTAL)"
1949 depends on OF
1950 help
1951 With this option, the boot code will look for a device tree binary
1952 (DTB) appended to zImage
1953 (e.g. cat zImage <filename>.dtb > zImage_w_dtb).
1954
1955 This is meant as a backward compatibility convenience for those
1956 systems with a bootloader that can't be upgraded to accommodate
1957 the documented boot protocol using a device tree.
1958
1959 Beware that there is very little in terms of protection against
1960 this option being confused by leftover garbage in memory that might
1961 look like a DTB header after a reboot if no actual DTB is appended
1962 to zImage. Do not leave this option active in a production kernel
1963 if you don't intend to always append a DTB. Proper passing of the
1964 location into r2 of a bootloader provided DTB is always preferable
1965 to this option.
1966
1967 config ARM_ATAG_DTB_COMPAT
1968 bool "Supplement the appended DTB with traditional ATAG information"
1969 depends on ARM_APPENDED_DTB
1970 help
1971 Some old bootloaders can't be updated to a DTB capable one, yet
1972 they provide ATAGs with memory configuration, the ramdisk address,
1973 the kernel cmdline string, etc. Such information is dynamically
1974 provided by the bootloader and can't always be stored in a static
1975 DTB. To allow a device tree enabled kernel to be used with such
1976 bootloaders, this option allows zImage to extract the information
1977 from the ATAG list and store it at run time into the appended DTB.
1978
1979 choice
1980 prompt "Kernel command line type" if ARM_ATAG_DTB_COMPAT
1981 default ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER
1982
1983 config ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER
1984 bool "Use bootloader kernel arguments if available"
1985 help
1986 Uses the command-line options passed by the boot loader instead of
1987 the device tree bootargs property. If the boot loader doesn't provide
1988 any, the device tree bootargs property will be used.
1989
1990 config ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND
1991 bool "Extend with bootloader kernel arguments"
1992 help
1993 The command-line arguments provided by the boot loader will be
1994 appended to the the device tree bootargs property.
1995
1996 endchoice
1997
1998 config CMDLINE
1999 string "Default kernel command string"
2000 default ""
2001 help
2002 On some architectures (EBSA110 and CATS), there is currently no way
2003 for the boot loader to pass arguments to the kernel. For these
2004 architectures, you should supply some command-line options at build
2005 time by entering them here. As a minimum, you should specify the
2006 memory size and the root device (e.g., mem=64M root=/dev/nfs).
2007
2008 choice
2009 prompt "Kernel command line type" if CMDLINE != ""
2010 default CMDLINE_FROM_BOOTLOADER
2011 depends on ATAGS
2012
2013 config CMDLINE_FROM_BOOTLOADER
2014 bool "Use bootloader kernel arguments if available"
2015 help
2016 Uses the command-line options passed by the boot loader. If
2017 the boot loader doesn't provide any, the default kernel command
2018 string provided in CMDLINE will be used.
2019
2020 config CMDLINE_EXTEND
2021 bool "Extend bootloader kernel arguments"
2022 help
2023 The command-line arguments provided by the boot loader will be
2024 appended to the default kernel command string.
2025
2026 config CMDLINE_FORCE
2027 bool "Always use the default kernel command string"
2028 help
2029 Always use the default kernel command string, even if the boot
2030 loader passes other arguments to the kernel.
2031 This is useful if you cannot or don't want to change the
2032 command-line options your boot loader passes to the kernel.
2033 endchoice
2034
2035 config XIP_KERNEL
2036 bool "Kernel Execute-In-Place from ROM"
2037 depends on !ARM_LPAE && !ARCH_MULTIPLATFORM
2038 help
2039 Execute-In-Place allows the kernel to run from non-volatile storage
2040 directly addressable by the CPU, such as NOR flash. This saves RAM
2041 space since the text section of the kernel is not loaded from flash
2042 to RAM. Read-write sections, such as the data section and stack,
2043 are still copied to RAM. The XIP kernel is not compressed since
2044 it has to run directly from flash, so it will take more space to
2045 store it. The flash address used to link the kernel object files,
2046 and for storing it, is configuration dependent. Therefore, if you
2047 say Y here, you must know the proper physical address where to
2048 store the kernel image depending on your own flash memory usage.
2049
2050 Also note that the make target becomes "make xipImage" rather than
2051 "make zImage" or "make Image". The final kernel binary to put in
2052 ROM memory will be arch/arm/boot/xipImage.
2053
2054 If unsure, say N.
2055
2056 config XIP_PHYS_ADDR
2057 hex "XIP Kernel Physical Location"
2058 depends on XIP_KERNEL
2059 default "0x00080000"
2060 help
2061 This is the physical address in your flash memory the kernel will
2062 be linked for and stored to. This address is dependent on your
2063 own flash usage.
2064
2065 config KEXEC
2066 bool "Kexec system call (EXPERIMENTAL)"
2067 depends on (!SMP || PM_SLEEP_SMP)
2068 help
2069 kexec is a system call that implements the ability to shutdown your
2070 current kernel, and to start another kernel. It is like a reboot
2071 but it is independent of the system firmware. And like a reboot
2072 you can start any kernel with it, not just Linux.
2073
2074 It is an ongoing process to be certain the hardware in a machine
2075 is properly shutdown, so do not be surprised if this code does not
2076 initially work for you.
2077
2078 config ATAGS_PROC
2079 bool "Export atags in procfs"
2080 depends on ATAGS && KEXEC
2081 default y
2082 help
2083 Should the atags used to boot the kernel be exported in an "atags"
2084 file in procfs. Useful with kexec.
2085
2086 config CRASH_DUMP
2087 bool "Build kdump crash kernel (EXPERIMENTAL)"
2088 help
2089 Generate crash dump after being started by kexec. This should
2090 be normally only set in special crash dump kernels which are
2091 loaded in the main kernel with kexec-tools into a specially
2092 reserved region and then later executed after a crash by
2093 kdump/kexec. The crash dump kernel must be compiled to a
2094 memory address not used by the main kernel
2095
2096 For more details see Documentation/kdump/kdump.txt
2097
2098 config AUTO_ZRELADDR
2099 bool "Auto calculation of the decompressed kernel image address"
2100 help
2101 ZRELADDR is the physical address where the decompressed kernel
2102 image will be placed. If AUTO_ZRELADDR is selected, the address
2103 will be determined at run-time by masking the current IP with
2104 0xf8000000. This assumes the zImage being placed in the first 128MB
2105 from start of memory.
2106
2107 endmenu
2108
2109 menu "CPU Power Management"
2110
2111 source "drivers/cpufreq/Kconfig"
2112
2113 source "drivers/cpuidle/Kconfig"
2114
2115 endmenu
2116
2117 menu "Floating point emulation"
2118
2119 comment "At least one emulation must be selected"
2120
2121 config FPE_NWFPE
2122 bool "NWFPE math emulation"
2123 depends on (!AEABI || OABI_COMPAT) && !THUMB2_KERNEL
2124 ---help---
2125 Say Y to include the NWFPE floating point emulator in the kernel.
2126 This is necessary to run most binaries. Linux does not currently
2127 support floating point hardware so you need to say Y here even if
2128 your machine has an FPA or floating point co-processor podule.
2129
2130 You may say N here if you are going to load the Acorn FPEmulator
2131 early in the bootup.
2132
2133 config FPE_NWFPE_XP
2134 bool "Support extended precision"
2135 depends on FPE_NWFPE
2136 help
2137 Say Y to include 80-bit support in the kernel floating-point
2138 emulator. Otherwise, only 32 and 64-bit support is compiled in.
2139 Note that gcc does not generate 80-bit operations by default,
2140 so in most cases this option only enlarges the size of the
2141 floating point emulator without any good reason.
2142
2143 You almost surely want to say N here.
2144
2145 config FPE_FASTFPE
2146 bool "FastFPE math emulation (EXPERIMENTAL)"
2147 depends on (!AEABI || OABI_COMPAT) && !CPU_32v3
2148 ---help---
2149 Say Y here to include the FAST floating point emulator in the kernel.
2150 This is an experimental much faster emulator which now also has full
2151 precision for the mantissa. It does not support any exceptions.
2152 It is very simple, and approximately 3-6 times faster than NWFPE.
2153
2154 It should be sufficient for most programs. It may be not suitable
2155 for scientific calculations, but you have to check this for yourself.
2156 If you do not feel you need a faster FP emulation you should better
2157 choose NWFPE.
2158
2159 config VFP
2160 bool "VFP-format floating point maths"
2161 depends on CPU_V6 || CPU_V6K || CPU_ARM926T || CPU_V7 || CPU_FEROCEON
2162 help
2163 Say Y to include VFP support code in the kernel. This is needed
2164 if your hardware includes a VFP unit.
2165
2166 Please see <file:Documentation/arm/VFP/release-notes.txt> for
2167 release notes and additional status information.
2168
2169 Say N if your target does not have VFP hardware.
2170
2171 config VFPv3
2172 bool
2173 depends on VFP
2174 default y if CPU_V7
2175
2176 config NEON
2177 bool "Advanced SIMD (NEON) Extension support"
2178 depends on VFPv3 && CPU_V7
2179 help
2180 Say Y to include support code for NEON, the ARMv7 Advanced SIMD
2181 Extension.
2182
2183 config KERNEL_MODE_NEON
2184 bool "Support for NEON in kernel mode"
2185 depends on NEON && AEABI
2186 help
2187 Say Y to include support for NEON in kernel mode.
2188
2189 endmenu
2190
2191 menu "Userspace binary formats"
2192
2193 source "fs/Kconfig.binfmt"
2194
2195 config ARTHUR
2196 tristate "RISC OS personality"
2197 depends on !AEABI
2198 help
2199 Say Y here to include the kernel code necessary if you want to run
2200 Acorn RISC OS/Arthur binaries under Linux. This code is still very
2201 experimental; if this sounds frightening, say N and sleep in peace.
2202 You can also say M here to compile this support as a module (which
2203 will be called arthur).
2204
2205 endmenu
2206
2207 menu "Power management options"
2208
2209 source "kernel/power/Kconfig"
2210
2211 config ARCH_SUSPEND_POSSIBLE
2212 depends on !ARCH_S5PC100
2213 depends on CPU_ARM920T || CPU_ARM926T || CPU_FEROCEON || CPU_SA1100 || \
2214 CPU_V6 || CPU_V6K || CPU_V7 || CPU_V7M || CPU_XSC3 || CPU_XSCALE || CPU_MOHAWK
2215 def_bool y
2216
2217 config ARM_CPU_SUSPEND
2218 def_bool PM_SLEEP
2219
2220 config ARCH_HIBERNATION_POSSIBLE
2221 bool
2222 depends on MMU
2223 default y if ARCH_SUSPEND_POSSIBLE
2224
2225 endmenu
2226
2227 source "net/Kconfig"
2228
2229 source "drivers/Kconfig"
2230
2231 source "fs/Kconfig"
2232
2233 source "arch/arm/Kconfig.debug"
2234
2235 source "security/Kconfig"
2236
2237 source "crypto/Kconfig"
2238
2239 source "lib/Kconfig"
2240
2241 source "arch/arm/kvm/Kconfig"
This page took 0.104334 seconds and 6 git commands to generate.