diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-14 16:37:29 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-14 16:37:29 -0400 |
commit | 6c118e43dc513a7118b49b9ff953fe61e14515dc (patch) | |
tree | ef654ba1982c17a516697d25b3d0405acb6aeac1 /arch/avr32/Kconfig | |
parent | 847106ff628805e1a0aa91e7f53381f3fdfcd839 (diff) | |
parent | 72f6befeea7dc634a83219287d5b874734b85637 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/hskinnemoen/avr32-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/hskinnemoen/avr32-2.6: (31 commits)
avr32: Fix typo of IFSR in a comment in the PIO header file
avr32: Power Management support ("standby" and "mem" modes)
avr32: Add system device for the internal interrupt controller (intc)
avr32: Add simple SRAM allocator
avr32: Enable SDRAMC clock at startup
rtc-at32ap700x: Enable wakeup
macb: Basic suspend/resume support
atmel_serial: Drain console TX shifter before suspending
atmel_serial: Fix build on avr32 with CONFIG_PM enabled
avr32: Use a quicklist for PTE allocation as well
avr32: Use a quicklist for PGD allocation
avr32: Cover the kernel page tables in the user PGDs
avr32: Store virtual addresses in the PGD
avr32: Remove useless zeroing of swapper_pg_dir at startup
avr32: Clean up and optimize the TLB operations
avr32: Rename at32ap.c -> pdc.c
avr32: Move setup_platform() into chip-specific file
avr32: Kill special exception handler sections
avr32: Kill unneeded #include <asm/pgalloc.h> from asm/mmu_context.h
avr32: Clean up time.c #includes
...
Diffstat (limited to 'arch/avr32/Kconfig')
-rw-r--r-- | arch/avr32/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/avr32/Kconfig b/arch/avr32/Kconfig index 09ad7995080c..45d63c986015 100644 --- a/arch/avr32/Kconfig +++ b/arch/avr32/Kconfig | |||
@@ -88,6 +88,7 @@ config PLATFORM_AT32AP | |||
88 | select MMU | 88 | select MMU |
89 | select PERFORMANCE_COUNTERS | 89 | select PERFORMANCE_COUNTERS |
90 | select HAVE_GPIO_LIB | 90 | select HAVE_GPIO_LIB |
91 | select GENERIC_ALLOCATOR | ||
91 | 92 | ||
92 | # | 93 | # |
93 | # CPU types | 94 | # CPU types |
@@ -147,6 +148,9 @@ config PHYS_OFFSET | |||
147 | 148 | ||
148 | source "kernel/Kconfig.preempt" | 149 | source "kernel/Kconfig.preempt" |
149 | 150 | ||
151 | config QUICKLIST | ||
152 | def_bool y | ||
153 | |||
150 | config HAVE_ARCH_BOOTMEM_NODE | 154 | config HAVE_ARCH_BOOTMEM_NODE |
151 | def_bool n | 155 | def_bool n |
152 | 156 | ||
@@ -201,6 +205,11 @@ endmenu | |||
201 | 205 | ||
202 | menu "Power management options" | 206 | menu "Power management options" |
203 | 207 | ||
208 | source "kernel/power/Kconfig" | ||
209 | |||
210 | config ARCH_SUSPEND_POSSIBLE | ||
211 | def_bool y | ||
212 | |||
204 | menu "CPU Frequency scaling" | 213 | menu "CPU Frequency scaling" |
205 | 214 | ||
206 | source "drivers/cpufreq/Kconfig" | 215 | source "drivers/cpufreq/Kconfig" |