blob: 137dfa96aa14e1c8c3a9c1d7b50b21d910cabae4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001menu "Kernel hacking"
2
Ingo Molnar55f327f2006-07-03 00:24:43 -07003config TRACE_IRQFLAGS_SUPPORT
Randy Dunlapd013a272007-10-24 15:50:43 -07004 def_bool y
Ingo Molnar55f327f2006-07-03 00:24:43 -07005
Linus Torvalds1da177e2005-04-16 15:20:36 -07006source "lib/Kconfig.debug"
7
Ingo Molnard0926332008-07-18 00:26:59 +02008config STRICT_DEVMEM
Stefan Richter16104b552008-06-05 22:47:13 +02009 bool "Filter access to /dev/mem"
Ingo Molnar8f9ca472009-02-05 16:21:53 +010010 ---help---
Linus Torvaldsf2d0f1d2008-07-21 13:04:08 -070011 If this option is disabled, you allow userspace (root) access to all
Stefan Richter16104b552008-06-05 22:47:13 +020012 of memory, including kernel and userspace memory. Accidental
13 access to this is obviously disastrous, but specific access can
Ingo Molnard0926332008-07-18 00:26:59 +020014 be used by people debugging the kernel. Note that with PAT support
15 enabled, even in this case there are restrictions on /dev/mem
16 use due to the cache aliasing requirements.
Stefan Richter16104b552008-06-05 22:47:13 +020017
18 If this option is switched on, the /dev/mem file only allows
19 userspace access to PCI space and the BIOS code and data regions.
20 This is sufficient for dosemu and X and all common users of
21 /dev/mem.
22
23 If in doubt, say Y.
Arjan van de Venae531c22008-04-24 23:40:47 +020024
Ben Collins6bcb13b2008-06-18 14:04:35 -040025config X86_VERBOSE_BOOTUP
26 bool "Enable verbose x86 bootup info messages"
27 default y
Ingo Molnar8f9ca472009-02-05 16:21:53 +010028 ---help---
Ben Collins6bcb13b2008-06-18 14:04:35 -040029 Enables the informational output from the decompression stage
30 (e.g. bzImage) of the boot. If you disable this you will still
31 see errors. Disable this if you want silent bootup.
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033config EARLY_PRINTK
David Rientjes6a108a12011-01-20 14:44:16 -080034 bool "Early printk" if EXPERT
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 default y
Ingo Molnar8f9ca472009-02-05 16:21:53 +010036 ---help---
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 Write kernel log output directly into the VGA buffer or to a serial
38 port.
39
40 This is useful for kernel debugging when your machine crashes very
41 early before the console code is initialized. For normal operation
42 it is not recommended because it looks ugly and doesn't cooperate
43 with klogd/syslogd or the X server. You should normally N here,
44 unless you want to debug such a crash.
45
Yinghai Lu5c059172008-07-24 17:29:40 -070046config EARLY_PRINTK_DBGP
47 bool "Early printk via EHCI debug port"
Ingo Molnar97499862008-07-26 17:28:11 +020048 depends on EARLY_PRINTK && PCI
Ingo Molnar8f9ca472009-02-05 16:21:53 +010049 ---help---
Yinghai Lu5c059172008-07-24 17:29:40 -070050 Write kernel log output directly into the EHCI debug port.
51
52 This is useful for kernel debugging when your machine crashes very
53 early before the console code is initialized. For normal operation
54 it is not recommended because it looks ugly and doesn't cooperate
55 with klogd/syslogd or the X server. You should normally N here,
56 unless you want to debug such a crash. You need usb debug device.
57
Matt Fleming72548e82013-10-04 09:36:56 +010058config EARLY_PRINTK_EFI
59 bool "Early printk via the EFI framebuffer"
60 depends on EFI && EARLY_PRINTK
61 select FONT_SUPPORT
62 ---help---
63 Write kernel log output directly into the EFI framebuffer.
64
65 This is useful for kernel debugging when your machine crashes very
66 early before the console code is initialized.
67
Stephen Smalleye1a58322015-10-05 12:55:20 -040068config X86_PTDUMP_CORE
69 def_bool n
70
Arjan van de Ven926e5392008-04-17 17:40:45 +020071config X86_PTDUMP
72 bool "Export kernel pagetable layout to userspace via debugfs"
H. Peter Anvinfe770bf02008-04-17 17:40:45 +020073 depends on DEBUG_KERNEL
Arjan van de Ven926e5392008-04-17 17:40:45 +020074 select DEBUG_FS
Stephen Smalleye1a58322015-10-05 12:55:20 -040075 select X86_PTDUMP_CORE
Ingo Molnar8f9ca472009-02-05 16:21:53 +010076 ---help---
Arjan van de Ven926e5392008-04-17 17:40:45 +020077 Say Y here if you want to show the kernel pagetable layout in a
78 debugfs file. This information is only useful for kernel developers
79 who are working in architecture specific areas of the kernel.
80 It is probably not a good idea to enable this feature in a production
81 kernel.
82 If in doubt, say "N"
83
Borislav Petkov11cc8512014-01-18 12:48:15 +010084config EFI_PGT_DUMP
85 bool "Dump the EFI pagetable"
Stephen Smalleye1a58322015-10-05 12:55:20 -040086 depends on EFI
87 select X86_PTDUMP_CORE
Borislav Petkov11cc8512014-01-18 12:48:15 +010088 ---help---
89 Enable this if you want to dump the EFI page table before
90 enabling virtual mode. This can be used to debug miscellaneous
91 issues with the mapping of the EFI runtime regions into that
92 table.
93
Arjan van de Ven63aaf302006-01-06 00:12:02 -080094config DEBUG_RODATA
95 bool "Write protect kernel read-only data structures"
Ingo Molnar11201e62008-01-30 13:33:32 +010096 default y
Arjan van de Ven63aaf302006-01-06 00:12:02 -080097 depends on DEBUG_KERNEL
Ingo Molnar8f9ca472009-02-05 16:21:53 +010098 ---help---
Arjan van de Ven63aaf302006-01-06 00:12:02 -080099 Mark the kernel read-only data as write-protected in the pagetables,
100 in order to catch accidental (and incorrect) writes to such const
Ingo Molnar11201e62008-01-30 13:33:32 +0100101 data. This is recommended so that we can catch kernel bugs sooner.
102 If in doubt, say "Y".
Arjan van de Ven63aaf302006-01-06 00:12:02 -0800103
Ingo Molnaraba83912008-01-30 13:34:09 +0100104config DEBUG_RODATA_TEST
105 bool "Testcase for the DEBUG_RODATA feature"
106 depends on DEBUG_RODATA
Ingo Molnar72370f22008-02-13 16:15:34 +0100107 default y
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100108 ---help---
Ingo Molnaraba83912008-01-30 13:34:09 +0100109 This option enables a testcase for the DEBUG_RODATA
110 feature as well as for the change_page_attr() infrastructure.
111 If in doubt, say "N"
112
Stephen Smalleye1a58322015-10-05 12:55:20 -0400113config DEBUG_WX
114 bool "Warn on W+X mappings at boot"
115 depends on DEBUG_RODATA
Stephen Smalleye1a58322015-10-05 12:55:20 -0400116 select X86_PTDUMP_CORE
117 ---help---
118 Generate a warning if any W+X mappings are found at boot.
119
120 This is useful for discovering cases where the kernel is leaving
121 W+X mappings after applying NX, as such mappings are a security risk.
122
123 Look for a message in dmesg output like this:
124
125 x86/mm: Checked W+X mappings: passed, no W+X pages found.
126
127 or like this, if the check failed:
128
129 x86/mm: Checked W+X mappings: FAILED, <N> W+X pages found.
130
131 Note that even if the check fails, your kernel is possibly
132 still fine, as W+X mappings are not a security hole in
133 themselves, what they do is that they make the exploitation
134 of other unfixed kernel bugs easier.
135
136 There is no runtime or memory usage effect of this option
137 once the kernel has booted up - it's a one time check.
138
139 If in doubt, say "Y".
140
matthieu castet84e1c6b2010-11-16 22:35:16 +0100141config DEBUG_SET_MODULE_RONX
142 bool "Set loadable kernel module data as NX and text as RO"
143 depends on MODULES
144 ---help---
145 This option helps catch unintended modifications to loadable
146 kernel module's text and read-only data. It also prevents execution
147 of module data. Such protection may interfere with run-time code
148 patching and dynamic kernel tracing - and they might also protect
149 against certain classes of kernel exploits.
150 If in doubt, say "N".
151
Ingo Molnaraba83912008-01-30 13:34:09 +0100152config DEBUG_NX_TEST
153 tristate "Testcase for the NX non-executable stack feature"
154 depends on DEBUG_KERNEL && m
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100155 ---help---
Ingo Molnaraba83912008-01-30 13:34:09 +0100156 This option enables a testcase for the CPU NX capability
157 and the software setup of this feature.
158 If in doubt, say "N"
159
Andi Kleen102e41f2006-04-18 12:35:22 +0200160config DOUBLEFAULT
161 default y
David Rientjes6a108a12011-01-20 14:44:16 -0800162 bool "Enable doublefault exception handler" if EXPERT
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100163 ---help---
Randy Dunlapd013a272007-10-24 15:50:43 -0700164 This option allows trapping of rare doublefault exceptions that
165 would otherwise cause a system to silently reboot. Disabling this
166 option saves about 4k and might cause you much additional grey
167 hair.
168
Alex Shi3df32122012-06-28 09:02:20 +0800169config DEBUG_TLBFLUSH
170 bool "Set upper limit of TLB entries to flush one-by-one"
Paul Bollecd69aa62013-03-14 12:54:37 +0100171 depends on DEBUG_KERNEL
Alex Shi3df32122012-06-28 09:02:20 +0800172 ---help---
173
174 X86-only for now.
175
176 This option allows the user to tune the amount of TLB entries the
177 kernel flushes one-by-one instead of doing a full TLB flush. In
178 certain situations, the former is cheaper. This is controlled by the
179 tlb_flushall_shift knob under /sys/kernel/debug/x86. If you set it
180 to -1, the code flushes the whole TLB unconditionally. Otherwise,
181 for positive values of it, the kernel will use single TLB entry
182 invalidating instructions according to the following formula:
183
184 flush_entries <= active_tlb_entries / 2^tlb_flushall_shift
185
186 If in doubt, say "N".
187
Randy Dunlapd013a272007-10-24 15:50:43 -0700188config IOMMU_DEBUG
189 bool "Enable IOMMU debugging"
Joerg Roedel966396d2007-10-24 12:49:48 +0200190 depends on GART_IOMMU && DEBUG_KERNEL
Randy Dunlapd013a272007-10-24 15:50:43 -0700191 depends on X86_64
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100192 ---help---
Randy Dunlapd013a272007-10-24 15:50:43 -0700193 Force the IOMMU to on even when you have less than 4GB of
194 memory and add debugging code. On overflow always panic. And
195 allow to enable IOMMU leak tracing. Can be disabled at boot
196 time with iommu=noforce. This will also enable scatter gather
197 list merging. Currently not recommended for production
198 code. When you use it make sure you have a big enough
199 IOMMU/AGP aperture. Most of the options enabled by this can
200 be set more finegrained using the iommu= command line
Paul Bolle395cf962011-08-15 02:02:26 +0200201 options. See Documentation/x86/x86_64/boot-options.txt for more
Randy Dunlapd013a272007-10-24 15:50:43 -0700202 details.
203
Joerg Roedel2be69c72009-05-22 12:15:49 +0200204config IOMMU_STRESS
205 bool "Enable IOMMU stress-test mode"
206 ---help---
207 This option disables various optimizations in IOMMU related
208 code to do real stress testing of the IOMMU code. This option
209 will cause a performance drop and should only be enabled for
210 testing.
211
Randy Dunlapd013a272007-10-24 15:50:43 -0700212config IOMMU_LEAK
213 bool "IOMMU leak tracing"
FUJITA Tomonori19c1a6f2009-04-14 09:43:19 +0900214 depends on IOMMU_DEBUG && DMA_API_DEBUG
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100215 ---help---
Randy Dunlapd013a272007-10-24 15:50:43 -0700216 Add a simple leak tracer to the IOMMU code. This is useful when you
217 are debugging a buggy device driver that leaks IOMMU mappings.
218
Pekka Paalanen6bc5c362009-01-03 21:23:51 +0200219config HAVE_MMIOTRACE_SUPPORT
220 def_bool y
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200221
Masami Hiramatsuca0e9ba2009-08-13 16:34:21 -0400222config X86_DECODER_SELFTEST
OGAWA Hirofumicbe5c342009-12-06 20:14:29 +0900223 bool "x86 instruction decoder selftest"
224 depends on DEBUG_KERNEL && KPROBES
Ingo Molnarf8f20232014-02-05 06:51:37 +0100225 depends on !COMPILE_TEST
Masami Hiramatsuca0e9ba2009-08-13 16:34:21 -0400226 ---help---
227 Perform x86 instruction decoder selftests at build time.
228 This option is useful for checking the sanity of x86 instruction
229 decoder code.
230 If unsure, say "N".
231
Ingo Molnar6e7c4022008-01-30 13:30:05 +0100232#
233# IO delay types:
234#
235
236config IO_DELAY_TYPE_0X80
237 int
238 default "0"
239
240config IO_DELAY_TYPE_0XED
241 int
242 default "1"
243
244config IO_DELAY_TYPE_UDELAY
245 int
246 default "2"
247
248config IO_DELAY_TYPE_NONE
249 int
250 default "3"
251
252choice
253 prompt "IO delay type"
Ingo Molnarfd59e9e2008-02-17 20:20:24 +0100254 default IO_DELAY_0X80
Ingo Molnar6e7c4022008-01-30 13:30:05 +0100255
256config IO_DELAY_0X80
257 bool "port 0x80 based port-IO delay [recommended]"
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100258 ---help---
Ingo Molnar6e7c4022008-01-30 13:30:05 +0100259 This is the traditional Linux IO delay used for in/out_p.
260 It is the most tested hence safest selection here.
261
262config IO_DELAY_0XED
263 bool "port 0xed based port-IO delay"
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100264 ---help---
Ingo Molnar6e7c4022008-01-30 13:30:05 +0100265 Use port 0xed as the IO delay. This frees up port 0x80 which is
266 often used as a hardware-debug port.
267
268config IO_DELAY_UDELAY
269 bool "udelay based port-IO delay"
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100270 ---help---
Ingo Molnar6e7c4022008-01-30 13:30:05 +0100271 Use udelay(2) as the IO delay method. This provides the delay
272 while not having any side-effect on the IO port space.
273
274config IO_DELAY_NONE
275 bool "no port-IO delay"
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100276 ---help---
Ingo Molnar6e7c4022008-01-30 13:30:05 +0100277 No port-IO delay. Will break on old boxes that require port-IO
278 delay for certain operations. Should work on most new machines.
279
280endchoice
281
282if IO_DELAY_0X80
283config DEFAULT_IO_DELAY_TYPE
284 int
285 default IO_DELAY_TYPE_0X80
286endif
287
288if IO_DELAY_0XED
289config DEFAULT_IO_DELAY_TYPE
290 int
291 default IO_DELAY_TYPE_0XED
292endif
293
294if IO_DELAY_UDELAY
295config DEFAULT_IO_DELAY_TYPE
296 int
297 default IO_DELAY_TYPE_UDELAY
298endif
299
300if IO_DELAY_NONE
301config DEFAULT_IO_DELAY_TYPE
302 int
303 default IO_DELAY_TYPE_NONE
304endif
Rene Hermanb02aae92008-01-30 13:30:05 +0100305
Huang, Ying6d7d7432008-01-30 13:32:51 +0100306config DEBUG_BOOT_PARAMS
307 bool "Debug boot parameters"
308 depends on DEBUG_KERNEL
309 depends on DEBUG_FS
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100310 ---help---
Huang, Ying6d7d7432008-01-30 13:32:51 +0100311 This option will cause struct boot_params to be exported via debugfs.
312
Andi Kleen0c42f392008-01-30 13:33:42 +0100313config CPA_DEBUG
Ingo Molnar971a52d2008-02-06 22:39:45 +0100314 bool "CPA self-test code"
Ingo Molnarf316fe62008-01-30 13:34:04 +0100315 depends on DEBUG_KERNEL
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100316 ---help---
Ingo Molnar971a52d2008-02-06 22:39:45 +0100317 Do change_page_attr() self-tests every 30 seconds.
Andi Kleen0c42f392008-01-30 13:33:42 +0100318
Ingo Molnar60a3cdd2008-03-03 12:38:52 +0100319config OPTIMIZE_INLINING
320 bool "Allow gcc to uninline functions marked 'inline'"
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100321 ---help---
Ingo Molnar60a3cdd2008-03-03 12:38:52 +0100322 This option determines if the kernel forces gcc to inline the functions
323 developers have marked 'inline'. Doing so takes away freedom from gcc to
324 do what it thinks is best, which is desirable for the gcc 3.x series of
325 compilers. The gcc 4.x series have a rewritten inlining algorithm and
Sitsofe Wheeler63fb7082008-10-11 20:27:53 +0100326 enabling this option will generate a smaller kernel there. Hopefully
327 this algorithm is so good that allowing gcc 4.x and above to make the
328 decision will become the default in the future. Until then this option
329 is there to test gcc for this.
Ingo Molnarc9af1e32008-04-30 08:48:45 +0200330
Ingo Molnar3f9b5cc2008-07-18 16:30:05 +0200331 If unsure, say N.
332
Andy Lutomirskia97439a2015-07-15 10:29:41 -0700333config DEBUG_ENTRY
334 bool "Debug low-level entry code"
335 depends on DEBUG_KERNEL
336 ---help---
337 This option enables sanity checks in x86's low-level entry code.
338 Some of these sanity checks may slow down kernel entries and
339 exits or otherwise impact performance.
340
341 This is currently used to help test NMI code.
342
343 If unsure, say N.
344
Don Zickus99e8b9c2011-10-13 15:14:26 -0400345config DEBUG_NMI_SELFTEST
346 bool "NMI Selftest"
Don Zickus4f941c52011-12-07 16:06:30 -0500347 depends on DEBUG_KERNEL && X86_LOCAL_APIC
Don Zickus99e8b9c2011-10-13 15:14:26 -0400348 ---help---
349 Enabling this option turns on a quick NMI selftest to verify
350 that the NMI behaves correctly.
351
352 This might help diagnose strange hangs that rely on NMI to
353 function properly.
354
355 If unsure, say N.
356
Bryan O'Donoghue28a375d2015-01-30 16:29:38 +0000357config DEBUG_IMR_SELFTEST
358 bool "Isolated Memory Region self test"
359 default n
360 depends on INTEL_IMR
361 ---help---
362 This option enables automated sanity testing of the IMR code.
363 Some simple tests are run to verify IMR bounds checking, alignment
364 and overlapping. This option is really only useful if you are
365 debugging an IMR memory map or are modifying the IMR code and want to
366 test your changes.
367
368 If unsure say N here.
369
Borislav Petkov5700f742013-06-09 12:07:32 +0200370config X86_DEBUG_STATIC_CPU_HAS
371 bool "Debug alternatives"
372 depends on DEBUG_KERNEL
373 ---help---
374 This option causes additional code to be generated which
375 fails if static_cpu_has() is used before alternatives have
376 run.
377
378 If unsure, say N.
379
Ingo Molnare97131a2015-05-05 11:34:49 +0200380config X86_DEBUG_FPU
381 bool "Debug the x86 FPU code"
382 depends on DEBUG_KERNEL
383 default y
384 ---help---
385 If this option is enabled then there will be extra sanity
386 checks and (boot time) debug printouts added to the kernel.
387 This debugging adds some small amount of runtime overhead
388 to the kernel.
389
390 If unsure, say N.
391
Srinivas Pandruvada956079e2015-05-06 12:15:54 -0700392config PUNIT_ATOM_DEBUG
393 tristate "ATOM Punit debug driver"
394 select DEBUG_FS
395 select IOSF_MBI
396 ---help---
397 This is a debug driver, which gets the power states
398 of all Punit North Complex devices. The power states of
399 each device is exposed as part of the debugfs interface.
400 The current power state can be read from
401 /sys/kernel/debug/punit_atom/dev_power_state
402
Ingo Molnarc9af1e32008-04-30 08:48:45 +0200403endmenu