Kconfig 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see Documentation/kbuild/kconfig-language.txt.
  4. #
  5. mainmenu "Linux/SuperH Kernel Configuration"
  6. config SUPERH
  7. def_bool y
  8. select EMBEDDED
  9. select HAVE_CLK
  10. select HAVE_IDE
  11. select HAVE_OPROFILE
  12. select HAVE_GENERIC_DMA_COHERENT
  13. select HAVE_IOREMAP_PROT
  14. help
  15. The SuperH is a RISC processor targeted for use in embedded systems
  16. and consumer electronics; it was also used in the Sega Dreamcast
  17. gaming console. The SuperH port has a home page at
  18. <http://www.linux-sh.org/>.
  19. config SUPERH32
  20. def_bool !SUPERH64
  21. select HAVE_KPROBES
  22. select HAVE_KRETPROBES
  23. config SUPERH64
  24. def_bool y if CPU_SH5
  25. select GENERIC_CALIBRATE_DELAY
  26. config ARCH_DEFCONFIG
  27. string
  28. default "arch/sh/configs/shx3_defconfig" if SUPERH32
  29. default "arch/sh/configs/cayman_defconfig" if SUPERH64
  30. config RWSEM_GENERIC_SPINLOCK
  31. def_bool y
  32. config RWSEM_XCHGADD_ALGORITHM
  33. bool
  34. config GENERIC_BUG
  35. def_bool y
  36. depends on BUG && SUPERH32
  37. config GENERIC_FIND_NEXT_BIT
  38. def_bool y
  39. config GENERIC_HWEIGHT
  40. def_bool y
  41. config GENERIC_HARDIRQS
  42. def_bool y
  43. config GENERIC_HARDIRQS_NO__DO_IRQ
  44. def_bool y
  45. config GENERIC_IRQ_PROBE
  46. def_bool y
  47. config GENERIC_CALIBRATE_DELAY
  48. bool
  49. config GENERIC_IOMAP
  50. bool
  51. config GENERIC_TIME
  52. def_bool n
  53. config GENERIC_CLOCKEVENTS
  54. def_bool n
  55. config GENERIC_CLOCKEVENTS_BROADCAST
  56. bool
  57. config GENERIC_LOCKBREAK
  58. def_bool y
  59. depends on SMP && PREEMPT
  60. config SYS_SUPPORTS_PM
  61. bool
  62. config SYS_SUPPORTS_APM_EMULATION
  63. bool
  64. select SYS_SUPPORTS_PM
  65. config SYS_SUPPORTS_SMP
  66. bool
  67. config SYS_SUPPORTS_NUMA
  68. bool
  69. config SYS_SUPPORTS_PCI
  70. bool
  71. config STACKTRACE_SUPPORT
  72. def_bool y
  73. config LOCKDEP_SUPPORT
  74. def_bool y
  75. config ARCH_HAS_ILOG2_U32
  76. def_bool n
  77. config ARCH_HAS_ILOG2_U64
  78. def_bool n
  79. config ARCH_NO_VIRT_TO_BUS
  80. def_bool y
  81. config IO_TRAPPED
  82. bool
  83. source "init/Kconfig"
  84. menu "System type"
  85. #
  86. # Processor families
  87. #
  88. config CPU_SH2
  89. bool
  90. config CPU_SH2A
  91. bool
  92. select CPU_SH2
  93. config CPU_SH3
  94. bool
  95. select CPU_HAS_INTEVT
  96. select CPU_HAS_SR_RB
  97. config CPU_SH4
  98. bool
  99. select CPU_HAS_INTEVT
  100. select CPU_HAS_SR_RB
  101. select CPU_HAS_PTEA if !CPU_SH4A || CPU_SHX2
  102. select CPU_HAS_FPU if !CPU_SH4AL_DSP
  103. config CPU_SH4A
  104. bool
  105. select CPU_SH4
  106. config CPU_SH4AL_DSP
  107. bool
  108. select CPU_SH4A
  109. select CPU_HAS_DSP
  110. config CPU_SH5
  111. bool
  112. select CPU_HAS_FPU
  113. config CPU_SHX2
  114. bool
  115. config CPU_SHX3
  116. bool
  117. choice
  118. prompt "Processor sub-type selection"
  119. #
  120. # Processor subtypes
  121. #
  122. # SH-2 Processor Support
  123. config CPU_SUBTYPE_SH7619
  124. bool "Support SH7619 processor"
  125. select CPU_SH2
  126. # SH-2A Processor Support
  127. config CPU_SUBTYPE_SH7203
  128. bool "Support SH7203 processor"
  129. select CPU_SH2A
  130. select CPU_HAS_FPU
  131. config CPU_SUBTYPE_SH7206
  132. bool "Support SH7206 processor"
  133. select CPU_SH2A
  134. config CPU_SUBTYPE_SH7263
  135. bool "Support SH7263 processor"
  136. select CPU_SH2A
  137. select CPU_HAS_FPU
  138. config CPU_SUBTYPE_MXG
  139. bool "Support MX-G processor"
  140. select CPU_SH2A
  141. help
  142. Select MX-G if running on an R8A03022BG part.
  143. # SH-3 Processor Support
  144. config CPU_SUBTYPE_SH7705
  145. bool "Support SH7705 processor"
  146. select CPU_SH3
  147. config CPU_SUBTYPE_SH7706
  148. bool "Support SH7706 processor"
  149. select CPU_SH3
  150. help
  151. Select SH7706 if you have a 133 Mhz SH-3 HD6417706 CPU.
  152. config CPU_SUBTYPE_SH7707
  153. bool "Support SH7707 processor"
  154. select CPU_SH3
  155. help
  156. Select SH7707 if you have a 60 Mhz SH-3 HD6417707 CPU.
  157. config CPU_SUBTYPE_SH7708
  158. bool "Support SH7708 processor"
  159. select CPU_SH3
  160. help
  161. Select SH7708 if you have a 60 Mhz SH-3 HD6417708S or
  162. if you have a 100 Mhz SH-3 HD6417708R CPU.
  163. config CPU_SUBTYPE_SH7709
  164. bool "Support SH7709 processor"
  165. select CPU_SH3
  166. help
  167. Select SH7709 if you have a 80 Mhz SH-3 HD6417709 CPU.
  168. config CPU_SUBTYPE_SH7710
  169. bool "Support SH7710 processor"
  170. select CPU_SH3
  171. select CPU_HAS_DSP
  172. help
  173. Select SH7710 if you have a SH3-DSP SH7710 CPU.
  174. config CPU_SUBTYPE_SH7712
  175. bool "Support SH7712 processor"
  176. select CPU_SH3
  177. select CPU_HAS_DSP
  178. help
  179. Select SH7712 if you have a SH3-DSP SH7712 CPU.
  180. config CPU_SUBTYPE_SH7720
  181. bool "Support SH7720 processor"
  182. select CPU_SH3
  183. select CPU_HAS_DSP
  184. help
  185. Select SH7720 if you have a SH3-DSP SH7720 CPU.
  186. config CPU_SUBTYPE_SH7721
  187. bool "Support SH7721 processor"
  188. select CPU_SH3
  189. select CPU_HAS_DSP
  190. help
  191. Select SH7721 if you have a SH3-DSP SH7721 CPU.
  192. # SH-4 Processor Support
  193. config CPU_SUBTYPE_SH7750
  194. bool "Support SH7750 processor"
  195. select CPU_SH4
  196. help
  197. Select SH7750 if you have a 200 Mhz SH-4 HD6417750 CPU.
  198. config CPU_SUBTYPE_SH7091
  199. bool "Support SH7091 processor"
  200. select CPU_SH4
  201. help
  202. Select SH7091 if you have an SH-4 based Sega device (such as
  203. the Dreamcast, Naomi, and Naomi 2).
  204. config CPU_SUBTYPE_SH7750R
  205. bool "Support SH7750R processor"
  206. select CPU_SH4
  207. config CPU_SUBTYPE_SH7750S
  208. bool "Support SH7750S processor"
  209. select CPU_SH4
  210. config CPU_SUBTYPE_SH7751
  211. bool "Support SH7751 processor"
  212. select CPU_SH4
  213. help
  214. Select SH7751 if you have a 166 Mhz SH-4 HD6417751 CPU,
  215. or if you have a HD6417751R CPU.
  216. config CPU_SUBTYPE_SH7751R
  217. bool "Support SH7751R processor"
  218. select CPU_SH4
  219. config CPU_SUBTYPE_SH7760
  220. bool "Support SH7760 processor"
  221. select CPU_SH4
  222. config CPU_SUBTYPE_SH4_202
  223. bool "Support SH4-202 processor"
  224. select CPU_SH4
  225. # SH-4A Processor Support
  226. config CPU_SUBTYPE_SH7723
  227. bool "Support SH7723 processor"
  228. select CPU_SH4A
  229. select CPU_SHX2
  230. select ARCH_SPARSEMEM_ENABLE
  231. help
  232. Select SH7723 if you have an SH-MobileR2 CPU.
  233. config CPU_SUBTYPE_SH7763
  234. bool "Support SH7763 processor"
  235. select CPU_SH4A
  236. help
  237. Select SH7763 if you have a SH4A SH7763(R5S77631) CPU.
  238. config CPU_SUBTYPE_SH7770
  239. bool "Support SH7770 processor"
  240. select CPU_SH4A
  241. config CPU_SUBTYPE_SH7780
  242. bool "Support SH7780 processor"
  243. select CPU_SH4A
  244. config CPU_SUBTYPE_SH7785
  245. bool "Support SH7785 processor"
  246. select CPU_SH4A
  247. select CPU_SHX2
  248. select ARCH_SPARSEMEM_ENABLE
  249. select SYS_SUPPORTS_NUMA
  250. config CPU_SUBTYPE_SHX3
  251. bool "Support SH-X3 processor"
  252. select CPU_SH4A
  253. select CPU_SHX3
  254. select ARCH_SPARSEMEM_ENABLE
  255. select SYS_SUPPORTS_NUMA
  256. select SYS_SUPPORTS_SMP
  257. select GENERIC_CLOCKEVENTS_BROADCAST if SMP
  258. # SH4AL-DSP Processor Support
  259. config CPU_SUBTYPE_SH7343
  260. bool "Support SH7343 processor"
  261. select CPU_SH4AL_DSP
  262. config CPU_SUBTYPE_SH7722
  263. bool "Support SH7722 processor"
  264. select CPU_SH4AL_DSP
  265. select CPU_SHX2
  266. select ARCH_SPARSEMEM_ENABLE
  267. select SYS_SUPPORTS_NUMA
  268. config CPU_SUBTYPE_SH7366
  269. bool "Support SH7366 processor"
  270. select CPU_SH4AL_DSP
  271. select CPU_SHX2
  272. select ARCH_SPARSEMEM_ENABLE
  273. select SYS_SUPPORTS_NUMA
  274. # SH-5 Processor Support
  275. config CPU_SUBTYPE_SH5_101
  276. bool "Support SH5-101 processor"
  277. select CPU_SH5
  278. config CPU_SUBTYPE_SH5_103
  279. bool "Support SH5-103 processor"
  280. select CPU_SH5
  281. endchoice
  282. source "arch/sh/mm/Kconfig"
  283. source "arch/sh/Kconfig.cpu"
  284. source "arch/sh/boards/Kconfig"
  285. menu "Timer and clock configuration"
  286. config SH_TMU
  287. def_bool y
  288. prompt "TMU timer support"
  289. depends on CPU_SH3 || CPU_SH4
  290. select GENERIC_TIME
  291. select GENERIC_CLOCKEVENTS
  292. help
  293. This enables the use of the TMU as the system timer.
  294. config SH_CMT
  295. def_bool y
  296. prompt "CMT timer support"
  297. depends on CPU_SH2 && !CPU_SUBTYPE_MXG
  298. help
  299. This enables the use of the CMT as the system timer.
  300. config SH_MTU2
  301. def_bool n
  302. prompt "MTU2 timer support"
  303. depends on CPU_SH2A
  304. help
  305. This enables the use of the MTU2 as the system timer.
  306. config SH_TIMER_IRQ
  307. int
  308. default "28" if CPU_SUBTYPE_SH7780 || CPU_SUBTYPE_SH7785 || \
  309. CPU_SUBTYPE_SH7763
  310. default "86" if CPU_SUBTYPE_SH7619
  311. default "140" if CPU_SUBTYPE_SH7206
  312. default "142" if CPU_SUBTYPE_SH7203
  313. default "238" if CPU_SUBTYPE_MXG
  314. default "16"
  315. config SH_PCLK_FREQ
  316. int "Peripheral clock frequency (in Hz)"
  317. default "27000000" if CPU_SUBTYPE_SH7343
  318. default "31250000" if CPU_SUBTYPE_SH7619
  319. default "32000000" if CPU_SUBTYPE_SH7722
  320. default "33333333" if CPU_SUBTYPE_SH7770 || CPU_SUBTYPE_SH7723 || \
  321. CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7705 || \
  322. CPU_SUBTYPE_SH7203 || CPU_SUBTYPE_SH7206 || \
  323. CPU_SUBTYPE_SH7263 || CPU_SUBTYPE_MXG
  324. default "60000000" if CPU_SUBTYPE_SH7751 || CPU_SUBTYPE_SH7751R
  325. default "66000000" if CPU_SUBTYPE_SH4_202
  326. default "50000000"
  327. help
  328. This option is used to specify the peripheral clock frequency.
  329. This is necessary for determining the reference clock value on
  330. platforms lacking an RTC.
  331. config SH_CLK_MD
  332. int "CPU Mode Pin Setting"
  333. depends on CPU_SH2
  334. default 6 if CPU_SUBTYPE_SH7206
  335. default 5 if CPU_SUBTYPE_SH7619
  336. default 0
  337. help
  338. MD2 - MD0 pin setting.
  339. source "kernel/time/Kconfig"
  340. endmenu
  341. menu "CPU Frequency scaling"
  342. source "drivers/cpufreq/Kconfig"
  343. config SH_CPU_FREQ
  344. tristate "SuperH CPU Frequency driver"
  345. depends on CPU_FREQ
  346. select CPU_FREQ_TABLE
  347. help
  348. This adds the cpufreq driver for SuperH. At present, only
  349. the SH-4 is supported.
  350. For details, take a look at <file:Documentation/cpu-freq>.
  351. If unsure, say N.
  352. endmenu
  353. source "arch/sh/drivers/Kconfig"
  354. endmenu
  355. config ISA_DMA_API
  356. bool
  357. menu "Kernel features"
  358. source kernel/Kconfig.hz
  359. config KEXEC
  360. bool "kexec system call (EXPERIMENTAL)"
  361. depends on SUPERH32 && EXPERIMENTAL
  362. help
  363. kexec is a system call that implements the ability to shutdown your
  364. current kernel, and to start another kernel. It is like a reboot
  365. but it is independent of the system firmware. And like a reboot
  366. you can start any kernel with it, not just Linux.
  367. The name comes from the similarity to the exec system call.
  368. It is an ongoing process to be certain the hardware in a machine
  369. is properly shutdown, so do not be surprised if this code does not
  370. initially work for you. It may help to enable device hotplugging
  371. support. As of this writing the exact hardware interface is
  372. strongly in flux, so no good recommendation can be made.
  373. config CRASH_DUMP
  374. bool "kernel crash dumps (EXPERIMENTAL)"
  375. depends on SUPERH32 && EXPERIMENTAL
  376. help
  377. Generate crash dump after being started by kexec.
  378. This should be normally only set in special crash dump kernels
  379. which are loaded in the main kernel with kexec-tools into
  380. a specially reserved region and then later executed after
  381. a crash by kdump/kexec. The crash dump kernel must be compiled
  382. to a memory address not used by the main kernel using
  383. MEMORY_START.
  384. For more details see Documentation/kdump/kdump.txt
  385. config SECCOMP
  386. bool "Enable seccomp to safely compute untrusted bytecode"
  387. depends on PROC_FS
  388. help
  389. This kernel feature is useful for number crunching applications
  390. that may need to compute untrusted bytecode during their
  391. execution. By using pipes or other transports made available to
  392. the process as file descriptors supporting the read/write
  393. syscalls, it's possible to isolate those applications in
  394. their own address space using seccomp. Once seccomp is
  395. enabled via prctl, it cannot be disabled and the task is only
  396. allowed to execute a few safe syscalls defined by each seccomp
  397. mode.
  398. If unsure, say N.
  399. config SMP
  400. bool "Symmetric multi-processing support"
  401. depends on SYS_SUPPORTS_SMP
  402. select USE_GENERIC_SMP_HELPERS
  403. ---help---
  404. This enables support for systems with more than one CPU. If you have
  405. a system with only one CPU, like most personal computers, say N. If
  406. you have a system with more than one CPU, say Y.
  407. If you say N here, the kernel will run on single and multiprocessor
  408. machines, but will use only one CPU of a multiprocessor machine. If
  409. you say Y here, the kernel will run on many, but not all,
  410. singleprocessor machines. On a singleprocessor machine, the kernel
  411. will run faster if you say N here.
  412. People using multiprocessor machines who say Y here should also say
  413. Y to "Enhanced Real Time Clock Support", below.
  414. See also <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO
  415. available at <http://www.tldp.org/docs.html#howto>.
  416. If you don't know what to do here, say N.
  417. config NR_CPUS
  418. int "Maximum number of CPUs (2-32)"
  419. range 2 32
  420. depends on SMP
  421. default "4" if CPU_SHX3
  422. default "2"
  423. help
  424. This allows you to specify the maximum number of CPUs which this
  425. kernel will support. The maximum supported value is 32 and the
  426. minimum value which makes sense is 2.
  427. This is purely to save memory - each supported CPU adds
  428. approximately eight kilobytes to the kernel image.
  429. source "kernel/Kconfig.preempt"
  430. config GUSA
  431. def_bool y
  432. depends on !SMP && SUPERH32
  433. help
  434. This enables support for gUSA (general UserSpace Atomicity).
  435. This is the default implementation for both UP and non-ll/sc
  436. CPUs, and is used by the libc, amongst others.
  437. For additional information, design information can be found
  438. in <http://lc.linux.or.jp/lc2002/papers/niibe0919p.pdf>.
  439. This should only be disabled for special cases where alternate
  440. atomicity implementations exist.
  441. config GUSA_RB
  442. bool "Implement atomic operations by roll-back (gRB) (EXPERIMENTAL)"
  443. depends on GUSA && CPU_SH3 || (CPU_SH4 && !CPU_SH4A)
  444. help
  445. Enabling this option will allow the kernel to implement some
  446. atomic operations using a software implemention of load-locked/
  447. store-conditional (LLSC). On machines which do not have hardware
  448. LLSC, this should be more efficient than the other alternative of
  449. disabling insterrupts around the atomic sequence.
  450. endmenu
  451. menu "Boot options"
  452. config ZERO_PAGE_OFFSET
  453. hex "Zero page offset"
  454. default "0x00004000" if SH_SH03
  455. default "0x00010000" if PAGE_SIZE_64KB
  456. default "0x00002000" if PAGE_SIZE_8KB
  457. default "0x00001000"
  458. help
  459. This sets the default offset of zero page.
  460. config BOOT_LINK_OFFSET
  461. hex "Link address offset for booting"
  462. default "0x00800000"
  463. help
  464. This option allows you to set the link address offset of the zImage.
  465. This can be useful if you are on a board which has a small amount of
  466. memory.
  467. config UBC_WAKEUP
  468. bool "Wakeup UBC on startup"
  469. depends on CPU_SH4 && !CPU_SH4A
  470. help
  471. Selecting this option will wakeup the User Break Controller (UBC) on
  472. startup. Although the UBC is left in an awake state when the processor
  473. comes up, some boot loaders misbehave by putting the UBC to sleep in a
  474. power saving state, which causes issues with things like ptrace().
  475. If unsure, say N.
  476. config CMDLINE_BOOL
  477. bool "Default bootloader kernel arguments"
  478. config CMDLINE
  479. string "Initial kernel command string"
  480. depends on CMDLINE_BOOL
  481. default "console=ttySC1,115200"
  482. endmenu
  483. menu "Bus options"
  484. # Even on SuperH devices which don't have an ISA bus,
  485. # this variable helps the PCMCIA modules handle
  486. # IRQ requesting properly -- Greg Banks.
  487. #
  488. # Though we're generally not interested in it when
  489. # we're not using PCMCIA, so we make it dependent on
  490. # PCMCIA outright. -- PFM.
  491. config ISA
  492. def_bool y
  493. depends on PCMCIA && HD6446X_SERIES
  494. help
  495. Find out whether you have ISA slots on your motherboard. ISA is the
  496. name of a bus system, i.e. the way the CPU talks to the other stuff
  497. inside your box. Other bus systems are PCI, EISA, MicroChannel
  498. (MCA) or VESA. ISA is an older system, now being displaced by PCI;
  499. newer boards don't support it. If you have ISA, say Y, otherwise N.
  500. config EISA
  501. bool
  502. ---help---
  503. The Extended Industry Standard Architecture (EISA) bus was
  504. developed as an open alternative to the IBM MicroChannel bus.
  505. The EISA bus provided some of the features of the IBM MicroChannel
  506. bus while maintaining backward compatibility with cards made for
  507. the older ISA bus. The EISA bus saw limited use between 1988 and
  508. 1995 when it was made obsolete by the PCI bus.
  509. Say Y here if you are building a kernel for an EISA-based machine.
  510. Otherwise, say N.
  511. config MCA
  512. bool
  513. help
  514. MicroChannel Architecture is found in some IBM PS/2 machines and
  515. laptops. It is a bus system similar to PCI or ISA. See
  516. <file:Documentation/mca.txt> (and especially the web page given
  517. there) before attempting to build an MCA bus kernel.
  518. config SBUS
  519. bool
  520. config SUPERHYWAY
  521. tristate "SuperHyway Bus support"
  522. depends on CPU_SUBTYPE_SH4_202
  523. config MAPLE
  524. bool "Maple Bus support"
  525. depends on SH_DREAMCAST
  526. help
  527. The Maple Bus is SEGA's serial communication bus for peripherals
  528. on the Dreamcast. Without this bus support you won't be able to
  529. get your Dreamcast keyboard etc to work, so most users
  530. probably want to say 'Y' here, unless you are only using the
  531. Dreamcast with a serial line terminal or a remote network
  532. connection.
  533. config CF_ENABLER
  534. bool "Compact Flash Enabler support"
  535. depends on SOLUTION_ENGINE || SH_SH03
  536. ---help---
  537. Compact Flash is a small, removable mass storage device introduced
  538. in 1994 originally as a PCMCIA device. If you say `Y' here, you
  539. compile in support for Compact Flash devices directly connected to
  540. a SuperH processor. A Compact Flash FAQ is available at
  541. <http://www.compactflash.org/faqs/faq.htm>.
  542. If your board has "Directly Connected" CompactFlash at area 5 or 6,
  543. you may want to enable this option. Then, you can use CF as
  544. primary IDE drive (only tested for SanDisk).
  545. If in doubt, select 'N'.
  546. choice
  547. prompt "Compact Flash Connection Area"
  548. depends on CF_ENABLER
  549. default CF_AREA6
  550. config CF_AREA5
  551. bool "Area5"
  552. help
  553. If your board has "Directly Connected" CompactFlash, You should
  554. select the area where your CF is connected to.
  555. - "Area5" if CompactFlash is connected to Area 5 (0x14000000)
  556. - "Area6" if it is connected to Area 6 (0x18000000)
  557. "Area6" will work for most boards.
  558. config CF_AREA6
  559. bool "Area6"
  560. endchoice
  561. config CF_BASE_ADDR
  562. hex
  563. depends on CF_ENABLER
  564. default "0xb8000000" if CF_AREA6
  565. default "0xb4000000" if CF_AREA5
  566. source "arch/sh/drivers/pci/Kconfig"
  567. source "drivers/pci/Kconfig"
  568. source "drivers/pcmcia/Kconfig"
  569. source "drivers/pci/hotplug/Kconfig"
  570. endmenu
  571. menu "Executable file formats"
  572. source "fs/Kconfig.binfmt"
  573. endmenu
  574. menu "Power management options (EXPERIMENTAL)"
  575. depends on EXPERIMENTAL && SYS_SUPPORTS_PM
  576. config ARCH_SUSPEND_POSSIBLE
  577. def_bool y
  578. depends on !SMP
  579. source kernel/power/Kconfig
  580. endmenu
  581. source "net/Kconfig"
  582. source "drivers/Kconfig"
  583. source "fs/Kconfig"
  584. source "arch/sh/Kconfig.debug"
  585. source "security/Kconfig"
  586. source "crypto/Kconfig"
  587. source "lib/Kconfig"