Kconfig 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. #
  2. # PCCARD (PCMCIA/CardBus) bus subsystem configuration
  3. #
  4. menu "PCCARD (PCMCIA/CardBus) support"
  5. config PCCARD
  6. tristate "PCCard (PCMCIA/CardBus) support"
  7. depends on HOTPLUG
  8. ---help---
  9. Say Y here if you want to attach PCMCIA- or PC-cards to your Linux
  10. computer. These are credit-card size devices such as network cards,
  11. modems or hard drives often used with laptops computers. There are
  12. actually two varieties of these cards: 16 bit PCMCIA and 32 bit
  13. CardBus cards.
  14. To compile this driver as modules, choose M here: the
  15. module will be called pcmcia_core.
  16. if PCCARD
  17. config PCMCIA_DEBUG
  18. bool "Enable PCCARD debugging"
  19. help
  20. Say Y here to enable PCMCIA subsystem debugging. You
  21. will need to choose the debugging level either via the
  22. kernel command line, or module options depending whether
  23. you build the PCMCIA as modules.
  24. The kernel command line options are:
  25. pcmcia_core.pc_debug=N
  26. pcmcia.pc_debug=N
  27. sa11xx_core.pc_debug=N
  28. The module option is called pc_debug=N
  29. In all the above examples, N is the debugging verbosity
  30. level.
  31. config PCMCIA
  32. tristate "16-bit PCMCIA support"
  33. select CRC32
  34. default y
  35. ---help---
  36. This option enables support for 16-bit PCMCIA cards. Most older
  37. PC-cards are such 16-bit PCMCIA cards, so unless you know you're
  38. only using 32-bit CardBus cards, say Y or M here.
  39. To use 16-bit PCMCIA cards, you will need supporting software in
  40. most cases. (see the file <file:Documentation/Changes> for
  41. location and details).
  42. To compile this driver as modules, choose M here: the
  43. module will be called pcmcia.
  44. If unsure, say Y.
  45. config PCMCIA_LOAD_CIS
  46. bool "Load CIS updates from userspace (EXPERIMENTAL)"
  47. depends on PCMCIA && EXPERIMENTAL
  48. select FW_LOADER
  49. default y
  50. help
  51. Some PCMCIA cards require an updated Card Information Structure (CIS)
  52. to be loaded from userspace to work correctly. If you say Y here,
  53. and your userspace is arranged correctly, this will be loaded
  54. automatically using the in-kernel firmware loader and the hotplug
  55. subsystem, instead of relying on cardmgr from pcmcia-cs to do so.
  56. If unsure, say Y.
  57. config PCMCIA_IOCTL
  58. bool "PCMCIA control ioctl (obsolete)"
  59. depends on PCMCIA
  60. default y
  61. help
  62. If you say Y here, the deprecated ioctl interface to the PCMCIA
  63. subsystem will be built. It is needed by cardmgr and cardctl
  64. (pcmcia-cs) to function properly.
  65. You should use the new pcmciautils package instead (see
  66. <file:Documentation/Changes> for location and details).
  67. If unsure, say Y.
  68. config CARDBUS
  69. bool "32-bit CardBus support"
  70. depends on PCI
  71. default y
  72. ---help---
  73. CardBus is a bus mastering architecture for PC-cards, which allows
  74. for 32 bit PC-cards (the original PCMCIA standard specifies only
  75. a 16 bit wide bus). Many newer PC-cards are actually CardBus cards.
  76. To use 32 bit PC-cards, you also need a CardBus compatible host
  77. bridge. Virtually all modern PCMCIA bridges do this, and most of
  78. them are "yenta-compatible", so say Y or M there, too.
  79. If unsure, say Y.
  80. comment "PC-card bridges"
  81. config YENTA
  82. tristate "CardBus yenta-compatible bridge support"
  83. depends on PCI
  84. select CARDBUS if !EMBEDDED
  85. select PCCARD_NONSTATIC
  86. ---help---
  87. This option enables support for CardBus host bridges. Virtually
  88. all modern PCMCIA bridges are CardBus compatible. A "bridge" is
  89. the hardware inside your computer that PCMCIA cards are plugged
  90. into.
  91. To compile this driver as modules, choose M here: the
  92. module will be called yenta_socket.
  93. If unsure, say Y.
  94. config YENTA_O2
  95. default y
  96. bool "Special initialization for O2Micro bridges" if EMBEDDED
  97. depends on YENTA
  98. config YENTA_RICOH
  99. default y
  100. bool "Special initialization for Ricoh bridges" if EMBEDDED
  101. depends on YENTA
  102. config YENTA_TI
  103. default y
  104. bool "Special initialization for TI and EnE bridges" if EMBEDDED
  105. depends on YENTA
  106. config YENTA_ENE_TUNE
  107. default y
  108. bool "Auto-tune EnE bridges for CB cards" if EMBEDDED
  109. depends on YENTA_TI && CARDBUS
  110. config YENTA_TOSHIBA
  111. default y
  112. bool "Special initialization for Toshiba ToPIC bridges" if EMBEDDED
  113. depends on YENTA
  114. config PD6729
  115. tristate "Cirrus PD6729 compatible bridge support"
  116. depends on PCMCIA && PCI
  117. select PCCARD_NONSTATIC
  118. help
  119. This provides support for the Cirrus PD6729 PCI-to-PCMCIA bridge
  120. device, found in some older laptops and PCMCIA card readers.
  121. config I82092
  122. tristate "i82092 compatible bridge support"
  123. depends on PCMCIA && PCI
  124. select PCCARD_NONSTATIC
  125. help
  126. This provides support for the Intel I82092AA PCI-to-PCMCIA bridge device,
  127. found in some older laptops and more commonly in evaluation boards for the
  128. chip.
  129. config I82365
  130. tristate "i82365 compatible bridge support"
  131. depends on PCMCIA && ISA
  132. select PCCARD_NONSTATIC
  133. help
  134. Say Y here to include support for ISA-bus PCMCIA host bridges that
  135. are register compatible with the Intel i82365. These are found on
  136. older laptops and ISA-bus card readers for desktop systems. A
  137. "bridge" is the hardware inside your computer that PCMCIA cards are
  138. plugged into. If unsure, say N.
  139. config TCIC
  140. tristate "Databook TCIC host bridge support"
  141. depends on PCMCIA && ISA
  142. select PCCARD_NONSTATIC
  143. help
  144. Say Y here to include support for the Databook TCIC family of PCMCIA
  145. host bridges. These are only found on a handful of old systems.
  146. "Bridge" is the name used for the hardware inside your computer that
  147. PCMCIA cards are plugged into. If unsure, say N.
  148. config PCMCIA_M8XX
  149. tristate "MPC8xx PCMCIA support"
  150. depends on PCMCIA && PPC && 8xx
  151. select PCCARD_IODYN
  152. help
  153. Say Y here to include support for PowerPC 8xx series PCMCIA
  154. controller.
  155. This driver is also available as a module called m8xx_pcmcia.
  156. config HD64465_PCMCIA
  157. tristate "HD64465 host bridge support"
  158. depends on HD64465 && PCMCIA
  159. config PCMCIA_AU1X00
  160. tristate "Au1x00 pcmcia support"
  161. depends on SOC_AU1X00 && PCMCIA
  162. config PCMCIA_SA1100
  163. tristate "SA1100 support"
  164. depends on ARM && ARCH_SA1100 && PCMCIA
  165. help
  166. Say Y here to include support for SA11x0-based PCMCIA or CF
  167. sockets, found on HP iPAQs, Yopy, and other StrongARM(R)/
  168. Xscale(R) embedded machines.
  169. This driver is also available as a module called sa1100_cs.
  170. config PCMCIA_SA1111
  171. tristate "SA1111 support"
  172. depends on ARM && ARCH_SA1100 && SA1111 && PCMCIA
  173. help
  174. Say Y here to include support for SA1111-based PCMCIA or CF
  175. sockets, found on the Jornada 720, Graphicsmaster and other
  176. StrongARM(R)/Xscale(R) embedded machines.
  177. This driver is also available as a module called sa1111_cs.
  178. config PCMCIA_PXA2XX
  179. tristate "PXA2xx support"
  180. depends on ARM && ARCH_PXA && PCMCIA
  181. help
  182. Say Y here to include support for the PXA2xx PCMCIA controller
  183. config PCMCIA_PROBE
  184. bool
  185. default y if ISA && !ARCH_SA1100 && !ARCH_CLPS711X && !PARISC
  186. config M32R_PCC
  187. bool "M32R PCMCIA I/F"
  188. depends on M32R && CHIP_M32700 && PCMCIA
  189. select PCCARD_NONSTATIC
  190. help
  191. Say Y here to use the M32R PCMCIA controller.
  192. config M32R_CFC
  193. bool "M32R CF I/F Controller"
  194. depends on M32R && (PLAT_USRV || PLAT_M32700UT || PLAT_MAPPI2 || PLAT_MAPPI3 || PLAT_OPSPUT)
  195. select PCCARD_NONSTATIC
  196. help
  197. Say Y here to use the M32R CompactFlash controller.
  198. config M32R_CFC_NUM
  199. int "M32R CF I/F number"
  200. depends on M32R_CFC
  201. default "1" if PLAT_USRV || PLAT_M32700UT || PLAT_MAPPI2 || PLAT_MAPPI3 || PLAT_OPSPUT
  202. help
  203. Set the number of M32R CF slots.
  204. config PCMCIA_VRC4171
  205. tristate "NEC VRC4171 Card Controllers support"
  206. depends on CPU_VR41XX && ISA && PCMCIA
  207. config PCMCIA_VRC4173
  208. tristate "NEC VRC4173 CARDU support"
  209. depends on CPU_VR41XX && PCI && PCMCIA
  210. config OMAP_CF
  211. tristate "OMAP CompactFlash Controller"
  212. depends on PCMCIA && ARCH_OMAP16XX
  213. help
  214. Say Y here to support the CompactFlash controller on OMAP.
  215. Note that this doesn't support "True IDE" mode.
  216. config AT91_CF
  217. tristate "AT91 CompactFlash Controller"
  218. depends on PCMCIA && ARCH_AT91RM9200
  219. help
  220. Say Y here to support the CompactFlash controller on AT91 chips.
  221. Or choose M to compile the driver as a module named "at91_cf".
  222. config PCCARD_NONSTATIC
  223. tristate
  224. config PCCARD_IODYN
  225. bool
  226. endif # PCCARD
  227. endmenu