diff options
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r-- | arch/arm/Kconfig | 34 |
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" | |||
8 | config ARM | 8 | config 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 | |||
53 | config RWSEM_XCHGADD_ALGORITHM | 54 | config RWSEM_XCHGADD_ALGORITHM |
54 | bool | 55 | bool |
55 | 56 | ||
57 | config GENERIC_HWEIGHT | ||
58 | bool | ||
59 | default y | ||
60 | |||
56 | config GENERIC_CALIBRATE_DELAY | 61 | config 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 | ||
116 | config 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 | |||
111 | config ARCH_FOOTBRIDGE | 123 | config 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 | ||
156 | config ARCH_IXP23XX | ||
157 | bool "IXP23XX-based" | ||
158 | select PCI | ||
159 | help | ||
160 | Support for Intel's IXP23xx (XScale) family of processors. | ||
161 | |||
144 | config ARCH_L7200 | 162 | config ARCH_L7200 |
145 | bool "LinkUp-L7200" | 163 | bool "LinkUp-L7200" |
146 | select FIQ | 164 | select FIQ |
@@ -250,6 +268,8 @@ endchoice | |||
250 | 268 | ||
251 | source "arch/arm/mach-clps711x/Kconfig" | 269 | source "arch/arm/mach-clps711x/Kconfig" |
252 | 270 | ||
271 | source "arch/arm/mach-ep93xx/Kconfig" | ||
272 | |||
253 | source "arch/arm/mach-footbridge/Kconfig" | 273 | source "arch/arm/mach-footbridge/Kconfig" |
254 | 274 | ||
255 | source "arch/arm/mach-integrator/Kconfig" | 275 | source "arch/arm/mach-integrator/Kconfig" |
@@ -260,6 +280,8 @@ source "arch/arm/mach-ixp4xx/Kconfig" | |||
260 | 280 | ||
261 | source "arch/arm/mach-ixp2000/Kconfig" | 281 | source "arch/arm/mach-ixp2000/Kconfig" |
262 | 282 | ||
283 | source "arch/arm/mach-ixp23xx/Kconfig" | ||
284 | |||
263 | source "arch/arm/mach-pxa/Kconfig" | 285 | source "arch/arm/mach-pxa/Kconfig" |
264 | 286 | ||
265 | source "arch/arm/mach-sa1100/Kconfig" | 287 | source "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 | ||
459 | config 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 | |||
437 | config AEABI | 466 | config 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 | ||
772 | if PCMCIA || ARCH_CLPS7500 || ARCH_IOP3XX || ARCH_IXP4XX \ | 801 | if 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 | ||
775 | source "drivers/ide/Kconfig" | 805 | source "drivers/ide/Kconfig" |
776 | endif | 806 | endif |
777 | 807 | ||
@@ -819,6 +849,8 @@ source "drivers/usb/Kconfig" | |||
819 | 849 | ||
820 | source "drivers/mmc/Kconfig" | 850 | source "drivers/mmc/Kconfig" |
821 | 851 | ||
852 | source "drivers/rtc/Kconfig" | ||
853 | |||
822 | endmenu | 854 | endmenu |
823 | 855 | ||
824 | source "fs/Kconfig" | 856 | source "fs/Kconfig" |