[NET]: Add UDPLITE support in a few missing spots
[linux-2.6.22.y-op.git] / arch / avr32 / Kconfig
blobbb059a4e1df94a757eac011ad007552a8649be69
2 # For a description of the syntax of this configuration file,
3 # see Documentation/kbuild/kconfig-language.txt.
6 mainmenu "Linux Kernel Configuration"
8 config AVR32
9         bool
10         default y
11         # With EMBEDDED=n, we get lots of stuff automatically selected
12         # that we usually don't need on AVR32.
13         select EMBEDDED
14         help
15           AVR32 is a high-performance 32-bit RISC microprocessor core,
16           designed for cost-sensitive embedded applications, with particular
17           emphasis on low power consumption and high code density.
19           There is an AVR32 Linux project with a web page at
20           http://avr32linux.org/.
22 config UID16
23         bool
25 config GENERIC_HARDIRQS
26         bool
27         default y
29 config HARDIRQS_SW_RESEND
30         bool
31         default y
33 config GENERIC_IRQ_PROBE
34         bool
35         default y
37 config RWSEM_GENERIC_SPINLOCK
38         bool
39         default y
41 config GENERIC_TIME
42         bool
43         default y
45 config RWSEM_XCHGADD_ALGORITHM
46         bool
48 config ARCH_HAS_ILOG2_U32
49         bool
50         default n
52 config ARCH_HAS_ILOG2_U64
53         bool
54         default n
56 config GENERIC_BUST_SPINLOCK
57         bool
59 config GENERIC_HWEIGHT
60         bool
61         default y
63 config GENERIC_CALIBRATE_DELAY
64         bool
65         default y
67 source "init/Kconfig"
69 menu "System Type and features"
71 config SUBARCH_AVR32B
72         bool
73 config MMU
74         bool
75 config PERFORMANCE_COUNTERS
76         bool
78 config PLATFORM_AT32AP
79         bool
80         select SUBARCH_AVR32B
81         select MMU
82         select PERFORMANCE_COUNTERS
84 choice
85         prompt "AVR32 CPU type"
86         default CPU_AT32AP7000
88 config CPU_AT32AP7000
89         bool "AT32AP7000"
90         select PLATFORM_AT32AP
91 endchoice
94 # CPU Daughterboards for ATSTK1000
95 config BOARD_ATSTK1002
96         bool
98 choice
99         prompt "AVR32 board type"
100         default BOARD_ATSTK1000
102 config BOARD_ATSTK1000
103         bool "ATSTK1000 evaluation board"
104         select BOARD_ATSTK1002 if CPU_AT32AP7000
105 endchoice
107 choice
108         prompt "Boot loader type"
109         default LOADER_U_BOOT
111 config  LOADER_U_BOOT
112         bool "U-Boot (or similar) bootloader"
113 endchoice
115 config LOAD_ADDRESS
116         hex
117         default 0x10000000 if LOADER_U_BOOT=y && CPU_AT32AP7000=y
119 config ENTRY_ADDRESS
120         hex
121         default 0x90000000 if LOADER_U_BOOT=y && CPU_AT32AP7000=y
123 config PHYS_OFFSET
124         hex
125         default 0x10000000 if CPU_AT32AP7000=y
127 source "kernel/Kconfig.preempt"
129 config HAVE_ARCH_BOOTMEM_NODE
130         bool
131         default n
133 config ARCH_HAVE_MEMORY_PRESENT
134         bool
135         default n
137 config NEED_NODE_MEMMAP_SIZE
138         bool
139         default n
141 config ARCH_FLATMEM_ENABLE
142         bool
143         default y
145 config ARCH_DISCONTIGMEM_ENABLE
146         bool
147         default n
149 config ARCH_SPARSEMEM_ENABLE
150         bool
151         default n
153 source "mm/Kconfig"
155 config OWNERSHIP_TRACE
156         bool "Ownership trace support"
157         default y
158         help
159           Say Y to generate an Ownership Trace message on every context switch,
160           enabling Nexus-compliant debuggers to keep track of the PID of the
161           currently executing task.
163 # FPU emulation goes here
165 source "kernel/Kconfig.hz"
167 config CMDLINE
168         string "Default kernel command line"
169         default ""
170         help
171           If you don't have a boot loader capable of passing a command line string
172           to the kernel, you may specify one here. As a minimum, you should specify
173           the memory size and the root device (e.g., mem=8M, root=/dev/nfs).
175 endmenu
177 menu "Bus options"
179 config PCI
180         bool
182 source "drivers/pci/Kconfig"
184 source "drivers/pcmcia/Kconfig"
186 endmenu
188 menu "Executable file formats"
189 source "fs/Kconfig.binfmt"
190 endmenu
192 source "net/Kconfig"
194 source "drivers/Kconfig"
196 source "fs/Kconfig"
198 source "arch/avr32/Kconfig.debug"
200 source "security/Kconfig"
202 source "crypto/Kconfig"
204 source "lib/Kconfig"