Blame view

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