Merge branch 'cris' of git://www.jni.nu/cris
[deliverable/linux.git] / arch / avr32 / Kconfig
CommitLineData
5f97f7f9
HS
1#
2# For a description of the syntax of this configuration file,
3# see Documentation/kbuild/kconfig-language.txt.
4#
5
6mainmenu "Linux Kernel Configuration"
7
8config AVR32
58bd2bfe 9 def_bool y
5f97f7f9
HS
10 # With EMBEDDED=n, we get lots of stuff automatically selected
11 # that we usually don't need on AVR32.
12 select EMBEDDED
42d4b839 13 select HAVE_OPROFILE
3f550096 14 select HAVE_KPROBES
5f97f7f9
HS
15 help
16 AVR32 is a high-performance 32-bit RISC microprocessor core,
17 designed for cost-sensitive embedded applications, with particular
18 emphasis on low power consumption and high code density.
19
20 There is an AVR32 Linux project with a web page at
21 http://avr32linux.org/.
22
0a938b97 23config GENERIC_GPIO
58bd2bfe 24 def_bool y
0a938b97 25
5f97f7f9 26config GENERIC_HARDIRQS
58bd2bfe 27 def_bool y
5f97f7f9 28
2f026037
HS
29config STACKTRACE_SUPPORT
30 def_bool y
31
320516b7
HS
32config LOCKDEP_SUPPORT
33 def_bool y
34
35config TRACE_IRQFLAGS_SUPPORT
36 def_bool y
37
5f97f7f9 38config HARDIRQS_SW_RESEND
58bd2bfe 39 def_bool y
5f97f7f9
HS
40
41config GENERIC_IRQ_PROBE
58bd2bfe 42 def_bool y
5f97f7f9
HS
43
44config RWSEM_GENERIC_SPINLOCK
58bd2bfe 45 def_bool y
5f97f7f9
HS
46
47config GENERIC_TIME
58bd2bfe 48 def_bool y
5f97f7f9
HS
49
50config RWSEM_XCHGADD_ALGORITHM
58bd2bfe 51 def_bool n
5f97f7f9 52
f0d1b0b3 53config ARCH_HAS_ILOG2_U32
58bd2bfe 54 def_bool n
f0d1b0b3
DH
55
56config ARCH_HAS_ILOG2_U64
58bd2bfe 57 def_bool n
f0d1b0b3 58
5f97f7f9 59config GENERIC_HWEIGHT
58bd2bfe 60 def_bool y
5f97f7f9
HS
61
62config GENERIC_CALIBRATE_DELAY
58bd2bfe 63 def_bool y
5f97f7f9 64
623b0355 65config GENERIC_BUG
58bd2bfe 66 def_bool y
623b0355
HS
67 depends on BUG
68
5f97f7f9
HS
69source "init/Kconfig"
70
71menu "System Type and features"
72
73config SUBARCH_AVR32B
74 bool
75config MMU
76 bool
77config PERFORMANCE_COUNTERS
78 bool
79
80config PLATFORM_AT32AP
81 bool
82 select SUBARCH_AVR32B
83 select MMU
84 select PERFORMANCE_COUNTERS
b98348bd 85 select HAVE_GPIO_LIB
5f97f7f9 86
e8897bfe
HS
87#
88# CPU types
89#
90
91# AP7000 derivatives
438ff3f3
HS
92config CPU_AT32AP700X
93 bool
94 select PLATFORM_AT32AP
5f97f7f9 95config CPU_AT32AP7000
e8897bfe 96 bool
438ff3f3 97 select CPU_AT32AP700X
438ff3f3 98config CPU_AT32AP7001
e8897bfe 99 bool
438ff3f3 100 select CPU_AT32AP700X
438ff3f3 101config CPU_AT32AP7002
78693e47 102 bool
e8897bfe 103 select CPU_AT32AP700X
5f97f7f9
HS
104
105choice
106 prompt "AVR32 board type"
107 default BOARD_ATSTK1000
108
109config BOARD_ATSTK1000
110 bool "ATSTK1000 evaluation board"
9ca20a83
HS
111
112config BOARD_ATNGW100
113 bool "ATNGW100 Network Gateway"
e8897bfe 114 select CPU_AT32AP7000
5f97f7f9
HS
115endchoice
116
a8e93ed8
DB
117if BOARD_ATSTK1000
118source "arch/avr32/boards/atstk1000/Kconfig"
119endif
120
5f97f7f9
HS
121choice
122 prompt "Boot loader type"
123 default LOADER_U_BOOT
124
125config LOADER_U_BOOT
126 bool "U-Boot (or similar) bootloader"
127endchoice
128
228e845f
HS
129source "arch/avr32/mach-at32ap/Kconfig"
130
5f97f7f9
HS
131config LOAD_ADDRESS
132 hex
438ff3f3 133 default 0x10000000 if LOADER_U_BOOT=y && CPU_AT32AP700X=y
5f97f7f9
HS
134
135config ENTRY_ADDRESS
136 hex
438ff3f3 137 default 0x90000000 if LOADER_U_BOOT=y && CPU_AT32AP700X=y
5f97f7f9
HS
138
139config PHYS_OFFSET
140 hex
438ff3f3 141 default 0x10000000 if CPU_AT32AP700X=y
5f97f7f9
HS
142
143source "kernel/Kconfig.preempt"
144
145config HAVE_ARCH_BOOTMEM_NODE
58bd2bfe 146 def_bool n
5f97f7f9
HS
147
148config ARCH_HAVE_MEMORY_PRESENT
58bd2bfe 149 def_bool n
5f97f7f9
HS
150
151config NEED_NODE_MEMMAP_SIZE
58bd2bfe 152 def_bool n
5f97f7f9
HS
153
154config ARCH_FLATMEM_ENABLE
58bd2bfe 155 def_bool y
5f97f7f9
HS
156
157config ARCH_DISCONTIGMEM_ENABLE
58bd2bfe 158 def_bool n
5f97f7f9
HS
159
160config ARCH_SPARSEMEM_ENABLE
58bd2bfe 161 def_bool n
5f97f7f9
HS
162
163source "mm/Kconfig"
164
165config OWNERSHIP_TRACE
166 bool "Ownership trace support"
167 default y
168 help
169 Say Y to generate an Ownership Trace message on every context switch,
170 enabling Nexus-compliant debuggers to keep track of the PID of the
171 currently executing task.
172
e7ba176b
HS
173config NMI_DEBUGGING
174 bool "NMI Debugging"
175 default n
176 help
177 Say Y here and pass the nmi_debug command-line parameter to
178 the kernel to turn on NMI debugging. Depending on the value
179 of the nmi_debug option, various pieces of information will
180 be dumped to the console when a Non-Maskable Interrupt
181 happens.
182
5f97f7f9
HS
183# FPU emulation goes here
184
185source "kernel/Kconfig.hz"
186
187config CMDLINE
188 string "Default kernel command line"
189 default ""
190 help
191 If you don't have a boot loader capable of passing a command line string
192 to the kernel, you may specify one here. As a minimum, you should specify
193 the memory size and the root device (e.g., mem=8M, root=/dev/nfs).
194
195endmenu
196
01dd2fbf 197menu "Power management options"
9e58e185
HCE
198
199menu "CPU Frequency scaling"
200
201source "drivers/cpufreq/Kconfig"
202
203config CPU_FREQ_AT32AP
204 bool "CPU frequency driver for AT32AP"
205 depends on CPU_FREQ && PLATFORM_AT32AP
206 default n
207 help
208 This enables the CPU frequency driver for AT32AP processors.
209
210 For details, take a look in <file:Documentation/cpu-freq>.
211
212 If in doubt, say N.
213
214endmenu
215
216endmenu
217
5f97f7f9
HS
218menu "Bus options"
219
220config PCI
221 bool
222
223source "drivers/pci/Kconfig"
224
225source "drivers/pcmcia/Kconfig"
226
227endmenu
228
229menu "Executable file formats"
230source "fs/Kconfig.binfmt"
231endmenu
232
233source "net/Kconfig"
234
235source "drivers/Kconfig"
236
237source "fs/Kconfig"
238
239source "arch/avr32/Kconfig.debug"
240
241source "security/Kconfig"
242
243source "crypto/Kconfig"
244
245source "lib/Kconfig"
This page took 0.201506 seconds and 5 git commands to generate.