Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # For a description of the syntax of this configuration file, |
| 3 | # see Documentation/kbuild/kconfig-language.txt. |
| 4 | # |
| 5 | |
| 6 | mainmenu "Linux/SuperH Kernel Configuration" |
| 7 | |
| 8 | config SUPERH |
| 9 | bool |
| 10 | default y |
Paul Mundt | 7a440c9 | 2006-09-27 18:18:31 +0900 | [diff] [blame] | 11 | select EMBEDDED |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | help |
| 13 | The SuperH is a RISC processor targeted for use in embedded systems |
| 14 | and consumer electronics; it was also used in the Sega Dreamcast |
| 15 | gaming console. The SuperH port has a home page at |
| 16 | <http://www.linux-sh.org/>. |
| 17 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | config RWSEM_GENERIC_SPINLOCK |
| 19 | bool |
| 20 | default y |
| 21 | |
| 22 | config RWSEM_XCHGADD_ALGORITHM |
| 23 | bool |
| 24 | |
Akinobu Mita | e2268c7 | 2006-03-26 01:39:35 -0800 | [diff] [blame] | 25 | config GENERIC_FIND_NEXT_BIT |
| 26 | bool |
| 27 | default y |
| 28 | |
| 29 | config GENERIC_HWEIGHT |
| 30 | bool |
| 31 | default y |
| 32 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | config GENERIC_HARDIRQS |
| 34 | bool |
| 35 | default y |
| 36 | |
| 37 | config GENERIC_IRQ_PROBE |
| 38 | bool |
| 39 | default y |
| 40 | |
| 41 | config GENERIC_CALIBRATE_DELAY |
| 42 | bool |
| 43 | default y |
| 44 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 45 | config GENERIC_IOMAP |
| 46 | bool |
| 47 | |
Paul Mundt | 4588214 | 2006-10-04 13:21:45 +0900 | [diff] [blame] | 48 | config GENERIC_TIME |
| 49 | def_bool n |
| 50 | |
viro@ZenIV.linux.org.uk | a08b6b7 | 2005-09-06 01:48:42 +0100 | [diff] [blame] | 51 | config ARCH_MAY_HAVE_PC_FDC |
| 52 | bool |
viro@ZenIV.linux.org.uk | a08b6b7 | 2005-09-06 01:48:42 +0100 | [diff] [blame] | 53 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | source "init/Kconfig" |
| 55 | |
| 56 | menu "System type" |
| 57 | |
Paul Mundt | bc8fb5d | 2006-09-27 18:09:34 +0900 | [diff] [blame] | 58 | config SOLUTION_ENGINE |
| 59 | bool |
| 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | choice |
| 62 | prompt "SuperH system type" |
| 63 | default SH_UNKNOWN |
| 64 | |
| 65 | config SH_SOLUTION_ENGINE |
| 66 | bool "SolutionEngine" |
Paul Mundt | bc8fb5d | 2006-09-27 18:09:34 +0900 | [diff] [blame] | 67 | select SOLUTION_ENGINE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | help |
| 69 | Select SolutionEngine if configuring for a Hitachi SH7709 |
| 70 | or SH7750 evaluation board. |
| 71 | |
| 72 | config SH_7751_SOLUTION_ENGINE |
| 73 | bool "SolutionEngine7751" |
Paul Mundt | bc8fb5d | 2006-09-27 18:09:34 +0900 | [diff] [blame] | 74 | select SOLUTION_ENGINE |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 75 | select CPU_SUBTYPE_SH7751 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | help |
| 77 | Select 7751 SolutionEngine if configuring for a Hitachi SH7751 |
| 78 | evaluation board. |
| 79 | |
| 80 | config SH_7300_SOLUTION_ENGINE |
| 81 | bool "SolutionEngine7300" |
Paul Mundt | bc8fb5d | 2006-09-27 18:09:34 +0900 | [diff] [blame] | 82 | select SOLUTION_ENGINE |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 83 | select CPU_SUBTYPE_SH7300 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | help |
Paul Mundt | bc8fb5d | 2006-09-27 18:09:34 +0900 | [diff] [blame] | 85 | Select 7300 SolutionEngine if configuring for a Hitachi |
| 86 | SH7300(SH-Mobile V) evaluation board. |
| 87 | |
| 88 | config SH_7343_SOLUTION_ENGINE |
| 89 | bool "SolutionEngine7343" |
| 90 | select SOLUTION_ENGINE |
| 91 | select CPU_SUBTYPE_SH7343 |
| 92 | help |
| 93 | Select 7343 SolutionEngine if configuring for a Hitachi |
| 94 | SH7343 (SH-Mobile 3AS) evaluation board. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
| 96 | config SH_73180_SOLUTION_ENGINE |
| 97 | bool "SolutionEngine73180" |
Paul Mundt | bc8fb5d | 2006-09-27 18:09:34 +0900 | [diff] [blame] | 98 | select SOLUTION_ENGINE |
| 99 | select CPU_SUBTYPE_SH73180 |
| 100 | help |
| 101 | Select 73180 SolutionEngine if configuring for a Hitachi |
| 102 | SH73180(SH-Mobile 3) evaluation board. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
| 104 | config SH_7751_SYSTEMH |
| 105 | bool "SystemH7751R" |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 106 | select CPU_SUBTYPE_SH7751R |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | help |
| 108 | Select SystemH if you are configuring for a Renesas SystemH |
| 109 | 7751R evaluation board. |
| 110 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 111 | config SH_HP6XX |
| 112 | bool "HP6XX" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | help |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 114 | Select HP6XX if configuring for a HP jornada HP6xx. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | More information (hardware only) at |
| 116 | <http://www.hp.com/jornada/>. |
| 117 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | config SH_EC3104 |
| 119 | bool "EC3104" |
| 120 | help |
| 121 | Select EC3104 if configuring for a system with an Eclipse |
| 122 | International EC3104 chip, e.g. the Harris AD2000. |
| 123 | |
| 124 | config SH_SATURN |
| 125 | bool "Saturn" |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 126 | select CPU_SUBTYPE_SH7604 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | help |
| 128 | Select Saturn if configuring for a SEGA Saturn. |
| 129 | |
| 130 | config SH_DREAMCAST |
| 131 | bool "Dreamcast" |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 132 | select CPU_SUBTYPE_SH7091 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | help |
| 134 | Select Dreamcast if configuring for a SEGA Dreamcast. |
| 135 | More information at |
| 136 | <http://www.m17n.org/linux-sh/dreamcast/>. There is a |
| 137 | Dreamcast project is at <http://linuxdc.sourceforge.net/>. |
| 138 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | config SH_BIGSUR |
| 140 | bool "BigSur" |
| 141 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | config SH_MPC1211 |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 143 | bool "Interface MPC1211" |
| 144 | help |
| 145 | CTP/PCI-SH02 is a CPU module computer that is produced |
| 146 | by Interface Corporation. |
| 147 | More information at <http://www.interface.co.jp> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | |
| 149 | config SH_SH03 |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 150 | bool "Interface CTP/PCI-SH03" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | help |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 152 | CTP/PCI-SH03 is a CPU module computer that is produced |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | by Interface Corporation. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | More information at <http://www.interface.co.jp> |
| 155 | |
| 156 | config SH_SECUREEDGE5410 |
| 157 | bool "SecureEdge5410" |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 158 | select CPU_SUBTYPE_SH7751R |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | help |
| 160 | Select SecureEdge5410 if configuring for a SnapGear SH board. |
| 161 | This includes both the OEM SecureEdge products as well as the |
| 162 | SME product line. |
| 163 | |
| 164 | config SH_HS7751RVOIP |
| 165 | bool "HS7751RVOIP" |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 166 | select CPU_SUBTYPE_SH7751R |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | help |
| 168 | Select HS7751RVOIP if configuring for a Renesas Technology |
| 169 | Sales VoIP board. |
| 170 | |
Paul Mundt | 91b91d0 | 2006-09-27 18:08:33 +0900 | [diff] [blame] | 171 | config SH_7710VOIPGW |
| 172 | bool "SH7710-VOIP-GW" |
| 173 | select CPU_SUBTYPE_SH7710 |
| 174 | help |
| 175 | Select this option to build a kernel for the SH7710 based |
| 176 | VOIP GW. |
| 177 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | config SH_RTS7751R2D |
| 179 | bool "RTS7751R2D" |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 180 | select CPU_SUBTYPE_SH7751R |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | help |
| 182 | Select RTS7751R2D if configuring for a Renesas Technology |
| 183 | Sales SH-Graphics board. |
| 184 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 185 | config SH_R7780RP |
| 186 | bool "R7780RP-1" |
| 187 | select CPU_SUBTYPE_SH7780 |
| 188 | help |
| 189 | Select R7780RP-1 if configuring for a Renesas Solutions |
| 190 | HIGHLANDER board. |
| 191 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | config SH_EDOSK7705 |
| 193 | bool "EDOSK7705" |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 194 | select CPU_SUBTYPE_SH7705 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
| 196 | config SH_SH4202_MICRODEV |
| 197 | bool "SH4-202 MicroDev" |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 198 | select CPU_SUBTYPE_SH4_202 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | help |
| 200 | Select SH4-202 MicroDev if configuring for a SuperH MicroDev board |
| 201 | with an SH4-202 CPU. |
| 202 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 203 | config SH_LANDISK |
| 204 | bool "LANDISK" |
| 205 | select CPU_SUBTYPE_SH7751R |
| 206 | help |
| 207 | I-O DATA DEVICE, INC. "LANDISK Series" support. |
| 208 | |
| 209 | config SH_TITAN |
| 210 | bool "TITAN" |
| 211 | select CPU_SUBTYPE_SH7751R |
| 212 | help |
| 213 | Select Titan if you are configuring for a Nimble Microsystems |
| 214 | NetEngine NP51R. |
| 215 | |
Takashi YOSHII | 51e22e7 | 2006-09-27 17:41:31 +0900 | [diff] [blame] | 216 | config SH_SHMIN |
| 217 | bool "SHMIN" |
| 218 | select CPU_SUBTYPE_SH7706 |
| 219 | help |
Matt LaPlante | 3cb2fcc | 2006-11-30 05:22:59 +0100 | [diff] [blame] | 220 | Select SHMIN if configuring for the SHMIN board. |
Takashi YOSHII | 51e22e7 | 2006-09-27 17:41:31 +0900 | [diff] [blame] | 221 | |
Yoshinori Sato | 9d4436a | 2006-11-05 15:40:13 +0900 | [diff] [blame] | 222 | config SH_7206_SOLUTION_ENGINE |
| 223 | bool "SolutionEngine7206" |
| 224 | select CPU_SUBTYPE_SH7206 |
| 225 | help |
| 226 | Select 7206 SolutionEngine if configuring for a Hitachi SH7206 |
| 227 | evaluation board. |
| 228 | |
| 229 | config SH_7619_SOLUTION_ENGINE |
| 230 | bool "SolutionEngine7619" |
| 231 | select CPU_SUBTYPE_SH7619 |
| 232 | help |
| 233 | Select 7619 SolutionEngine if configuring for a Hitachi SH7619 |
| 234 | evaluation board. |
| 235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | config SH_UNKNOWN |
| 237 | bool "BareCPU" |
| 238 | help |
| 239 | "Bare CPU" aka "unknown" means an SH-based system which is not one |
| 240 | of the specific ones mentioned above, which means you need to enter |
| 241 | all sorts of stuff like CONFIG_MEMORY_START because the config |
| 242 | system doesn't already know what it is. You get a machine vector |
| 243 | without any platform-specific code in it, so things like the RTC may |
| 244 | not work. |
| 245 | |
| 246 | This option is for the early stages of porting to a new machine. |
| 247 | |
| 248 | endchoice |
| 249 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 250 | source "arch/sh/mm/Kconfig" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | config CF_ENABLER |
| 253 | bool "Compact Flash Enabler support" |
Paul Mundt | 5a4053b | 2006-09-27 18:00:19 +0900 | [diff] [blame] | 254 | depends on SH_SOLUTION_ENGINE || SH_UNKNOWN || SH_SH03 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | ---help--- |
| 256 | Compact Flash is a small, removable mass storage device introduced |
| 257 | in 1994 originally as a PCMCIA device. If you say `Y' here, you |
| 258 | compile in support for Compact Flash devices directly connected to |
| 259 | a SuperH processor. A Compact Flash FAQ is available at |
| 260 | <http://www.compactflash.org/faqs/faq.htm>. |
| 261 | |
| 262 | If your board has "Directly Connected" CompactFlash at area 5 or 6, |
| 263 | you may want to enable this option. Then, you can use CF as |
| 264 | primary IDE drive (only tested for SanDisk). |
| 265 | |
| 266 | If in doubt, select 'N'. |
| 267 | |
| 268 | choice |
| 269 | prompt "Compact Flash Connection Area" |
| 270 | depends on CF_ENABLER |
| 271 | default CF_AREA6 |
| 272 | |
| 273 | config CF_AREA5 |
| 274 | bool "Area5" |
| 275 | help |
| 276 | If your board has "Directly Connected" CompactFlash, You should |
| 277 | select the area where your CF is connected to. |
| 278 | |
| 279 | - "Area5" if CompactFlash is connected to Area 5 (0x14000000) |
| 280 | - "Area6" if it is connected to Area 6 (0x18000000) |
| 281 | |
Paul Mundt | 5a4053b | 2006-09-27 18:00:19 +0900 | [diff] [blame] | 282 | "Area6" will work for most boards. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | |
| 284 | config CF_AREA6 |
| 285 | bool "Area6" |
| 286 | |
| 287 | endchoice |
| 288 | |
| 289 | config CF_BASE_ADDR |
| 290 | hex |
| 291 | depends on CF_ENABLER |
| 292 | default "0xb8000000" if CF_AREA6 |
| 293 | default "0xb4000000" if CF_AREA5 |
| 294 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 295 | menu "Processor features" |
| 296 | |
Paul Mundt | 5364408 | 2006-11-21 11:12:19 +0900 | [diff] [blame] | 297 | choice |
| 298 | prompt "Endianess selection" |
| 299 | default CPU_LITTLE_ENDIAN |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 300 | help |
| 301 | Some SuperH machines can be configured for either little or big |
Paul Mundt | 5364408 | 2006-11-21 11:12:19 +0900 | [diff] [blame] | 302 | endian byte order. These modes require different kernels. |
| 303 | |
| 304 | config CPU_LITTLE_ENDIAN |
| 305 | bool "Little Endian" |
| 306 | |
| 307 | config CPU_BIG_ENDIAN |
| 308 | bool "Big Endian" |
| 309 | |
| 310 | endchoice |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 311 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | config SH_FPU |
| 313 | bool "FPU support" |
| 314 | depends on !CPU_SH3 |
| 315 | default y |
| 316 | help |
| 317 | Selecting this option will enable support for SH processors that |
| 318 | have FPU units (ie, SH77xx). |
| 319 | |
| 320 | This option must be set in order to enable the FPU. |
| 321 | |
Takashi YOSHII | 4b56568 | 2006-09-27 17:15:32 +0900 | [diff] [blame] | 322 | config SH_FPU_EMU |
| 323 | bool "FPU emulation support" |
| 324 | depends on !SH_FPU && EXPERIMENTAL |
| 325 | default n |
| 326 | help |
| 327 | Selecting this option will enable support for software FPU emulation. |
| 328 | Most SH-3 users will want to say Y here, whereas most SH-4 users will |
| 329 | want to say N. |
| 330 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | config SH_DSP |
| 332 | bool "DSP support" |
Paul Mundt | e5723e0 | 2006-09-27 17:38:11 +0900 | [diff] [blame] | 333 | default y if SH4AL_DSP || !CPU_SH4 |
| 334 | default n |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | help |
| 336 | Selecting this option will enable support for SH processors that |
Paul Mundt | e5723e0 | 2006-09-27 17:38:11 +0900 | [diff] [blame] | 337 | have DSP units (ie, SH2-DSP, SH3-DSP, and SH4AL-DSP). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | |
| 339 | This option must be set in order to enable the DSP. |
| 340 | |
| 341 | config SH_ADC |
| 342 | bool "ADC support" |
| 343 | depends on CPU_SH3 |
| 344 | default y |
| 345 | help |
| 346 | Selecting this option will allow the Linux kernel to use SH3 on-chip |
| 347 | ADC module. |
| 348 | |
| 349 | If unsure, say N. |
| 350 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | config SH_STORE_QUEUES |
| 352 | bool "Support for Store Queues" |
| 353 | depends on CPU_SH4 |
| 354 | help |
| 355 | Selecting this option will enable an in-kernel API for manipulating |
| 356 | the store queues integrated in the SH-4 processors. |
| 357 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 358 | config CPU_HAS_INTEVT |
| 359 | bool |
| 360 | |
| 361 | config CPU_HAS_PINT_IRQ |
| 362 | bool |
| 363 | |
Paul Mundt | ba46393 | 2006-09-27 18:01:16 +0900 | [diff] [blame] | 364 | config CPU_HAS_MASKREG_IRQ |
| 365 | bool |
| 366 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 367 | config CPU_HAS_INTC2_IRQ |
| 368 | bool |
| 369 | |
| 370 | config CPU_HAS_SR_RB |
| 371 | bool "CPU has SR.RB" |
| 372 | depends on CPU_SH3 || CPU_SH4 |
| 373 | default y |
| 374 | help |
| 375 | This will enable the use of SR.RB register bank usage. Processors |
| 376 | that are lacking this bit must have another method in place for |
| 377 | accomplishing what is taken care of by the banked registers. |
| 378 | |
| 379 | See <file:Documentation/sh/register-banks.txt> for further |
| 380 | information on SR.RB and register banking in the kernel in general. |
| 381 | |
Stuart Menefy | 9b3a53a | 2006-11-24 11:42:24 +0900 | [diff] [blame^] | 382 | config CPU_HAS_PTEA |
| 383 | bool |
| 384 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 385 | endmenu |
| 386 | |
| 387 | menu "Timer support" |
Paul Mundt | 4588214 | 2006-10-04 13:21:45 +0900 | [diff] [blame] | 388 | depends on !GENERIC_TIME |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 389 | |
| 390 | config SH_TMU |
| 391 | bool "TMU timer support" |
Yoshinori Sato | 9d4436a | 2006-11-05 15:40:13 +0900 | [diff] [blame] | 392 | depends on CPU_SH3 || CPU_SH4 |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 393 | default y |
| 394 | help |
| 395 | This enables the use of the TMU as the system timer. |
| 396 | |
Yoshinori Sato | 9d4436a | 2006-11-05 15:40:13 +0900 | [diff] [blame] | 397 | config SH_CMT |
| 398 | bool "CMT timer support" |
| 399 | depends on CPU_SH2 |
| 400 | default y |
| 401 | help |
| 402 | This enables the use of the CMT as the system timer. |
| 403 | |
| 404 | config SH_MTU2 |
| 405 | bool "MTU2 timer support" |
| 406 | depends on CPU_SH2A |
| 407 | default n |
| 408 | help |
| 409 | This enables the use of the MTU2 as the system timer. |
| 410 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 411 | endmenu |
| 412 | |
Paul Mundt | e8fb67f | 2006-09-27 13:56:28 +0900 | [diff] [blame] | 413 | source "arch/sh/boards/renesas/hs7751rvoip/Kconfig" |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 414 | |
Paul Mundt | 36efc35 | 2006-09-27 14:02:09 +0900 | [diff] [blame] | 415 | source "arch/sh/boards/renesas/rts7751r2d/Kconfig" |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 416 | |
Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 417 | source "arch/sh/boards/renesas/r7780rp/Kconfig" |
| 418 | |
Paul Mundt | 417528a | 2006-11-20 11:18:30 +0900 | [diff] [blame] | 419 | config SH_TIMER_IRQ |
| 420 | int |
| 421 | default "28" if CPU_SUBTYPE_SH7780 |
| 422 | default "86" if CPU_SUBTYPE_SH7619 |
| 423 | default "140" if CPU_SUBTYPE_SH7206 |
| 424 | default "16" |
| 425 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 426 | config SH_PCLK_FREQ |
| 427 | int "Peripheral clock frequency (in Hz)" |
Yoshinori Sato | 9d4436a | 2006-11-05 15:40:13 +0900 | [diff] [blame] | 428 | default "27000000" if CPU_SUBTYPE_SH73180 || CPU_SUBTYPE_SH7343 |
| 429 | default "31250000" if CPU_SUBTYPE_SH7619 |
| 430 | default "33333333" if CPU_SUBTYPE_SH7300 || CPU_SUBTYPE_SH7770 || \ |
| 431 | CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7705 || \ |
| 432 | CPU_SUBTYPE_SH7206 |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 433 | default "50000000" if CPU_SUBTYPE_SH7750 || CPU_SUBTYPE_SH7780 |
| 434 | default "60000000" if CPU_SUBTYPE_SH7751 |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 435 | default "66000000" if CPU_SUBTYPE_SH4_202 |
| 436 | help |
| 437 | This option is used to specify the peripheral clock frequency. |
| 438 | This is necessary for determining the reference clock value on |
| 439 | platforms lacking an RTC. |
| 440 | |
Yoshinori Sato | 9d4436a | 2006-11-05 15:40:13 +0900 | [diff] [blame] | 441 | config SH_CLK_MD |
| 442 | int "CPU Mode Pin Setting" |
| 443 | depends on CPU_SUBTYPE_SH7619 || CPU_SUBTYPE_SH7206 |
| 444 | help |
| 445 | MD2 - MD0 Setting. |
| 446 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 447 | menu "CPU Frequency scaling" |
| 448 | |
| 449 | source "drivers/cpufreq/Kconfig" |
| 450 | |
| 451 | config SH_CPU_FREQ |
| 452 | tristate "SuperH CPU Frequency driver" |
| 453 | depends on CPU_FREQ |
| 454 | select CPU_FREQ_TABLE |
| 455 | help |
| 456 | This adds the cpufreq driver for SuperH. At present, only |
| 457 | the SH-4 is supported. |
| 458 | |
| 459 | For details, take a look at <file:Documentation/cpu-freq>. |
| 460 | |
| 461 | If unsure, say N. |
| 462 | |
| 463 | endmenu |
| 464 | |
| 465 | source "arch/sh/drivers/dma/Kconfig" |
| 466 | |
| 467 | source "arch/sh/cchips/Kconfig" |
| 468 | |
| 469 | config HEARTBEAT |
| 470 | bool "Heartbeat LED" |
Paul Mundt | 5a4053b | 2006-09-27 18:00:19 +0900 | [diff] [blame] | 471 | depends on SH_MPC1211 || SH_SH03 || \ |
Paul Mundt | bc8fb5d | 2006-09-27 18:09:34 +0900 | [diff] [blame] | 472 | SH_BIGSUR || SOLUTION_ENGINE || \ |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 473 | SH_RTS7751R2D || SH_SH4202_MICRODEV || SH_LANDISK |
| 474 | help |
| 475 | Use the power-on LED on your machine as a load meter. The exact |
| 476 | behavior is platform-dependent, but normally the flash frequency is |
| 477 | a hyperbolic function of the 5-minute load average. |
| 478 | |
Paul Mundt | 9f5e8ee | 2006-11-24 11:22:57 +0900 | [diff] [blame] | 479 | source "arch/sh/drivers/Kconfig" |
| 480 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 481 | endmenu |
| 482 | |
| 483 | config ISA_DMA_API |
| 484 | bool |
Adrian Bunk | 05efc67 | 2006-02-17 13:52:42 -0800 | [diff] [blame] | 485 | depends on SH_MPC1211 |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 486 | default y |
| 487 | |
| 488 | menu "Kernel features" |
| 489 | |
Paul Mundt | 91b91d0 | 2006-09-27 18:08:33 +0900 | [diff] [blame] | 490 | source kernel/Kconfig.hz |
| 491 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 492 | config KEXEC |
| 493 | bool "kexec system call (EXPERIMENTAL)" |
| 494 | depends on EXPERIMENTAL |
| 495 | help |
| 496 | kexec is a system call that implements the ability to shutdown your |
| 497 | current kernel, and to start another kernel. It is like a reboot |
Matt LaPlante | 1f1332f | 2006-06-29 01:32:47 -0400 | [diff] [blame] | 498 | but it is independent of the system firmware. And like a reboot |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 499 | you can start any kernel with it, not just Linux. |
| 500 | |
Matt LaPlante | 1f1332f | 2006-06-29 01:32:47 -0400 | [diff] [blame] | 501 | The name comes from the similarity to the exec system call. |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 502 | |
| 503 | It is an ongoing process to be certain the hardware in a machine |
| 504 | is properly shutdown, so do not be surprised if this code does not |
| 505 | initially work for you. It may help to enable device hotplugging |
| 506 | support. As of this writing the exact hardware interface is |
| 507 | strongly in flux, so no good recommendation can be made. |
| 508 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | config SMP |
| 510 | bool "Symmetric multi-processing support" |
| 511 | ---help--- |
| 512 | This enables support for systems with more than one CPU. If you have |
| 513 | a system with only one CPU, like most personal computers, say N. If |
| 514 | you have a system with more than one CPU, say Y. |
| 515 | |
| 516 | If you say N here, the kernel will run on single and multiprocessor |
| 517 | machines, but will use only one CPU of a multiprocessor machine. If |
| 518 | you say Y here, the kernel will run on many, but not all, |
| 519 | singleprocessor machines. On a singleprocessor machine, the kernel |
| 520 | will run faster if you say N here. |
| 521 | |
| 522 | People using multiprocessor machines who say Y here should also say |
| 523 | Y to "Enhanced Real Time Clock Support", below. |
| 524 | |
| 525 | See also the <file:Documentation/smp.txt>, |
| 526 | <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available |
| 527 | at <http://www.tldp.org/docs.html#howto>. |
| 528 | |
| 529 | If you don't know what to do here, say N. |
| 530 | |
| 531 | config NR_CPUS |
| 532 | int "Maximum number of CPUs (2-32)" |
| 533 | range 2 32 |
| 534 | depends on SMP |
| 535 | default "2" |
| 536 | help |
| 537 | This allows you to specify the maximum number of CPUs which this |
| 538 | kernel will support. The maximum supported value is 32 and the |
| 539 | minimum value which makes sense is 2. |
| 540 | |
| 541 | This is purely to save memory - each supported CPU adds |
| 542 | approximately eight kilobytes to the kernel image. |
| 543 | |
Paul Mundt | 91b91d0 | 2006-09-27 18:08:33 +0900 | [diff] [blame] | 544 | source "kernel/Kconfig.preempt" |
| 545 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 546 | config CPU_HAS_SR_RB |
| 547 | bool "CPU has SR.RB" |
| 548 | depends on CPU_SH3 || CPU_SH4 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | default y |
| 550 | help |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 551 | This will enable the use of SR.RB register bank usage. Processors |
| 552 | that are lacking this bit must have another method in place for |
| 553 | accomplishing what is taken care of by the banked registers. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 555 | See <file:Documentation/sh/register-banks.txt> for further |
| 556 | information on SR.RB and register banking in the kernel in general. |
| 557 | |
Yasunori Goto | c80d79d | 2006-04-10 22:53:53 -0700 | [diff] [blame] | 558 | config NODES_SHIFT |
| 559 | int |
| 560 | default "1" |
| 561 | depends on NEED_MULTIPLE_NODES |
| 562 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 563 | endmenu |
| 564 | |
| 565 | menu "Boot options" |
| 566 | |
| 567 | config ZERO_PAGE_OFFSET |
| 568 | hex "Zero page offset" |
| 569 | default "0x00004000" if SH_MPC1211 || SH_SH03 |
| 570 | default "0x00001000" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | help |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 572 | This sets the default offset of zero page. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 574 | config BOOT_LINK_OFFSET |
| 575 | hex "Link address offset for booting" |
| 576 | default "0x00800000" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | help |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 578 | This option allows you to set the link address offset of the zImage. |
| 579 | This can be useful if you are on a board which has a small amount of |
| 580 | memory. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 582 | config UBC_WAKEUP |
| 583 | bool "Wakeup UBC on startup" |
| 584 | help |
| 585 | Selecting this option will wakeup the User Break Controller (UBC) on |
| 586 | startup. Although the UBC is left in an awake state when the processor |
| 587 | comes up, some boot loaders misbehave by putting the UBC to sleep in a |
| 588 | power saving state, which causes issues with things like ptrace(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | |
| 590 | If unsure, say N. |
| 591 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 592 | config CMDLINE_BOOL |
| 593 | bool "Default bootloader kernel arguments" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 595 | config CMDLINE |
| 596 | string "Initial kernel command string" |
| 597 | depends on CMDLINE_BOOL |
| 598 | default "console=ttySC1,115200" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | |
| 600 | endmenu |
| 601 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 602 | menu "Bus options" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | |
| 604 | # Even on SuperH devices which don't have an ISA bus, |
| 605 | # this variable helps the PCMCIA modules handle |
| 606 | # IRQ requesting properly -- Greg Banks. |
| 607 | # |
| 608 | # Though we're generally not interested in it when |
| 609 | # we're not using PCMCIA, so we make it dependent on |
| 610 | # PCMCIA outright. -- PFM. |
| 611 | config ISA |
| 612 | bool |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 613 | default y if PCMCIA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | help |
| 615 | Find out whether you have ISA slots on your motherboard. ISA is the |
| 616 | name of a bus system, i.e. the way the CPU talks to the other stuff |
| 617 | inside your box. Other bus systems are PCI, EISA, MicroChannel |
| 618 | (MCA) or VESA. ISA is an older system, now being displaced by PCI; |
| 619 | newer boards don't support it. If you have ISA, say Y, otherwise N. |
| 620 | |
| 621 | config EISA |
| 622 | bool |
| 623 | ---help--- |
| 624 | The Extended Industry Standard Architecture (EISA) bus was |
| 625 | developed as an open alternative to the IBM MicroChannel bus. |
| 626 | |
| 627 | The EISA bus provided some of the features of the IBM MicroChannel |
| 628 | bus while maintaining backward compatibility with cards made for |
| 629 | the older ISA bus. The EISA bus saw limited use between 1988 and |
| 630 | 1995 when it was made obsolete by the PCI bus. |
| 631 | |
| 632 | Say Y here if you are building a kernel for an EISA-based machine. |
| 633 | |
| 634 | Otherwise, say N. |
| 635 | |
| 636 | config MCA |
| 637 | bool |
| 638 | help |
| 639 | MicroChannel Architecture is found in some IBM PS/2 machines and |
| 640 | laptops. It is a bus system similar to PCI or ISA. See |
| 641 | <file:Documentation/mca.txt> (and especially the web page given |
| 642 | there) before attempting to build an MCA bus kernel. |
| 643 | |
| 644 | config SBUS |
| 645 | bool |
| 646 | |
Paul Mundt | cad8244 | 2006-01-16 22:14:19 -0800 | [diff] [blame] | 647 | config SUPERHYWAY |
| 648 | tristate "SuperHyway Bus support" |
| 649 | depends on CPU_SUBTYPE_SH4_202 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | |
| 651 | source "arch/sh/drivers/pci/Kconfig" |
| 652 | |
| 653 | source "drivers/pci/Kconfig" |
| 654 | |
| 655 | source "drivers/pcmcia/Kconfig" |
| 656 | |
| 657 | source "drivers/pci/hotplug/Kconfig" |
| 658 | |
| 659 | endmenu |
| 660 | |
| 661 | menu "Executable file formats" |
| 662 | |
| 663 | source "fs/Kconfig.binfmt" |
| 664 | |
| 665 | endmenu |
| 666 | |
Andriy Skulysh | 3aa770e | 2006-09-27 16:20:22 +0900 | [diff] [blame] | 667 | menu "Power management options (EXPERIMENTAL)" |
| 668 | depends on EXPERIMENTAL |
| 669 | |
| 670 | source kernel/power/Kconfig |
| 671 | |
| 672 | config APM |
| 673 | bool "Advanced Power Management Emulation" |
| 674 | depends on PM |
| 675 | endmenu |
| 676 | |
Sam Ravnborg | d5950b4 | 2005-07-11 21:03:49 -0700 | [diff] [blame] | 677 | source "net/Kconfig" |
| 678 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | source "drivers/Kconfig" |
| 680 | |
| 681 | source "fs/Kconfig" |
| 682 | |
| 683 | source "arch/sh/oprofile/Kconfig" |
| 684 | |
| 685 | source "arch/sh/Kconfig.debug" |
| 686 | |
| 687 | source "security/Kconfig" |
| 688 | |
| 689 | source "crypto/Kconfig" |
| 690 | |
| 691 | source "lib/Kconfig" |