blob: 6eb31bcc1e214a1036d2e48120e8cec02d54dd77 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001menu "Kernel hacking"
2
Paul Mundtafbfb522006-12-04 18:17:28 +09003config TRACE_IRQFLAGS_SUPPORT
4 bool
5 default y
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007source "lib/Kconfig.debug"
8
9config SH_STANDARD_BIOS
10 bool "Use LinuxSH standard BIOS"
11 help
12 Say Y here if your target has the gdb-sh-stub
13 package from www.m17n.org (or any conforming standard LinuxSH BIOS)
14 in FLASH or EPROM. The kernel will use standard BIOS calls during
15 boot for various housekeeping tasks (including calls to read and
16 write characters to a system console, get a MAC address from an
17 on-board Ethernet interface, and shut down the hardware). Note this
18 does not work with machines with an existing operating system in
19 mask ROM and no flash (WindowsCE machines fall in this category).
20 If unsure, say N.
21
22config EARLY_SCIF_CONSOLE
23 bool "Use early SCIF console"
Paul Mundt6fc21b82006-11-27 12:10:23 +090024 help
25 This enables an early console using a fixed SCIF port. This can
26 be used by platforms that are either not running the SH
27 standard BIOS, or do not wish to use the BIOS callbacks for the
28 serial I/O.
29
30config EARLY_SCIF_CONSOLE_PORT
Paul Mundt8d797cd2007-08-07 18:52:29 +090031 hex
Paul Mundt6fc21b82006-11-27 12:10:23 +090032 depends on EARLY_SCIF_CONSOLE
33 default "0xffe00000" if CPU_SUBTYPE_SH7780
Yoshinori Sato11cbb702006-12-07 18:07:27 +090034 default "0xfffe9800" if CPU_SUBTYPE_SH7206
35 default "0xf8420000" if CPU_SUBTYPE_SH7619
Nobuhiro Iwamatsu2a8ff452007-04-26 11:51:00 +090036 default "0xa4400000" if CPU_SUBTYPE_SH7712 || CPU_SUBTYPE_SH7705
Paul Mundt8d797cd2007-08-07 18:52:29 +090037 default "0xffc30000" if CPU_SUBTYPE_SHX3
Paul Mundt6fc21b82006-11-27 12:10:23 +090038 default "0xffe80000" if CPU_SH4
Paul Mundt8d797cd2007-08-07 18:52:29 +090039 default "0x00000000"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41config EARLY_PRINTK
42 bool "Early printk support"
43 depends on SH_STANDARD_BIOS || EARLY_SCIF_CONSOLE
44 help
45 Say Y here to redirect kernel printk messages to the serial port
46 used by the SH-IPL bootloader, starting very early in the boot
47 process and ending when the kernel's serial console is initialised.
48 This option is only useful porting the kernel to a new machine,
49 when the kernel may crash or hang before the serial console is
50 initialised. If unsure, say N.
51
Paul Mundt6fc21b82006-11-27 12:10:23 +090052 On devices that are running SH-IPL and want to keep the port
53 initialization consistent while not using the BIOS callbacks,
54 select both the EARLY_SCIF_CONSOLE and SH_STANDARD_BIOS, using
55 the kernel command line option to toggle back and forth.
56
Paul Mundt91e656a2007-06-01 14:19:22 +090057config DEBUG_BOOTMEM
58 depends on DEBUG_KERNEL
59 bool "Debug BOOTMEM initialization"
60
Paul Mundtd153ea82006-09-27 18:20:16 +090061config DEBUG_STACKOVERFLOW
62 bool "Check for stack overflows"
63 depends on DEBUG_KERNEL
64 help
65 This option will cause messages to be printed if free stack space
66 drops below a certain limit.
67
68config DEBUG_STACK_USAGE
69 bool "Stack utilization instrumentation"
70 depends on DEBUG_KERNEL
71 help
72 Enables the display of the minimum amount of free stack which each
73 task has ever had available in the sysrq-T and sysrq-P debug output.
74
75 This option will slow down process creation somewhat.
76
Paul Mundta6a311392006-09-27 18:22:14 +090077config 4KSTACKS
78 bool "Use 4Kb for kernel stacks instead of 8Kb"
79 depends on DEBUG_KERNEL
80 help
81 If you say Y here the kernel will use a 4Kb stacksize for the
82 kernel stack attached to each process/thread. This facilitates
83 running more threads on a system and also reduces the pressure
84 on the VM subsystem for higher order allocations. This option
85 will also use IRQ stacks to compensate for the reduced stackspace.
86
Paul Mundtfa5da2f2007-03-08 17:27:37 +090087config SH_KGDB
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 bool "Include KGDB kernel debugger"
Paul Mundt2549b322006-09-27 16:22:33 +090089 select FRAME_POINTER
Paul Mundtfa5da2f2007-03-08 17:27:37 +090090 select DEBUG_INFO
Paul Mundt357d5942007-06-11 15:32:07 +090091 depends on CPU_SH3 || CPU_SH4
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 help
93 Include in-kernel hooks for kgdb, the Linux kernel source level
94 debugger. See <http://kgdb.sourceforge.net/> for more information.
95 Unless you are intending to debug the kernel, say N here.
96
97menu "KGDB configuration options"
Paul Mundtfa5da2f2007-03-08 17:27:37 +090098 depends on SH_KGDB
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100config MORE_COMPILE_OPTIONS
101 bool "Add any additional compile options"
102 help
103 If you want to add additional CFLAGS to the kernel build, enable this
104 option and then enter what you would like to add in the next question.
105 Note however that -g is already appended with the selection of KGDB.
106
107config COMPILE_OPTIONS
108 string "Additional compile arguments"
109 depends on MORE_COMPILE_OPTIONS
110
111config KGDB_NMI
112 bool "Enter KGDB on NMI"
113 default n
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115config SH_KGDB_CONSOLE
116 bool "Console messages through GDB"
Paul Mundtfa5da2f2007-03-08 17:27:37 +0900117 depends on !SERIAL_SH_SCI_CONSOLE
118 select SERIAL_CORE_CONSOLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 default n
120
121config KGDB_SYSRQ
122 bool "Allow SysRq 'G' to enter KGDB"
123 default y
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125comment "Serial port setup"
126
127config KGDB_DEFPORT
128 int "Port number (ttySCn)"
129 default "1"
130
131config KGDB_DEFBAUD
132 int "Baud rate"
133 default "115200"
134
135choice
136 prompt "Parity"
Paul Mundtfa5da2f2007-03-08 17:27:37 +0900137 depends on SH_KGDB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 default KGDB_DEFPARITY_N
139
140config KGDB_DEFPARITY_N
141 bool "None"
142
143config KGDB_DEFPARITY_E
144 bool "Even"
145
146config KGDB_DEFPARITY_O
147 bool "Odd"
148
149endchoice
150
151choice
152 prompt "Data bits"
Paul Mundtfa5da2f2007-03-08 17:27:37 +0900153 depends on SH_KGDB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 default KGDB_DEFBITS_8
155
156config KGDB_DEFBITS_8
157 bool "8"
158
159config KGDB_DEFBITS_7
160 bool "7"
161
162endchoice
163
164endmenu
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166endmenu