[AVR32] Add support for ATSTK1003 and ATSTK1004
[linux-2.6/pdupreez.git] / arch / avr32 / Kconfig
blob52283f76c304894a8619704f630253b72ecdba22
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         def_bool y
10         # With EMBEDDED=n, we get lots of stuff automatically selected
11         # that we usually don't need on AVR32.
12         select EMBEDDED
13         help
14           AVR32 is a high-performance 32-bit RISC microprocessor core,
15           designed for cost-sensitive embedded applications, with particular
16           emphasis on low power consumption and high code density.
18           There is an AVR32 Linux project with a web page at
19           http://avr32linux.org/.
21 config GENERIC_GPIO
22         def_bool y
24 config GENERIC_HARDIRQS
25         def_bool y
27 config STACKTRACE_SUPPORT
28         def_bool y
30 config LOCKDEP_SUPPORT
31         def_bool y
33 config TRACE_IRQFLAGS_SUPPORT
34         def_bool y
36 config HARDIRQS_SW_RESEND
37         def_bool y
39 config GENERIC_IRQ_PROBE
40         def_bool y
42 config RWSEM_GENERIC_SPINLOCK
43         def_bool y
45 config GENERIC_TIME
46         def_bool y
48 config RWSEM_XCHGADD_ALGORITHM
49         def_bool n
51 config ARCH_HAS_ILOG2_U32
52         def_bool n
54 config ARCH_HAS_ILOG2_U64
55         def_bool n
57 config ARCH_SUPPORTS_OPROFILE
58         def_bool y
60 config GENERIC_HWEIGHT
61         def_bool y
63 config GENERIC_CALIBRATE_DELAY
64         def_bool y
66 config GENERIC_BUG
67         def_bool y
68         depends on BUG
70 source "init/Kconfig"
72 menu "System Type and features"
74 config SUBARCH_AVR32B
75         bool
76 config MMU
77         bool
78 config PERFORMANCE_COUNTERS
79         bool
81 config PLATFORM_AT32AP
82         bool
83         select SUBARCH_AVR32B
84         select MMU
85         select PERFORMANCE_COUNTERS
87 config CPU_AT32AP700X
88         bool
89         select PLATFORM_AT32AP
91 choice
92         prompt "AVR32 CPU type"
93         default CPU_AT32AP7000
95 config CPU_AT32AP7000
96         bool "AT32AP7000"
97         select CPU_AT32AP700X
99 config CPU_AT32AP7001
100         bool "AT32AP7001"
101         select CPU_AT32AP700X
103 config CPU_AT32AP7002
104         bool "AT32AP7002"
105         select CPU_AT32AP700X
107 endchoice
110 # CPU Daughterboards for ATSTK1000
111 config BOARD_ATSTK1002
112         bool
113 config BOARD_ATSTK1003
114         bool
115 config BOARD_ATSTK1004
116         bool
118 choice
119         prompt "AVR32 board type"
120         default BOARD_ATSTK1000
122 config BOARD_ATSTK1000
123         bool "ATSTK1000 evaluation board"
124         select BOARD_ATSTK1002 if CPU_AT32AP7000
125         select BOARD_ATSTK1003 if CPU_AT32AP7001
126         select BOARD_ATSTK1004 if CPU_AT32AP7002
128 config BOARD_ATNGW100
129         bool "ATNGW100 Network Gateway"
130 endchoice
132 if BOARD_ATSTK1000
133 source "arch/avr32/boards/atstk1000/Kconfig"
134 endif
136 choice
137         prompt "Boot loader type"
138         default LOADER_U_BOOT
140 config  LOADER_U_BOOT
141         bool "U-Boot (or similar) bootloader"
142 endchoice
144 source "arch/avr32/mach-at32ap/Kconfig"
146 config LOAD_ADDRESS
147         hex
148         default 0x10000000 if LOADER_U_BOOT=y && CPU_AT32AP700X=y
150 config ENTRY_ADDRESS
151         hex
152         default 0x90000000 if LOADER_U_BOOT=y && CPU_AT32AP700X=y
154 config PHYS_OFFSET
155         hex
156         default 0x10000000 if CPU_AT32AP700X=y
158 source "kernel/Kconfig.preempt"
160 config HAVE_ARCH_BOOTMEM_NODE
161         def_bool n
163 config ARCH_HAVE_MEMORY_PRESENT
164         def_bool n
166 config NEED_NODE_MEMMAP_SIZE
167         def_bool n
169 config ARCH_FLATMEM_ENABLE
170         def_bool y
172 config ARCH_DISCONTIGMEM_ENABLE
173         def_bool n
175 config ARCH_SPARSEMEM_ENABLE
176         def_bool n
178 source "mm/Kconfig"
180 config OWNERSHIP_TRACE
181         bool "Ownership trace support"
182         default y
183         help
184           Say Y to generate an Ownership Trace message on every context switch,
185           enabling Nexus-compliant debuggers to keep track of the PID of the
186           currently executing task.
188 # FPU emulation goes here
190 source "kernel/Kconfig.hz"
192 config CMDLINE
193         string "Default kernel command line"
194         default ""
195         help
196           If you don't have a boot loader capable of passing a command line string
197           to the kernel, you may specify one here. As a minimum, you should specify
198           the memory size and the root device (e.g., mem=8M, root=/dev/nfs).
200 endmenu
202 menu "Power management options"
204 menu "CPU Frequency scaling"
206 source "drivers/cpufreq/Kconfig"
208 config CPU_FREQ_AT32AP
209         bool "CPU frequency driver for AT32AP"
210         depends on CPU_FREQ && PLATFORM_AT32AP
211         default n
212         help
213           This enables the CPU frequency driver for AT32AP processors.
215           For details, take a look in <file:Documentation/cpu-freq>.
217           If in doubt, say N.
219 endmenu
221 endmenu
223 menu "Bus options"
225 config PCI
226         bool
228 source "drivers/pci/Kconfig"
230 source "drivers/pcmcia/Kconfig"
232 endmenu
234 menu "Executable file formats"
235 source "fs/Kconfig.binfmt"
236 endmenu
238 source "net/Kconfig"
240 source "drivers/Kconfig"
242 source "fs/Kconfig"
244 source "kernel/Kconfig.instrumentation"
246 source "arch/avr32/Kconfig.debug"
248 source "security/Kconfig"
250 source "crypto/Kconfig"
252 source "lib/Kconfig"