[AVR32] Provide more CPU information in /proc/cpuinfo and dmesg
[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
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.
17
18 There is an AVR32 Linux project with a web page at
19 http://avr32linux.org/.
20
0a938b97 21config GENERIC_GPIO
58bd2bfe 22 def_bool y
0a938b97 23
5f97f7f9 24config GENERIC_HARDIRQS
58bd2bfe 25 def_bool y
5f97f7f9 26
2f026037
HS
27config STACKTRACE_SUPPORT
28 def_bool y
29
320516b7
HS
30config LOCKDEP_SUPPORT
31 def_bool y
32
33config TRACE_IRQFLAGS_SUPPORT
34 def_bool y
35
5f97f7f9 36config HARDIRQS_SW_RESEND
58bd2bfe 37 def_bool y
5f97f7f9
HS
38
39config GENERIC_IRQ_PROBE
58bd2bfe 40 def_bool y
5f97f7f9
HS
41
42config RWSEM_GENERIC_SPINLOCK
58bd2bfe 43 def_bool y
5f97f7f9
HS
44
45config GENERIC_TIME
58bd2bfe 46 def_bool y
5f97f7f9
HS
47
48config RWSEM_XCHGADD_ALGORITHM
58bd2bfe 49 def_bool n
5f97f7f9 50
f0d1b0b3 51config ARCH_HAS_ILOG2_U32
58bd2bfe 52 def_bool n
f0d1b0b3
DH
53
54config ARCH_HAS_ILOG2_U64
58bd2bfe 55 def_bool n
f0d1b0b3 56
2853ce5e
HS
57config ARCH_SUPPORTS_OPROFILE
58 def_bool y
59
5f97f7f9 60config GENERIC_HWEIGHT
58bd2bfe 61 def_bool y
5f97f7f9
HS
62
63config GENERIC_CALIBRATE_DELAY
58bd2bfe 64 def_bool y
5f97f7f9 65
623b0355 66config GENERIC_BUG
58bd2bfe 67 def_bool y
623b0355
HS
68 depends on BUG
69
5f97f7f9
HS
70source "init/Kconfig"
71
72menu "System Type and features"
73
74config SUBARCH_AVR32B
75 bool
76config MMU
77 bool
78config PERFORMANCE_COUNTERS
79 bool
80
81config PLATFORM_AT32AP
82 bool
83 select SUBARCH_AVR32B
84 select MMU
85 select PERFORMANCE_COUNTERS
86
87choice
88 prompt "AVR32 CPU type"
89 default CPU_AT32AP7000
90
91config CPU_AT32AP7000
92 bool "AT32AP7000"
93 select PLATFORM_AT32AP
94endchoice
95
96#
97# CPU Daughterboards for ATSTK1000
98config BOARD_ATSTK1002
99 bool
100
101choice
102 prompt "AVR32 board type"
103 default BOARD_ATSTK1000
104
105config BOARD_ATSTK1000
106 bool "ATSTK1000 evaluation board"
107 select BOARD_ATSTK1002 if CPU_AT32AP7000
9ca20a83
HS
108
109config BOARD_ATNGW100
110 bool "ATNGW100 Network Gateway"
5f97f7f9
HS
111endchoice
112
a8e93ed8
DB
113if BOARD_ATSTK1000
114source "arch/avr32/boards/atstk1000/Kconfig"
115endif
116
5f97f7f9
HS
117choice
118 prompt "Boot loader type"
119 default LOADER_U_BOOT
120
121config LOADER_U_BOOT
122 bool "U-Boot (or similar) bootloader"
123endchoice
124
228e845f
HS
125source "arch/avr32/mach-at32ap/Kconfig"
126
5f97f7f9
HS
127config LOAD_ADDRESS
128 hex
129 default 0x10000000 if LOADER_U_BOOT=y && CPU_AT32AP7000=y
130
131config ENTRY_ADDRESS
132 hex
133 default 0x90000000 if LOADER_U_BOOT=y && CPU_AT32AP7000=y
134
135config PHYS_OFFSET
136 hex
137 default 0x10000000 if CPU_AT32AP7000=y
138
139source "kernel/Kconfig.preempt"
140
141config HAVE_ARCH_BOOTMEM_NODE
58bd2bfe 142 def_bool n
5f97f7f9
HS
143
144config ARCH_HAVE_MEMORY_PRESENT
58bd2bfe 145 def_bool n
5f97f7f9
HS
146
147config NEED_NODE_MEMMAP_SIZE
58bd2bfe 148 def_bool n
5f97f7f9
HS
149
150config ARCH_FLATMEM_ENABLE
58bd2bfe 151 def_bool y
5f97f7f9
HS
152
153config ARCH_DISCONTIGMEM_ENABLE
58bd2bfe 154 def_bool n
5f97f7f9
HS
155
156config ARCH_SPARSEMEM_ENABLE
58bd2bfe 157 def_bool n
5f97f7f9
HS
158
159source "mm/Kconfig"
160
161config OWNERSHIP_TRACE
162 bool "Ownership trace support"
163 default y
164 help
165 Say Y to generate an Ownership Trace message on every context switch,
166 enabling Nexus-compliant debuggers to keep track of the PID of the
167 currently executing task.
168
169# FPU emulation goes here
170
171source "kernel/Kconfig.hz"
172
173config CMDLINE
174 string "Default kernel command line"
175 default ""
176 help
177 If you don't have a boot loader capable of passing a command line string
178 to the kernel, you may specify one here. As a minimum, you should specify
179 the memory size and the root device (e.g., mem=8M, root=/dev/nfs).
180
181endmenu
182
01dd2fbf 183menu "Power management options"
9e58e185
HCE
184
185menu "CPU Frequency scaling"
186
187source "drivers/cpufreq/Kconfig"
188
189config CPU_FREQ_AT32AP
190 bool "CPU frequency driver for AT32AP"
191 depends on CPU_FREQ && PLATFORM_AT32AP
192 default n
193 help
194 This enables the CPU frequency driver for AT32AP processors.
195
196 For details, take a look in <file:Documentation/cpu-freq>.
197
198 If in doubt, say N.
199
200endmenu
201
202endmenu
203
5f97f7f9
HS
204menu "Bus options"
205
206config PCI
207 bool
208
209source "drivers/pci/Kconfig"
210
211source "drivers/pcmcia/Kconfig"
212
213endmenu
214
215menu "Executable file formats"
216source "fs/Kconfig.binfmt"
217endmenu
218
219source "net/Kconfig"
220
221source "drivers/Kconfig"
222
223source "fs/Kconfig"
224
a7f5bf9b
HS
225source "kernel/Kconfig.instrumentation"
226
5f97f7f9
HS
227source "arch/avr32/Kconfig.debug"
228
229source "security/Kconfig"
230
231source "crypto/Kconfig"
232
233source "lib/Kconfig"
This page took 0.2356 seconds and 5 git commands to generate.