Kconfig 18 KB

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