aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r--arch/arm/Kconfig22
1 files changed, 11 insertions, 11 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 5b714695b01b..13b739469c51 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -49,7 +49,6 @@ config ARM
49 select HAVE_REGS_AND_STACK_ACCESS_API 49 select HAVE_REGS_AND_STACK_ACCESS_API
50 select HAVE_SYSCALL_TRACEPOINTS 50 select HAVE_SYSCALL_TRACEPOINTS
51 select HAVE_UID16 51 select HAVE_UID16
52 select HAVE_VIRT_TO_BUS
53 select KTIME_SCALAR 52 select KTIME_SCALAR
54 select PERF_USE_VMALLOC 53 select PERF_USE_VMALLOC
55 select RTC_LIB 54 select RTC_LIB
@@ -556,7 +555,6 @@ config ARCH_IXP4XX
556config ARCH_DOVE 555config ARCH_DOVE
557 bool "Marvell Dove" 556 bool "Marvell Dove"
558 select ARCH_REQUIRE_GPIOLIB 557 select ARCH_REQUIRE_GPIOLIB
559 select COMMON_CLK_DOVE
560 select CPU_V7 558 select CPU_V7
561 select GENERIC_CLOCKEVENTS 559 select GENERIC_CLOCKEVENTS
562 select MIGHT_HAVE_PCI 560 select MIGHT_HAVE_PCI
@@ -744,6 +742,7 @@ config ARCH_RPC
744 select NEED_MACH_IO_H 742 select NEED_MACH_IO_H
745 select NEED_MACH_MEMORY_H 743 select NEED_MACH_MEMORY_H
746 select NO_IOPORT 744 select NO_IOPORT
745 select VIRT_TO_BUS
747 help 746 help
748 On the Acorn Risc-PC, Linux can support the internal IDE disk and 747 On the Acorn Risc-PC, Linux can support the internal IDE disk and
749 CD-ROM interface, serial and parallel port, and the floppy drive. 748 CD-ROM interface, serial and parallel port, and the floppy drive.
@@ -879,6 +878,7 @@ config ARCH_SHARK
879 select ISA_DMA 878 select ISA_DMA
880 select NEED_MACH_MEMORY_H 879 select NEED_MACH_MEMORY_H
881 select PCI 880 select PCI
881 select VIRT_TO_BUS
882 select ZONE_DMA 882 select ZONE_DMA
883 help 883 help
884 Support for the StrongARM based Digital DNARD machine, also known 884 Support for the StrongARM based Digital DNARD machine, also known
@@ -1006,12 +1006,12 @@ config ARCH_MULTI_V4_V5
1006 bool 1006 bool
1007 1007
1008config ARCH_MULTI_V6 1008config ARCH_MULTI_V6
1009 bool "ARMv6 based platforms (ARM11, Scorpion, ...)" 1009 bool "ARMv6 based platforms (ARM11)"
1010 select ARCH_MULTI_V6_V7 1010 select ARCH_MULTI_V6_V7
1011 select CPU_V6 1011 select CPU_V6
1012 1012
1013config ARCH_MULTI_V7 1013config ARCH_MULTI_V7
1014 bool "ARMv7 based platforms (Cortex-A, PJ4, Krait)" 1014 bool "ARMv7 based platforms (Cortex-A, PJ4, Scorpion, Krait)"
1015 default y 1015 default y
1016 select ARCH_MULTI_V6_V7 1016 select ARCH_MULTI_V6_V7
1017 select ARCH_VEXPRESS 1017 select ARCH_VEXPRESS
@@ -1462,10 +1462,6 @@ config ISA_DMA
1462 bool 1462 bool
1463 select ISA_DMA_API 1463 select ISA_DMA_API
1464 1464
1465config ARCH_NO_VIRT_TO_BUS
1466 def_bool y
1467 depends on !ARCH_RPC && !ARCH_NETWINDER && !ARCH_SHARK
1468
1469# Select ISA DMA interface 1465# Select ISA DMA interface
1470config ISA_DMA_API 1466config ISA_DMA_API
1471 bool 1467 bool
@@ -1657,13 +1653,16 @@ config LOCAL_TIMERS
1657 accounting to be spread across the timer interval, preventing a 1653 accounting to be spread across the timer interval, preventing a
1658 "thundering herd" at every timer tick. 1654 "thundering herd" at every timer tick.
1659 1655
1656# The GPIO number here must be sorted by descending number. In case of
1657# a multiplatform kernel, we just want the highest value required by the
1658# selected platforms.
1660config ARCH_NR_GPIO 1659config ARCH_NR_GPIO
1661 int 1660 int
1662 default 1024 if ARCH_SHMOBILE || ARCH_TEGRA 1661 default 1024 if ARCH_SHMOBILE || ARCH_TEGRA
1663 default 355 if ARCH_U8500
1664 default 264 if MACH_H4700
1665 default 512 if SOC_OMAP5 1662 default 512 if SOC_OMAP5
1663 default 355 if ARCH_U8500
1666 default 288 if ARCH_VT8500 || ARCH_SUNXI 1664 default 288 if ARCH_VT8500 || ARCH_SUNXI
1665 default 264 if MACH_H4700
1667 default 0 1666 default 0
1668 help 1667 help
1669 Maximum number of GPIOs in the system. 1668 Maximum number of GPIOs in the system.
@@ -1887,8 +1886,9 @@ config XEN_DOM0
1887 1886
1888config XEN 1887config XEN
1889 bool "Xen guest support on ARM (EXPERIMENTAL)" 1888 bool "Xen guest support on ARM (EXPERIMENTAL)"
1890 depends on ARM && OF 1889 depends on ARM && AEABI && OF
1891 depends on CPU_V7 && !CPU_V6 1890 depends on CPU_V7 && !CPU_V6
1891 depends on !GENERIC_ATOMIC64
1892 help 1892 help
1893 Say Y if you want to run Linux in a Virtual Machine on Xen on ARM. 1893 Say Y if you want to run Linux in a Virtual Machine on Xen on ARM.
1894 1894