cpu: Do not return errors from cpu_dev_init() which will be ignored
[deliverable/linux.git] / arch / microblaze / Kconfig
... / ...
CommitLineData
1config MICROBLAZE
2 def_bool y
3 select HAVE_MEMBLOCK
4 select HAVE_FUNCTION_TRACER
5 select HAVE_FUNCTION_TRACE_MCOUNT_TEST
6 select HAVE_FUNCTION_GRAPH_TRACER
7 select HAVE_DYNAMIC_FTRACE
8 select HAVE_FTRACE_MCOUNT_RECORD
9 select ARCH_WANT_OPTIONAL_GPIOLIB
10 select HAVE_OPROFILE
11 select HAVE_ARCH_KGDB
12 select HAVE_DMA_ATTRS
13 select HAVE_DMA_API_DEBUG
14 select TRACING_SUPPORT
15 select OF
16 select OF_EARLY_FLATTREE
17 select HAVE_GENERIC_HARDIRQS
18 select GENERIC_IRQ_PROBE
19 select GENERIC_IRQ_SHOW
20 select GENERIC_PCI_IOMAP
21
22config SWAP
23 def_bool n
24
25config RWSEM_GENERIC_SPINLOCK
26 def_bool y
27
28config RWSEM_XCHGADD_ALGORITHM
29 bool
30
31config ARCH_HAS_ILOG2_U32
32 def_bool n
33
34config ARCH_HAS_ILOG2_U64
35 def_bool n
36
37config GENERIC_HWEIGHT
38 def_bool y
39
40config GENERIC_CALIBRATE_DELAY
41 def_bool y
42
43config GENERIC_TIME_VSYSCALL
44 def_bool n
45
46config GENERIC_CLOCKEVENTS
47 def_bool y
48
49config GENERIC_GPIO
50 def_bool y
51
52config GENERIC_CSUM
53 def_bool y
54
55config STACKTRACE_SUPPORT
56 def_bool y
57
58config LOCKDEP_SUPPORT
59 def_bool y
60
61config HAVE_LATENCYTOP_SUPPORT
62 def_bool y
63
64source "init/Kconfig"
65
66source "kernel/Kconfig.freezer"
67
68source "arch/microblaze/platform/Kconfig.platform"
69
70menu "Processor type and features"
71
72source "kernel/time/Kconfig"
73
74source "kernel/Kconfig.preempt"
75
76source "kernel/Kconfig.hz"
77
78config MMU
79 bool "MMU support"
80 default n
81
82config NO_MMU
83 bool
84 depends on !MMU
85 default y
86
87comment "Boot options"
88
89config CMDLINE_BOOL
90 bool "Default bootloader kernel arguments"
91
92config CMDLINE
93 string "Default kernel command string"
94 depends on CMDLINE_BOOL
95 default "console=ttyUL0,115200"
96 help
97 On some architectures there is currently no way for the boot loader
98 to pass arguments to the kernel. For these architectures, you should
99 supply some command-line options at build time by entering them
100 here.
101
102config CMDLINE_FORCE
103 bool "Force default kernel command string"
104 depends on CMDLINE_BOOL
105 default n
106 help
107 Set this to have arguments from the default kernel command string
108 override those passed by the boot loader.
109
110config SECCOMP
111 bool "Enable seccomp to safely compute untrusted bytecode"
112 depends on PROC_FS
113 default y
114 help
115 This kernel feature is useful for number crunching applications
116 that may need to compute untrusted bytecode during their
117 execution. By using pipes or other transports made available to
118 the process as file descriptors supporting the read/write
119 syscalls, it's possible to isolate those applications in
120 their own address space using seccomp. Once seccomp is
121 enabled via /proc/<pid>/seccomp, it cannot be disabled
122 and the task is only allowed to execute a few safe syscalls
123 defined by each seccomp mode.
124
125 If unsure, say Y. Only embedded should say N here.
126
127endmenu
128
129menu "Advanced setup"
130
131config ADVANCED_OPTIONS
132 bool "Prompt for advanced kernel configuration options"
133 help
134 This option will enable prompting for a variety of advanced kernel
135 configuration options. These options can cause the kernel to not
136 work if they are set incorrectly, but can be used to optimize certain
137 aspects of kernel memory management.
138
139 Unless you know what you are doing, say N here.
140
141comment "Default settings for advanced configuration options are used"
142 depends on !ADVANCED_OPTIONS
143
144config XILINX_UNCACHED_SHADOW
145 bool "Are you using uncached shadow for RAM ?"
146 depends on ADVANCED_OPTIONS && !MMU
147 default n
148 help
149 This is needed to be able to allocate uncachable memory regions.
150 The feature requires the design to define the RAM memory controller
151 window to be twice as large as the actual physical memory.
152
153config HIGHMEM_START_BOOL
154 bool "Set high memory pool address"
155 depends on ADVANCED_OPTIONS && HIGHMEM
156 help
157 This option allows you to set the base address of the kernel virtual
158 area used to map high memory pages. This can be useful in
159 optimizing the layout of kernel virtual memory.
160
161 Say N here unless you know what you are doing.
162
163config HIGHMEM_START
164 hex "Virtual start address of high memory pool" if HIGHMEM_START_BOOL
165 depends on MMU
166 default "0xfe000000"
167
168config LOWMEM_SIZE_BOOL
169 bool "Set maximum low memory"
170 depends on ADVANCED_OPTIONS && MMU
171 help
172 This option allows you to set the maximum amount of memory which
173 will be used as "low memory", that is, memory which the kernel can
174 access directly, without having to set up a kernel virtual mapping.
175 This can be useful in optimizing the layout of kernel virtual
176 memory.
177
178 Say N here unless you know what you are doing.
179
180config LOWMEM_SIZE
181 hex "Maximum low memory size (in bytes)" if LOWMEM_SIZE_BOOL
182 default "0x30000000"
183
184config MANUAL_RESET_VECTOR
185 hex "Microblaze reset vector address setup"
186 default "0x0"
187 help
188 Set this option to have the kernel override the CPU Reset vector.
189 If zero, no change will be made to the MicroBlaze reset vector at
190 address 0x0.
191 If non-zero, a jump instruction to this address, will be written
192 to the reset vector at address 0x0.
193 If you are unsure, set it to default value 0x0.
194
195config KERNEL_START_BOOL
196 bool "Set custom kernel base address"
197 depends on ADVANCED_OPTIONS
198 help
199 This option allows you to set the kernel virtual address at which
200 the kernel will map low memory (the kernel image will be linked at
201 this address). This can be useful in optimizing the virtual memory
202 layout of the system.
203
204 Say N here unless you know what you are doing.
205
206config KERNEL_START
207 hex "Virtual address of kernel base" if KERNEL_START_BOOL
208 default "0xc0000000" if MMU
209 default KERNEL_BASE_ADDR if !MMU
210
211config TASK_SIZE_BOOL
212 bool "Set custom user task size"
213 depends on ADVANCED_OPTIONS && MMU
214 help
215 This option allows you to set the amount of virtual address space
216 allocated to user tasks. This can be useful in optimizing the
217 virtual memory layout of the system.
218
219 Say N here unless you know what you are doing.
220
221config TASK_SIZE
222 hex "Size of user task space" if TASK_SIZE_BOOL
223 default "0x80000000"
224
225choice
226 prompt "Page size"
227 default MICROBLAZE_4K_PAGES
228 depends on ADVANCED_OPTIONS && !MMU
229 help
230 Select the kernel logical page size. Increasing the page size
231 will reduce software overhead at each page boundary, allow
232 hardware prefetch mechanisms to be more effective, and allow
233 larger dma transfers increasing IO efficiency and reducing
234 overhead. However the utilization of memory will increase.
235 For example, each cached file will using a multiple of the
236 page size to hold its contents and the difference between the
237 end of file and the end of page is wasted.
238
239 If unsure, choose 4K_PAGES.
240
241config MICROBLAZE_4K_PAGES
242 bool "4k page size"
243
244config MICROBLAZE_8K_PAGES
245 bool "8k page size"
246
247config MICROBLAZE_16K_PAGES
248 bool "16k page size"
249
250config MICROBLAZE_32K_PAGES
251 bool "32k page size"
252
253endchoice
254
255endmenu
256
257source "mm/Kconfig"
258
259menu "Executable file formats"
260
261source "fs/Kconfig.binfmt"
262
263endmenu
264
265menu "Bus Options"
266
267config PCI
268 bool "PCI support"
269
270config PCI_DOMAINS
271 def_bool PCI
272
273config PCI_SYSCALL
274 def_bool PCI
275
276config PCI_XILINX
277 bool "Xilinx PCI host bridge support"
278 depends on PCI
279
280source "drivers/pci/Kconfig"
281
282endmenu
283
284source "net/Kconfig"
285
286source "drivers/Kconfig"
287
288source "fs/Kconfig"
289
290source "arch/microblaze/Kconfig.debug"
291
292source "security/Kconfig"
293
294source "crypto/Kconfig"
295
296source "lib/Kconfig"
This page took 0.031861 seconds and 5 git commands to generate.