Kconfig 18 KB

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