Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1 | menu "Kernel hacking" |
| 2 | |
| 3 | source "lib/Kconfig.debug" |
| 4 | |
Michael Ellerman | ba55bd7 | 2009-06-09 20:48:51 +0000 | [diff] [blame] | 5 | config PPC_DISABLE_WERROR |
| 6 | bool "Don't build arch/powerpc code with -Werror" |
| 7 | default n |
| 8 | help |
| 9 | This option tells the compiler NOT to build the code under |
| 10 | arch/powerpc with the -Werror flag (which means warnings |
| 11 | are treated as errors). |
| 12 | |
| 13 | Only enable this if you are hitting a build failure in the |
| 14 | arch/powerpc code caused by a warning, and you don't feel |
| 15 | inclined to fix it. |
| 16 | |
| 17 | config PPC_WERROR |
| 18 | bool |
| 19 | depends on !PPC_DISABLE_WERROR |
| 20 | default y |
| 21 | |
Johannes Berg | c4d04be | 2008-11-20 03:24:07 +0000 | [diff] [blame] | 22 | config PRINT_STACK_DEPTH |
| 23 | int "Stack depth to print" if DEBUG_KERNEL |
| 24 | default 64 |
| 25 | help |
| 26 | This option allows you to set the stack depth that the kernel |
| 27 | prints in stack traces. This can be useful if your display is |
| 28 | too small and stack traces cause important information to |
| 29 | scroll off the screen. |
| 30 | |
Paul Mackerras | ff64208 | 2005-10-10 22:15:52 +1000 | [diff] [blame] | 31 | config DEBUG_STACKOVERFLOW |
| 32 | bool "Check for stack overflows" |
Kumar Gala | 304df8f | 2007-01-30 00:45:56 -0600 | [diff] [blame] | 33 | depends on DEBUG_KERNEL |
Paul Mackerras | ff64208 | 2005-10-10 22:15:52 +1000 | [diff] [blame] | 34 | help |
| 35 | This option will cause messages to be printed if free stack space |
| 36 | drops below a certain limit. |
| 37 | |
Paul Mackerras | ff64208 | 2005-10-10 22:15:52 +1000 | [diff] [blame] | 38 | config DEBUG_STACK_USAGE |
| 39 | bool "Stack utilization instrumentation" |
Kumar Gala | 304df8f | 2007-01-30 00:45:56 -0600 | [diff] [blame] | 40 | depends on DEBUG_KERNEL |
Paul Mackerras | ff64208 | 2005-10-10 22:15:52 +1000 | [diff] [blame] | 41 | help |
| 42 | Enables the display of the minimum amount of free stack which each |
| 43 | task has ever had available in the sysrq-T and sysrq-P debug output. |
| 44 | |
| 45 | This option will slow down process creation somewhat. |
| 46 | |
Anton Blanchard | ceba1ab | 2010-04-26 15:32:46 +0000 | [diff] [blame] | 47 | config DEBUG_PER_CPU_MAPS |
| 48 | bool "Debug access to per_cpu maps" |
| 49 | depends on DEBUG_KERNEL |
| 50 | depends on SMP |
| 51 | default n |
| 52 | ---help--- |
| 53 | Say Y to verify that the per_cpu map being accessed has |
| 54 | been setup. Adds a fair amount of code to kernel memory |
| 55 | and decreases performance. |
| 56 | |
| 57 | Say N if unsure. |
| 58 | |
Mike Kravetz | 57852a8 | 2006-09-06 16:23:12 -0700 | [diff] [blame] | 59 | config HCALL_STATS |
| 60 | bool "Hypervisor call instrumentation" |
Anton Blanchard | c8cd093 | 2009-10-26 18:50:29 +0000 | [diff] [blame] | 61 | depends on PPC_PSERIES && DEBUG_FS && TRACEPOINTS |
Mike Kravetz | 57852a8 | 2006-09-06 16:23:12 -0700 | [diff] [blame] | 62 | help |
| 63 | Adds code to keep track of the number of hypervisor calls made and |
David Sterba | 3dde6ad | 2007-05-09 07:12:20 +0200 | [diff] [blame] | 64 | the amount of time spent in hypervisor calls. Wall time spent in |
Mike Kravetz | 57852a8 | 2006-09-06 16:23:12 -0700 | [diff] [blame] | 65 | each call is always calculated, and if available CPU cycles spent |
| 66 | are also calculated. A directory named hcall_inst is added at the |
| 67 | root of the debugfs filesystem. Within the hcall_inst directory |
| 68 | are files that contain CPU specific call statistics. |
| 69 | |
| 70 | This option will add a small amount of overhead to all hypervisor |
| 71 | calls. |
| 72 | |
Geert Uytterhoeven | 80947e7 | 2009-05-18 02:10:05 +0000 | [diff] [blame] | 73 | config PPC_EMULATED_STATS |
| 74 | bool "Emulated instructions tracking" |
| 75 | depends on DEBUG_FS |
| 76 | help |
| 77 | Adds code to keep track of the number of instructions that are |
| 78 | emulated by the in-kernel emulator. Counters for the various classes |
| 79 | of emulated instructions are available under |
| 80 | powerpc/emulated_instructions/ in the root of the debugfs file |
| 81 | system. Optionally (controlled by |
| 82 | powerpc/emulated_instructions/do_warn in debugfs), rate-limited |
| 83 | warnings can be printed to the console when instructions are |
| 84 | emulated. |
| 85 | |
Michael Ellerman | ae0dc73 | 2008-06-24 11:32:32 +1000 | [diff] [blame] | 86 | config CODE_PATCHING_SELFTEST |
| 87 | bool "Run self-tests of the code-patching code." |
| 88 | depends on DEBUG_KERNEL |
| 89 | default n |
| 90 | |
Michael Ellerman | 362e770 | 2008-06-24 11:33:03 +1000 | [diff] [blame] | 91 | config FTR_FIXUP_SELFTEST |
| 92 | bool "Run self-tests of the feature-fixup code." |
| 93 | depends on DEBUG_KERNEL |
| 94 | default n |
| 95 | |
Michael Ellerman | 7e30286 | 2008-08-06 09:10:01 +1000 | [diff] [blame] | 96 | config MSI_BITMAP_SELFTEST |
| 97 | bool "Run self-tests of the MSI bitmap code." |
| 98 | depends on DEBUG_KERNEL |
| 99 | default n |
| 100 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 101 | config XMON |
| 102 | bool "Include xmon kernel debugger" |
Jason Wessel | 17ce452 | 2008-07-23 11:30:15 -0500 | [diff] [blame] | 103 | depends on DEBUG_KERNEL |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 104 | help |
| 105 | Include in-kernel hooks for the xmon kernel monitor/debugger. |
| 106 | Unless you are intending to debug the kernel, say N here. |
Paul Mackerras | ff64208 | 2005-10-10 22:15:52 +1000 | [diff] [blame] | 107 | Make sure to enable also CONFIG_BOOTX_TEXT on Macs. Otherwise |
| 108 | nothing will appear on the screen (xmon writes directly to the |
| 109 | framebuffer memory). |
| 110 | The cmdline option 'xmon' or 'xmon=early' will drop into xmon |
| 111 | very early during boot. 'xmon=on' will just enable the xmon |
| 112 | debugger hooks. 'xmon=off' will disable the debugger hooks |
| 113 | if CONFIG_XMON_DEFAULT is set. |
Olaf Hering | 26c8af5 | 2006-09-08 16:29:21 +0200 | [diff] [blame] | 114 | xmon will print a backtrace on the very first invocation. |
| 115 | 'xmon=nobt' will disable this autobacktrace. |
Paul Mackerras | ff64208 | 2005-10-10 22:15:52 +1000 | [diff] [blame] | 116 | |
| 117 | config XMON_DEFAULT |
| 118 | bool "Enable xmon by default" |
| 119 | depends on XMON |
| 120 | help |
| 121 | xmon is normally disabled unless booted with 'xmon=on'. |
| 122 | Use 'xmon=off' to disable xmon init during runtime. |
| 123 | |
Michael Ellerman | e042604 | 2006-11-23 00:46:45 +0100 | [diff] [blame] | 124 | config XMON_DISASSEMBLY |
| 125 | bool "Include disassembly support in xmon" |
| 126 | depends on XMON |
| 127 | default y |
| 128 | help |
| 129 | Include support for disassembling in xmon. You probably want |
| 130 | to say Y here, unless you're building for a memory-constrained |
| 131 | system. |
| 132 | |
Jason Wessel | 17ce452 | 2008-07-23 11:30:15 -0500 | [diff] [blame] | 133 | config DEBUGGER |
| 134 | bool |
| 135 | depends on KGDB || XMON |
| 136 | default y |
| 137 | |
Michael Ellerman | 60b332e | 2007-08-28 18:47:57 +1000 | [diff] [blame] | 138 | config VIRQ_DEBUG |
| 139 | bool "Expose hardware/virtual IRQ mapping via debugfs" |
Kumar Gala | 9c4cb82 | 2008-08-02 02:44:11 +1000 | [diff] [blame] | 140 | depends on DEBUG_FS |
Michael Ellerman | 60b332e | 2007-08-28 18:47:57 +1000 | [diff] [blame] | 141 | help |
| 142 | This option will show the mapping relationship between hardware irq |
| 143 | numbers and virtual irq numbers. The mapping is exposed via debugfs |
| 144 | in the file powerpc/virq_mapping. |
| 145 | |
| 146 | If you don't know what this means you don't need it. |
| 147 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 148 | config BDI_SWITCH |
| 149 | bool "Include BDI-2000 user context switcher" |
Paul Mackerras | ff64208 | 2005-10-10 22:15:52 +1000 | [diff] [blame] | 150 | depends on DEBUG_KERNEL && PPC32 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 151 | help |
| 152 | Include in-kernel support for the Abatron BDI2000 debugger. |
| 153 | Unless you are intending to debug the kernel with one of these |
| 154 | machines, say N here. |
| 155 | |
| 156 | config BOOTX_TEXT |
| 157 | bool "Support for early boot text console (BootX or OpenFirmware only)" |
Benjamin Herrenschmidt | 28794d3 | 2009-03-10 17:53:27 +0000 | [diff] [blame] | 158 | depends on PPC_OF && PPC_BOOK3S |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 159 | help |
| 160 | Say Y here to see progress messages from the boot firmware in text |
| 161 | mode. Requires either BootX or Open Firmware. |
| 162 | |
Michael Ellerman | 485a2d5 | 2006-05-09 16:03:51 +1000 | [diff] [blame] | 163 | config PPC_EARLY_DEBUG |
| 164 | bool "Early debugging (dangerous)" |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 165 | # PPC_EARLY_DEBUG on 440 leaves AS=1 mappings above the TLB high water |
| 166 | # mark, which doesn't work with current 440 KVM. |
| 167 | depends on !KVM |
Benjamin Herrenschmidt | 7ee1746 | 2007-12-11 14:48:24 +1100 | [diff] [blame] | 168 | help |
| 169 | Say Y to enable some early debugging facilities that may be available |
| 170 | for your processor/board combination. Those facilities are hacks |
| 171 | intended to debug problems early during boot, this should not be |
| 172 | enabled in a production kernel. |
| 173 | Note that enabling this will also cause the kernel default log level |
| 174 | to be pushed to max automatically very early during boot |
Michael Ellerman | 485a2d5 | 2006-05-09 16:03:51 +1000 | [diff] [blame] | 175 | |
Michael Ellerman | 296167a | 2006-01-11 11:54:09 +1100 | [diff] [blame] | 176 | choice |
Michael Ellerman | 485a2d5 | 2006-05-09 16:03:51 +1000 | [diff] [blame] | 177 | prompt "Early debugging console" |
| 178 | depends on PPC_EARLY_DEBUG |
Michael Ellerman | 296167a | 2006-01-11 11:54:09 +1100 | [diff] [blame] | 179 | help |
Michael Ellerman | 485a2d5 | 2006-05-09 16:03:51 +1000 | [diff] [blame] | 180 | Use the selected console for early debugging. Careful, if you |
| 181 | enable debugging for the wrong type of machine your kernel |
| 182 | _will not boot_. |
Michael Ellerman | 296167a | 2006-01-11 11:54:09 +1100 | [diff] [blame] | 183 | |
| 184 | config PPC_EARLY_DEBUG_LPAR |
| 185 | bool "LPAR HV Console" |
| 186 | depends on PPC_PSERIES |
| 187 | help |
| 188 | Select this to enable early debugging for a machine with a HVC |
| 189 | console on vterm 0. |
| 190 | |
| 191 | config PPC_EARLY_DEBUG_G5 |
| 192 | bool "Apple G5" |
| 193 | depends on PPC_PMAC64 |
| 194 | help |
| 195 | Select this to enable early debugging for Apple G5 machines. |
| 196 | |
Michael Ellerman | cc46bb9 | 2006-06-23 18:20:16 +1000 | [diff] [blame] | 197 | config PPC_EARLY_DEBUG_RTAS_PANEL |
Michael Ellerman | 296167a | 2006-01-11 11:54:09 +1100 | [diff] [blame] | 198 | bool "RTAS Panel" |
| 199 | depends on PPC_RTAS |
| 200 | help |
| 201 | Select this to enable early debugging via the RTAS panel. |
| 202 | |
Michael Ellerman | cc46bb9 | 2006-06-23 18:20:16 +1000 | [diff] [blame] | 203 | config PPC_EARLY_DEBUG_RTAS_CONSOLE |
| 204 | bool "RTAS Console" |
| 205 | depends on PPC_RTAS |
| 206 | select UDBG_RTAS_CONSOLE |
| 207 | help |
| 208 | Select this to enable early debugging via the RTAS console. |
| 209 | |
Michael Ellerman | 296167a | 2006-01-11 11:54:09 +1100 | [diff] [blame] | 210 | config PPC_EARLY_DEBUG_MAPLE |
| 211 | bool "Maple real mode" |
| 212 | depends on PPC_MAPLE |
| 213 | help |
| 214 | Select this to enable early debugging for Maple. |
| 215 | |
| 216 | config PPC_EARLY_DEBUG_ISERIES |
| 217 | bool "iSeries HV Console" |
| 218 | depends on PPC_ISERIES |
| 219 | help |
| 220 | Select this to enable early debugging for legacy iSeries. You need |
| 221 | to hit "Ctrl-x Ctrl-x" to see the messages on the console. |
| 222 | |
Olof Johansson | 39c870d | 2007-02-04 16:36:49 -0600 | [diff] [blame] | 223 | config PPC_EARLY_DEBUG_PAS_REALMODE |
| 224 | bool "PA Semi real mode" |
| 225 | depends on PPC_PASEMI |
| 226 | help |
| 227 | Select this to enable early debugging for PA Semi. |
| 228 | Output will be on UART0. |
| 229 | |
Ishizaki Kou | c347b79 | 2007-02-02 16:47:17 +0900 | [diff] [blame] | 230 | config PPC_EARLY_DEBUG_BEAT |
| 231 | bool "Beat HV Console" |
| 232 | depends on PPC_CELLEB |
| 233 | select PPC_UDBG_BEAT |
| 234 | help |
| 235 | Select this to enable early debugging for Celleb with Beat. |
| 236 | |
David Gibson | d9b55a0 | 2007-05-08 12:59:31 +1000 | [diff] [blame] | 237 | config PPC_EARLY_DEBUG_44x |
| 238 | bool "Early serial debugging for IBM/AMCC 44x CPUs" |
| 239 | depends on 44x |
David Gibson | d9b55a0 | 2007-05-08 12:59:31 +1000 | [diff] [blame] | 240 | help |
| 241 | Select this to enable early debugging for IBM 44x chips via the |
Hugh Blemings | 6bbc547 | 2007-12-21 15:39:28 +1100 | [diff] [blame] | 242 | inbuilt serial port. If you enable this, ensure you set |
| 243 | PPC_EARLY_DEBUG_44x_PHYSLOW below to suit your target board. |
David Gibson | d9b55a0 | 2007-05-08 12:59:31 +1000 | [diff] [blame] | 244 | |
Benjamin Herrenschmidt | 9dae8af | 2007-12-21 15:39:26 +1100 | [diff] [blame] | 245 | config PPC_EARLY_DEBUG_40x |
| 246 | bool "Early serial debugging for IBM/AMCC 40x CPUs" |
| 247 | depends on 40x |
| 248 | help |
| 249 | Select this to enable early debugging for IBM 40x chips via the |
| 250 | inbuilt serial port. This works on chips with a 16550 compatible |
| 251 | UART. Xilinx chips with uartlite cannot use this option. |
| 252 | |
Scott Wood | c374e00 | 2007-07-16 11:43:43 -0500 | [diff] [blame] | 253 | config PPC_EARLY_DEBUG_CPM |
| 254 | bool "Early serial debugging for Freescale CPM-based serial ports" |
| 255 | depends on SERIAL_CPM |
| 256 | select PIN_TLB if PPC_8xx |
| 257 | help |
| 258 | Select this to enable early debugging for Freescale chips |
| 259 | using a CPM-based serial port. This assumes that the bootwrapper |
| 260 | has run, and set up the CPM in a particular way. |
| 261 | |
Albert Herranz | d1d56f8 | 2009-12-12 06:31:51 +0000 | [diff] [blame] | 262 | config PPC_EARLY_DEBUG_USBGECKO |
| 263 | bool "Early debugging through the USB Gecko adapter" |
| 264 | depends on GAMECUBE_COMMON |
| 265 | select USBGECKO_UDBG |
| 266 | help |
| 267 | Select this to enable early debugging for Nintendo GameCube/Wii |
| 268 | consoles via an external USB Gecko adapter. |
| 269 | |
Michael Ellerman | 296167a | 2006-01-11 11:54:09 +1100 | [diff] [blame] | 270 | endchoice |
| 271 | |
David Gibson | d9b55a0 | 2007-05-08 12:59:31 +1000 | [diff] [blame] | 272 | config PPC_EARLY_DEBUG_44x_PHYSLOW |
| 273 | hex "Low 32 bits of early debug UART physical address" |
Adrian Bunk | 247537b | 2007-09-26 20:02:52 +0200 | [diff] [blame] | 274 | depends on PPC_EARLY_DEBUG_44x |
David Gibson | d9b55a0 | 2007-05-08 12:59:31 +1000 | [diff] [blame] | 275 | default "0x40000200" |
Hugh Blemings | 6bbc547 | 2007-12-21 15:39:28 +1100 | [diff] [blame] | 276 | help |
| 277 | You probably want 0x40000200 for ebony boards and |
| 278 | 0x40000300 for taishan |
David Gibson | d9b55a0 | 2007-05-08 12:59:31 +1000 | [diff] [blame] | 279 | |
| 280 | config PPC_EARLY_DEBUG_44x_PHYSHIGH |
| 281 | hex "EPRN of early debug UART physical address" |
Adrian Bunk | 247537b | 2007-09-26 20:02:52 +0200 | [diff] [blame] | 282 | depends on PPC_EARLY_DEBUG_44x |
David Gibson | d9b55a0 | 2007-05-08 12:59:31 +1000 | [diff] [blame] | 283 | default "0x1" |
| 284 | |
Benjamin Herrenschmidt | 9dae8af | 2007-12-21 15:39:26 +1100 | [diff] [blame] | 285 | config PPC_EARLY_DEBUG_40x_PHYSADDR |
| 286 | hex "Early debug UART physical address" |
| 287 | depends on PPC_EARLY_DEBUG_40x |
| 288 | default "0xef600300" |
| 289 | |
Scott Wood | c374e00 | 2007-07-16 11:43:43 -0500 | [diff] [blame] | 290 | config PPC_EARLY_DEBUG_CPM_ADDR |
| 291 | hex "CPM UART early debug transmit descriptor address" |
| 292 | depends on PPC_EARLY_DEBUG_CPM |
Scott Wood | 15f8c60 | 2007-09-28 14:06:16 -0500 | [diff] [blame] | 293 | default "0xfa202008" if PPC_EP88XC |
Laurent Pinchart | c2dd352 | 2008-04-10 17:01:59 +0200 | [diff] [blame] | 294 | default "0xf0001ff8" if CPM2 |
Scott Wood | 15f8c60 | 2007-09-28 14:06:16 -0500 | [diff] [blame] | 295 | default "0xff002008" if CPM1 |
Scott Wood | c374e00 | 2007-07-16 11:43:43 -0500 | [diff] [blame] | 296 | help |
| 297 | This specifies the address of the transmit descriptor |
| 298 | used for early debug output. Because it is needed before |
| 299 | platform probing is done, all platforms selected must |
| 300 | share the same address. |
| 301 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 302 | endmenu |