[ARM] pxa: update defconfig for Verdex Pro
[linux-2.6/verdex.git] / arch / microblaze / Kconfig
blobbbd8327f18901d80d5eefe3e27015f65993a099f
1 # For a description of the syntax of this configuration file,
2 # see Documentation/kbuild/kconfig-language.txt.
4 mainmenu "Linux/Microblaze Kernel Configuration"
6 config MICROBLAZE
7         def_bool y
8         select HAVE_LMB
9         select USB_ARCH_HAS_EHCI
10         select ARCH_WANT_OPTIONAL_GPIOLIB
12 config SWAP
13         def_bool n
15 config RWSEM_GENERIC_SPINLOCK
16         def_bool y
18 config RWSEM_XCHGADD_ALGORITHM
19         bool
21 config ARCH_HAS_ILOG2_U32
22         def_bool n
24 config ARCH_HAS_ILOG2_U64
25         def_bool n
27 config GENERIC_FIND_NEXT_BIT
28         def_bool y
30 config GENERIC_HWEIGHT
31         def_bool y
33 config GENERIC_HARDIRQS
34         def_bool y
36 config GENERIC_IRQ_PROBE
37         def_bool y
39 config GENERIC_CALIBRATE_DELAY
40         def_bool y
42 config GENERIC_TIME
43         def_bool y
45 config GENERIC_TIME_VSYSCALL
46         def_bool n
48 config GENERIC_CLOCKEVENTS
49         def_bool y
51 config GENERIC_HARDIRQS_NO__DO_IRQ
52         def_bool y
54 config GENERIC_GPIO
55         def_bool y
57 config GENERIC_CSUM
58         def_bool y
60 config PCI
61         def_bool n
63 config NO_DMA
64         def_bool y
66 source "init/Kconfig"
68 source "kernel/Kconfig.freezer"
70 source "arch/microblaze/platform/Kconfig.platform"
72 menu "Processor type and features"
74 source kernel/time/Kconfig
76 source "kernel/Kconfig.preempt"
78 source "kernel/Kconfig.hz"
80 config MMU
81         bool "MMU support"
82         default n
84 config NO_MMU
85         bool
86         depends on !MMU
87         default y
89 comment "Boot options"
91 config CMDLINE_BOOL
92         bool "Default bootloader kernel arguments"
94 config CMDLINE
95         string "Default kernel command string"
96         depends on CMDLINE_BOOL
97         default "console=ttyUL0,115200"
98         help
99           On some architectures there is currently no way for the boot loader
100           to pass arguments to the kernel. For these architectures, you should
101           supply some command-line options at build time by entering them
102           here.
104 config CMDLINE_FORCE
105         bool "Force default kernel command string"
106         depends on CMDLINE_BOOL
107         default n
108         help
109           Set this to have arguments from the default kernel command string
110           override those passed by the boot loader.
112 config OF
113         def_bool y
115 config PROC_DEVICETREE
116         bool "Support for device tree in /proc"
117         depends on PROC_FS
118         help
119           This option adds a device-tree directory under /proc which contains
120           an image of the device tree that the kernel copies from Open
121           Firmware or other boot firmware. If unsure, say Y here.
123 endmenu
125 menu "Advanced setup"
127 config ADVANCED_OPTIONS
128         bool "Prompt for advanced kernel configuration options"
129         depends on MMU
130         help
131           This option will enable prompting for a variety of advanced kernel
132           configuration options.  These options can cause the kernel to not
133           work if they are set incorrectly, but can be used to optimize certain
134           aspects of kernel memory management.
136           Unless you know what you are doing, say N here.
138 comment "Default settings for advanced configuration options are used"
139         depends on !ADVANCED_OPTIONS
141 config HIGHMEM_START_BOOL
142         bool "Set high memory pool address"
143         depends on ADVANCED_OPTIONS && HIGHMEM
144         help
145           This option allows you to set the base address of the kernel virtual
146           area used to map high memory pages.  This can be useful in
147           optimizing the layout of kernel virtual memory.
149           Say N here unless you know what you are doing.
151 config HIGHMEM_START
152         hex "Virtual start address of high memory pool" if HIGHMEM_START_BOOL
153         depends on MMU
154         default "0xfe000000"
156 config LOWMEM_SIZE_BOOL
157         bool "Set maximum low memory"
158         depends on ADVANCED_OPTIONS
159         help
160           This option allows you to set the maximum amount of memory which
161           will be used as "low memory", that is, memory which the kernel can
162           access directly, without having to set up a kernel virtual mapping.
163           This can be useful in optimizing the layout of kernel virtual
164           memory.
166           Say N here unless you know what you are doing.
168 config LOWMEM_SIZE
169         hex "Maximum low memory size (in bytes)" if LOWMEM_SIZE_BOOL
170         depends on MMU
171         default "0x30000000"
173 config KERNEL_START_BOOL
174         bool "Set custom kernel base address"
175         depends on ADVANCED_OPTIONS
176         help
177           This option allows you to set the kernel virtual address at which
178           the kernel will map low memory (the kernel image will be linked at
179           this address).  This can be useful in optimizing the virtual memory
180           layout of the system.
182           Say N here unless you know what you are doing.
184 config KERNEL_START
185         hex "Virtual address of kernel base" if KERNEL_START_BOOL
186         default "0xc0000000" if MMU
187         default KERNEL_BASE_ADDR if !MMU
189 config TASK_SIZE_BOOL
190         bool "Set custom user task size"
191         depends on ADVANCED_OPTIONS
192         help
193           This option allows you to set the amount of virtual address space
194           allocated to user tasks.  This can be useful in optimizing the
195           virtual memory layout of the system.
197           Say N here unless you know what you are doing.
199 config TASK_SIZE
200         hex "Size of user task space" if TASK_SIZE_BOOL
201         depends on MMU
202         default "0x80000000"
204 config CONSISTENT_START_BOOL
205         bool "Set custom consistent memory pool address"
206         depends on ADVANCED_OPTIONS && NOT_COHERENT_CACHE
207         help
208           This option allows you to set the base virtual address
209           of the the consistent memory pool.  This pool of virtual
210           memory is used to make consistent memory allocations.
212 config CONSISTENT_START
213         hex "Base virtual address of consistent memory pool" if CONSISTENT_START_BOOL
214         depends on MMU
215         default "0xff100000" if NOT_COHERENT_CACHE
217 config CONSISTENT_SIZE_BOOL
218         bool "Set custom consistent memory pool size"
219         depends on ADVANCED_OPTIONS && NOT_COHERENT_CACHE
220         help
221           This option allows you to set the size of the the
222           consistent memory pool.  This pool of virtual memory
223           is used to make consistent memory allocations.
225 config CONSISTENT_SIZE
226         hex "Size of consistent memory pool" if CONSISTENT_SIZE_BOOL
227         depends on MMU
228         default "0x00200000" if NOT_COHERENT_CACHE
230 endmenu
232 source "mm/Kconfig"
234 menu "Exectuable file formats"
236 source "fs/Kconfig.binfmt"
238 endmenu
240 source "net/Kconfig"
242 source "drivers/Kconfig"
244 source "fs/Kconfig"
246 source "arch/microblaze/Kconfig.debug"
248 source "security/Kconfig"
250 source "crypto/Kconfig"
252 source "lib/Kconfig"