Kconfig 4.5 KB
Newer Older
H
Haavard Skinnemoen 已提交
1 2 3 4 5 6 7 8
#
# For a description of the syntax of this configuration file,
# see Documentation/kbuild/kconfig-language.txt.
#

mainmenu "Linux Kernel Configuration"

config AVR32
9
	def_bool y
H
Haavard Skinnemoen 已提交
10 11 12
	# With EMBEDDED=n, we get lots of stuff automatically selected
	# that we usually don't need on AVR32.
	select EMBEDDED
13
	select HAVE_CLK
M
Mathieu Desnoyers 已提交
14
	select HAVE_OPROFILE
M
Mathieu Desnoyers 已提交
15
	select HAVE_KPROBES
H
Haavard Skinnemoen 已提交
16 17 18 19 20 21 22 23
	help
	  AVR32 is a high-performance 32-bit RISC microprocessor core,
	  designed for cost-sensitive embedded applications, with particular
	  emphasis on low power consumption and high code density.

	  There is an AVR32 Linux project with a web page at
	  http://avr32linux.org/.

D
David Brownell 已提交
24
config GENERIC_GPIO
25
	def_bool y
D
David Brownell 已提交
26

H
Haavard Skinnemoen 已提交
27
config GENERIC_HARDIRQS
28
	def_bool y
H
Haavard Skinnemoen 已提交
29

30 31 32
config STACKTRACE_SUPPORT
	def_bool y

33 34 35 36 37 38
config LOCKDEP_SUPPORT
	def_bool y

config TRACE_IRQFLAGS_SUPPORT
	def_bool y

H
Haavard Skinnemoen 已提交
39
config HARDIRQS_SW_RESEND
40
	def_bool y
H
Haavard Skinnemoen 已提交
41 42

config GENERIC_IRQ_PROBE
43
	def_bool y
H
Haavard Skinnemoen 已提交
44 45

config RWSEM_GENERIC_SPINLOCK
46
	def_bool y
H
Haavard Skinnemoen 已提交
47 48

config GENERIC_TIME
49
	def_bool y
H
Haavard Skinnemoen 已提交
50

51 52 53
config GENERIC_CLOCKEVENTS
	def_bool y

H
Haavard Skinnemoen 已提交
54
config RWSEM_XCHGADD_ALGORITHM
55
	def_bool n
H
Haavard Skinnemoen 已提交
56

57
config ARCH_HAS_ILOG2_U32
58
	def_bool n
59 60

config ARCH_HAS_ILOG2_U64
61
	def_bool n
62

H
Haavard Skinnemoen 已提交
63
config GENERIC_HWEIGHT
64
	def_bool y
H
Haavard Skinnemoen 已提交
65 66

config GENERIC_CALIBRATE_DELAY
67
	def_bool y
H
Haavard Skinnemoen 已提交
68

69
config GENERIC_BUG
70
	def_bool y
71 72
	depends on BUG

H
Haavard Skinnemoen 已提交
73 74 75 76
source "init/Kconfig"

menu "System Type and features"

77 78
source "kernel/time/Kconfig"

H
Haavard Skinnemoen 已提交
79 80 81 82 83 84 85 86 87 88 89 90
config SUBARCH_AVR32B
	bool
config MMU
	bool
config PERFORMANCE_COUNTERS
	bool

config PLATFORM_AT32AP
	bool
	select SUBARCH_AVR32B
	select MMU
	select PERFORMANCE_COUNTERS
M
Michael Buesch 已提交
91
	select ARCH_REQUIRE_GPIOLIB
92
	select GENERIC_ALLOCATOR
H
Haavard Skinnemoen 已提交
93

94 95 96 97 98
#
# CPU types
#

# AP7000 derivatives
99 100 101
config CPU_AT32AP700X
	bool
	select PLATFORM_AT32AP
H
Haavard Skinnemoen 已提交
102
config CPU_AT32AP7000
103
	bool
104 105
	select CPU_AT32AP700X
config CPU_AT32AP7001
106
	bool
107 108
	select CPU_AT32AP700X
config CPU_AT32AP7002
109
	bool
110
	select CPU_AT32AP700X
H
Haavard Skinnemoen 已提交
111 112 113 114 115 116 117

choice
	prompt "AVR32 board type"
	default BOARD_ATSTK1000

config BOARD_ATSTK1000
	bool "ATSTK1000 evaluation board"
118 119 120

config BOARD_ATNGW100
	bool "ATNGW100 Network Gateway"
121
	select CPU_AT32AP7000
H
Haavard Skinnemoen 已提交
122 123
endchoice

124 125 126 127
if BOARD_ATSTK1000
source "arch/avr32/boards/atstk1000/Kconfig"
endif

H
Haavard Skinnemoen 已提交
128 129 130 131 132 133 134 135
choice
	prompt "Boot loader type"
	default LOADER_U_BOOT

config	LOADER_U_BOOT
	bool "U-Boot (or similar) bootloader"
endchoice

136 137
source "arch/avr32/mach-at32ap/Kconfig"

H
Haavard Skinnemoen 已提交
138 139
config LOAD_ADDRESS
	hex
140
	default 0x10000000 if LOADER_U_BOOT=y && CPU_AT32AP700X=y
H
Haavard Skinnemoen 已提交
141 142 143

config ENTRY_ADDRESS
	hex
144
	default 0x90000000 if LOADER_U_BOOT=y && CPU_AT32AP700X=y
H
Haavard Skinnemoen 已提交
145 146 147

config PHYS_OFFSET
	hex
148
	default 0x10000000 if CPU_AT32AP700X=y
H
Haavard Skinnemoen 已提交
149 150 151

source "kernel/Kconfig.preempt"

152 153 154
config QUICKLIST
	def_bool y

H
Haavard Skinnemoen 已提交
155
config HAVE_ARCH_BOOTMEM_NODE
156
	def_bool n
H
Haavard Skinnemoen 已提交
157 158

config ARCH_HAVE_MEMORY_PRESENT
159
	def_bool n
H
Haavard Skinnemoen 已提交
160 161

config NEED_NODE_MEMMAP_SIZE
162
	def_bool n
H
Haavard Skinnemoen 已提交
163 164

config ARCH_FLATMEM_ENABLE
165
	def_bool y
H
Haavard Skinnemoen 已提交
166 167

config ARCH_DISCONTIGMEM_ENABLE
168
	def_bool n
H
Haavard Skinnemoen 已提交
169 170

config ARCH_SPARSEMEM_ENABLE
171
	def_bool n
H
Haavard Skinnemoen 已提交
172 173 174 175 176 177 178 179 180 181 182

source "mm/Kconfig"

config OWNERSHIP_TRACE
	bool "Ownership trace support"
	default y
	help
	  Say Y to generate an Ownership Trace message on every context switch,
	  enabling Nexus-compliant debuggers to keep track of the PID of the
	  currently executing task.

H
Haavard Skinnemoen 已提交
183 184 185 186 187 188 189 190 191 192
config NMI_DEBUGGING
	bool "NMI Debugging"
	default n
	help
	  Say Y here and pass the nmi_debug command-line parameter to
	  the kernel to turn on NMI debugging. Depending on the value
	  of the nmi_debug option, various pieces of information will
	  be dumped to the console when a Non-Maskable Interrupt
	  happens.

H
Haavard Skinnemoen 已提交
193 194 195 196 197 198 199 200 201 202 203 204 205 206
# FPU emulation goes here

source "kernel/Kconfig.hz"

config CMDLINE
	string "Default kernel command line"
	default ""
	help
	  If you don't have a boot loader capable of passing a command line string
	  to the kernel, you may specify one here. As a minimum, you should specify
	  the memory size and the root device (e.g., mem=8M, root=/dev/nfs).

endmenu

M
Matt LaPlante 已提交
207
menu "Power management options"
208

209 210 211 212 213
source "kernel/power/Kconfig"

config ARCH_SUSPEND_POSSIBLE
	def_bool y

214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
menu "CPU Frequency scaling"

source "drivers/cpufreq/Kconfig"

config CPU_FREQ_AT32AP
	bool "CPU frequency driver for AT32AP"
	depends on CPU_FREQ && PLATFORM_AT32AP
	default n
	help
	  This enables the CPU frequency driver for AT32AP processors.

	  For details, take a look in <file:Documentation/cpu-freq>.

	  If in doubt, say N.

endmenu

endmenu

H
Haavard Skinnemoen 已提交
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
menu "Bus options"

config PCI
	bool

source "drivers/pci/Kconfig"

source "drivers/pcmcia/Kconfig"

endmenu

menu "Executable file formats"
source "fs/Kconfig.binfmt"
endmenu

source "net/Kconfig"

source "drivers/Kconfig"

source "fs/Kconfig"

source "arch/avr32/Kconfig.debug"

source "security/Kconfig"

source "crypto/Kconfig"

source "lib/Kconfig"