aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r--arch/arm/Kconfig34
1 files changed, 33 insertions, 1 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 32ba00bd0a2f..ba46d779ede7 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -8,6 +8,7 @@ mainmenu "Linux Kernel Configuration"
8config ARM 8config ARM
9 bool 9 bool
10 default y 10 default y
11 select RTC_LIB
11 help 12 help
12 The ARM series is a line of low-power-consumption RISC chip designs 13 The ARM series is a line of low-power-consumption RISC chip designs
13 licensed by ARM Ltd and targeted at embedded applications and 14 licensed by ARM Ltd and targeted at embedded applications and
@@ -53,6 +54,10 @@ config RWSEM_GENERIC_SPINLOCK
53config RWSEM_XCHGADD_ALGORITHM 54config RWSEM_XCHGADD_ALGORITHM
54 bool 55 bool
55 56
57config GENERIC_HWEIGHT
58 bool
59 default y
60
56config GENERIC_CALIBRATE_DELAY 61config GENERIC_CALIBRATE_DELAY
57 bool 62 bool
58 default y 63 default y
@@ -108,6 +113,13 @@ config ARCH_EBSA110
108 Ethernet interface, two PCMCIA sockets, two serial ports and a 113 Ethernet interface, two PCMCIA sockets, two serial ports and a
109 parallel port. 114 parallel port.
110 115
116config ARCH_EP93XX
117 bool "EP93xx-based"
118 select ARM_AMBA
119 select ARM_VIC
120 help
121 This enables support for the Cirrus EP93xx series of CPUs.
122
111config ARCH_FOOTBRIDGE 123config ARCH_FOOTBRIDGE
112 bool "FootBridge" 124 bool "FootBridge"
113 select FOOTBRIDGE 125 select FOOTBRIDGE
@@ -141,6 +153,12 @@ config ARCH_IXP2000
141 help 153 help
142 Support for Intel's IXP2400/2800 (XScale) family of processors. 154 Support for Intel's IXP2400/2800 (XScale) family of processors.
143 155
156config ARCH_IXP23XX
157 bool "IXP23XX-based"
158 select PCI
159 help
160 Support for Intel's IXP23xx (XScale) family of processors.
161
144config ARCH_L7200 162config ARCH_L7200
145 bool "LinkUp-L7200" 163 bool "LinkUp-L7200"
146 select FIQ 164 select FIQ
@@ -250,6 +268,8 @@ endchoice
250 268
251source "arch/arm/mach-clps711x/Kconfig" 269source "arch/arm/mach-clps711x/Kconfig"
252 270
271source "arch/arm/mach-ep93xx/Kconfig"
272
253source "arch/arm/mach-footbridge/Kconfig" 273source "arch/arm/mach-footbridge/Kconfig"
254 274
255source "arch/arm/mach-integrator/Kconfig" 275source "arch/arm/mach-integrator/Kconfig"
@@ -260,6 +280,8 @@ source "arch/arm/mach-ixp4xx/Kconfig"
260 280
261source "arch/arm/mach-ixp2000/Kconfig" 281source "arch/arm/mach-ixp2000/Kconfig"
262 282
283source "arch/arm/mach-ixp23xx/Kconfig"
284
263source "arch/arm/mach-pxa/Kconfig" 285source "arch/arm/mach-pxa/Kconfig"
264 286
265source "arch/arm/mach-sa1100/Kconfig" 287source "arch/arm/mach-sa1100/Kconfig"
@@ -434,6 +456,13 @@ config NO_IDLE_HZ
434 Currently at least OMAP, PXA2xx and SA11x0 platforms are known 456 Currently at least OMAP, PXA2xx and SA11x0 platforms are known
435 to have accurate timekeeping with dynamic tick. 457 to have accurate timekeeping with dynamic tick.
436 458
459config HZ
460 int
461 default 128 if ARCH_L7200
462 default 200 if ARCH_EBSA110 || ARCH_S3C2410
463 default OMAP_32K_TIMER_HZ if ARCH_OMAP && OMAP_32K_TIMER
464 default 100
465
437config AEABI 466config AEABI
438 bool "Use the ARM EABI to compile the kernel" 467 bool "Use the ARM EABI to compile the kernel"
439 help 468 help
@@ -771,7 +800,8 @@ source "drivers/acorn/block/Kconfig"
771 800
772if PCMCIA || ARCH_CLPS7500 || ARCH_IOP3XX || ARCH_IXP4XX \ 801if PCMCIA || ARCH_CLPS7500 || ARCH_IOP3XX || ARCH_IXP4XX \
773 || ARCH_L7200 || ARCH_LH7A40X || ARCH_PXA || ARCH_RPC \ 802 || ARCH_L7200 || ARCH_LH7A40X || ARCH_PXA || ARCH_RPC \
774 || ARCH_S3C2410 || ARCH_SA1100 || ARCH_SHARK || FOOTBRIDGE 803 || ARCH_S3C2410 || ARCH_SA1100 || ARCH_SHARK || FOOTBRIDGE \
804 || ARCH_IXP23XX
775source "drivers/ide/Kconfig" 805source "drivers/ide/Kconfig"
776endif 806endif
777 807
@@ -819,6 +849,8 @@ source "drivers/usb/Kconfig"
819 849
820source "drivers/mmc/Kconfig" 850source "drivers/mmc/Kconfig"
821 851
852source "drivers/rtc/Kconfig"
853
822endmenu 854endmenu
823 855
824source "fs/Kconfig" 856source "fs/Kconfig"