Kconfig 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488
  1. #
  2. # SATA/PATA driver configuration
  3. #
  4. menu "Serial ATA (prod) and Parallel ATA (experimental) drivers"
  5. config ATA
  6. tristate "ATA device support"
  7. depends on BLOCK
  8. depends on !(M32R || M68K) || BROKEN
  9. depends on !SUN4 || BROKEN
  10. select SCSI
  11. ---help---
  12. If you want to use a ATA hard disk, ATA tape drive, ATA CD-ROM or
  13. any other ATA device under Linux, say Y and make sure that you know
  14. the name of your ATA host adapter (the card inside your computer
  15. that "speaks" the ATA protocol, also called ATA controller),
  16. because you will be asked for it.
  17. if ATA
  18. config SATA_AHCI
  19. tristate "AHCI SATA support"
  20. depends on PCI
  21. help
  22. This option enables support for AHCI Serial ATA.
  23. If unsure, say N.
  24. config SATA_SVW
  25. tristate "ServerWorks Frodo / Apple K2 SATA support"
  26. depends on PCI
  27. help
  28. This option enables support for Broadcom/Serverworks/Apple K2
  29. SATA support.
  30. If unsure, say N.
  31. config ATA_PIIX
  32. tristate "Intel PIIX/ICH SATA support"
  33. depends on PCI
  34. help
  35. This option enables support for ICH5/6/7/8 Serial ATA.
  36. If PATA support was enabled previously, this enables
  37. support for select Intel PIIX/ICH PATA host controllers.
  38. If unsure, say N.
  39. config SATA_MV
  40. tristate "Marvell SATA support (HIGHLY EXPERIMENTAL)"
  41. depends on PCI && EXPERIMENTAL
  42. help
  43. This option enables support for the Marvell Serial ATA family.
  44. Currently supports 88SX[56]0[48][01] chips.
  45. If unsure, say N.
  46. config SATA_NV
  47. tristate "NVIDIA SATA support"
  48. depends on PCI
  49. help
  50. This option enables support for NVIDIA Serial ATA.
  51. If unsure, say N.
  52. config PDC_ADMA
  53. tristate "Pacific Digital ADMA support"
  54. depends on PCI
  55. help
  56. This option enables support for Pacific Digital ADMA controllers
  57. If unsure, say N.
  58. config SATA_QSTOR
  59. tristate "Pacific Digital SATA QStor support"
  60. depends on PCI
  61. help
  62. This option enables support for Pacific Digital Serial ATA QStor.
  63. If unsure, say N.
  64. config SATA_PROMISE
  65. tristate "Promise SATA TX2/TX4 support"
  66. depends on PCI
  67. help
  68. This option enables support for Promise Serial ATA TX2/TX4.
  69. If unsure, say N.
  70. config SATA_SX4
  71. tristate "Promise SATA SX4 support"
  72. depends on PCI && EXPERIMENTAL
  73. help
  74. This option enables support for Promise Serial ATA SX4.
  75. If unsure, say N.
  76. config SATA_SIL
  77. tristate "Silicon Image SATA support"
  78. depends on PCI
  79. help
  80. This option enables support for Silicon Image Serial ATA.
  81. If unsure, say N.
  82. config SATA_SIL24
  83. tristate "Silicon Image 3124/3132 SATA support"
  84. depends on PCI
  85. help
  86. This option enables support for Silicon Image 3124/3132 Serial ATA.
  87. If unsure, say N.
  88. config SATA_SIS
  89. tristate "SiS 964/180 SATA support"
  90. depends on PCI
  91. help
  92. This option enables support for SiS Serial ATA 964/180.
  93. If unsure, say N.
  94. config SATA_ULI
  95. tristate "ULi Electronics SATA support"
  96. depends on PCI
  97. help
  98. This option enables support for ULi Electronics SATA.
  99. If unsure, say N.
  100. config SATA_VIA
  101. tristate "VIA SATA support"
  102. depends on PCI
  103. help
  104. This option enables support for VIA Serial ATA.
  105. If unsure, say N.
  106. config SATA_VITESSE
  107. tristate "VITESSE VSC-7174 / INTEL 31244 SATA support"
  108. depends on PCI
  109. help
  110. This option enables support for Vitesse VSC7174 and Intel 31244 Serial ATA.
  111. If unsure, say N.
  112. config SATA_INTEL_COMBINED
  113. bool
  114. depends on IDE=y && !BLK_DEV_IDE_SATA && (SATA_AHCI || ATA_PIIX)
  115. default y
  116. config PATA_ALI
  117. tristate "ALi PATA support (Experimental)"
  118. depends on PCI && EXPERIMENTAL
  119. help
  120. This option enables support for the ALi ATA interfaces
  121. found on the many ALi chipsets.
  122. If unsure, say N.
  123. config PATA_AMD
  124. tristate "AMD/NVidia PATA support (Experimental)"
  125. depends on PCI
  126. help
  127. This option enables support for the AMD and NVidia PATA
  128. interfaces found on the chipsets for Athlon/Athlon64.
  129. If unsure, say N.
  130. config PATA_ARTOP
  131. tristate "ARTOP 6210/6260 PATA support (Experimental)"
  132. depends on PCI && EXPERIMENTAL
  133. help
  134. This option enables support for ARTOP PATA controllers.
  135. If unsure, say N.
  136. config PATA_ATIIXP
  137. tristate "ATI PATA support (Experimental)"
  138. depends on PCI && EXPERIMENTAL
  139. help
  140. This option enables support for the ATI ATA interfaces
  141. found on the many ATI chipsets.
  142. If unsure, say N.
  143. config PATA_CMD64X
  144. tristate "CMD64x PATA support (Very Experimental)"
  145. depends on PCI&& EXPERIMENTAL
  146. help
  147. This option enables support for the CMD64x series chips
  148. except for the CMD640.
  149. If unsure, say N.
  150. config PATA_CS5520
  151. tristate "CS5510/5520 PATA support"
  152. depends on PCI
  153. help
  154. This option enables support for the Cyrix 5510/5520
  155. companion chip used with the MediaGX/Geode processor family.
  156. If unsure, say N.
  157. config PATA_CS5530
  158. tristate "CS5530 PATA support (Experimental)"
  159. depends on PCI && EXPERIMENTAL
  160. help
  161. This option enables support for the Cyrix/NatSemi/AMD CS5530
  162. companion chip used with the MediaGX/Geode processor family.
  163. If unsure, say N.
  164. config PATA_CS5535
  165. tristate "CS5535 PATA support (Experimental)"
  166. depends on PCI && X86 && !X86_64 && EXPERIMENTAL
  167. help
  168. This option enables support for the NatSemi/AMD CS5535
  169. companion chip used with the Geode processor family.
  170. If unsure, say N.
  171. config PATA_CYPRESS
  172. tristate "Cypress CY82C693 PATA support (Very Experimental)"
  173. depends on PCI && EXPERIMENTAL
  174. help
  175. This option enables support for the Cypress/Contaq CY82C693
  176. chipset found in some Alpha systems
  177. If unsure, say N.
  178. config PATA_EFAR
  179. tristate "EFAR SLC90E66 support"
  180. depends on PCI
  181. help
  182. This option enables support for the EFAR SLC90E66
  183. IDE controller found on some older machines.
  184. If unsure, say N.
  185. config ATA_GENERIC
  186. tristate "Generic ATA support"
  187. depends on PCI
  188. help
  189. This option enables support for generic BIOS configured
  190. ATA controllers via the new ATA layer
  191. If unsure, say N.
  192. config PATA_HPT366
  193. tristate "HPT 366/368 PATA support (Very Experimental)"
  194. depends on PCI && EXPERIMENTAL
  195. help
  196. This option enables support for the HPT 366 and 368
  197. PATA controllers via the new ATA layer.
  198. If unsure, say N.
  199. config PATA_HPT37X
  200. tristate "HPT 370/370A/371/372/374/302 PATA support (Very Experimental)"
  201. depends on PCI && EXPERIMENTAL
  202. help
  203. This option enables support for the majority of the later HPT
  204. PATA controllers via the new ATA layer.
  205. If unsure, say N.
  206. config PATA_HPT3X2N
  207. tristate "HPT 372N/302N PATA support (Very Experimental)"
  208. depends on PCI && EXPERIMENTAL
  209. help
  210. This option enables support for the N variant HPT PATA
  211. controllers via the new ATA layer
  212. If unsure, say N.
  213. config PATA_HPT3X3
  214. tristate "HPT 343/363 PATA support (Experimental)"
  215. depends on PCI
  216. help
  217. This option enables support for the HPT 343/363
  218. PATA controllers via the new ATA layer
  219. If unsure, say N.
  220. config PATA_ISAPNP
  221. tristate "ISA Plug and Play PATA support (Very Experimental)"
  222. depends on EXPERIMENTAL && ISAPNP
  223. help
  224. This option enables support for ISA plug & play ATA
  225. controllers such as those found on old soundcards.
  226. If unsure, say N.
  227. config PATA_IT821X
  228. tristate "IT821x PATA support (Experimental)"
  229. depends on PCI && EXPERIMENTAL
  230. help
  231. This option enables support for the ITE 8211 and 8212
  232. PATA controllers via the new ATA layer, including RAID
  233. mode.
  234. If unsure, say N.
  235. config PATA_JMICRON
  236. tristate "JMicron PATA support"
  237. depends on PCI
  238. help
  239. Enable support for the JMicron IDE controller, via the new
  240. ATA layer.
  241. If unsure, say N.
  242. config PATA_LEGACY
  243. tristate "Legacy ISA PATA support (Experimental)"
  244. depends on ISA && EXPERIMENTAL
  245. help
  246. This option enables support for ISA/VLB bus legacy PATA
  247. ports and allows them to be accessed via the new ATA layer.
  248. If unsure, say N.
  249. config PATA_TRIFLEX
  250. tristate "Compaq Triflex PATA support"
  251. depends on PCI
  252. help
  253. Enable support for the Compaq 'Triflex' IDE controller as found
  254. on many Compaq Pentium-Pro systems, via the new ATA layer.
  255. If unsure, say N.
  256. config PATA_MPIIX
  257. tristate "Intel PATA MPIIX support"
  258. depends on PCI
  259. help
  260. This option enables support for MPIIX PATA support.
  261. If unsure, say N.
  262. config PATA_OLDPIIX
  263. tristate "Intel PATA old PIIX support (Experimental)"
  264. depends on PCI && EXPERIMENTAL
  265. help
  266. This option enables support for old(?) PIIX PATA support.
  267. If unsure, say N.
  268. config PATA_NETCELL
  269. tristate "NETCELL Revolution RAID support"
  270. depends on PCI
  271. help
  272. This option enables support for the Netcell Revolution RAID
  273. PATA controller.
  274. If unsure, say N.
  275. config PATA_NS87410
  276. tristate "Nat Semi NS87410 PATA support (Experimental)"
  277. depends on PCI && EXPERIMENTAL
  278. help
  279. This option enables support for the National Semiconductor
  280. NS87410 PCI-IDE controller.
  281. If unsure, say N.
  282. config PATA_OPTI
  283. tristate "OPTI621/6215 PATA support (Very Experimental)"
  284. depends on PCI && EXPERIMENTAL
  285. help
  286. This option enables full PIO support for the early Opti ATA
  287. controllers found on some old motherboards.
  288. If unsure, say N.
  289. config PATA_OPTIDMA
  290. tristate "OPTI FireStar PATA support (Veyr Experimental)"
  291. depends on PCI && EXPERIMENTAL
  292. help
  293. This option enables DMA/PIO support for the later OPTi
  294. controllers found on some old motherboards and in some
  295. latops
  296. If unsure, say N.
  297. config PATA_PCMCIA
  298. tristate "PCMCIA PATA support"
  299. depends on PCMCIA
  300. help
  301. This option enables support for PCMCIA ATA interfaces, including
  302. compact flash card adapters via the new ATA layer.
  303. If unsure, say N.
  304. config PATA_PDC_OLD
  305. tristate "Older Promise PATA controller support (Very Experimental)"
  306. depends on PCI && EXPERIMENTAL
  307. help
  308. This option enables support for the Promise 20246, 20262, 20263,
  309. 20265 and 20267 adapters.
  310. If unsure, say N.
  311. config PATA_QDI
  312. tristate "QDI VLB PATA support"
  313. depends on ISA
  314. help
  315. Support for QDI 6500 and 6580 PATA controllers on VESA local bus.
  316. config PATA_RADISYS
  317. tristate "RADISYS 82600 PATA support (Very experimental)"
  318. depends on PCI && EXPERIMENTAL
  319. help
  320. This option enables support for the RADISYS 82600
  321. PATA controllers via the new ATA layer
  322. If unsure, say N.
  323. config PATA_RZ1000
  324. tristate "PC Tech RZ1000 PATA support"
  325. depends on PCI
  326. help
  327. This option enables basic support for the PC Tech RZ1000/1
  328. PATA controllers via the new ATA layer
  329. If unsure, say N.
  330. config PATA_SC1200
  331. tristate "SC1200 PATA support (Raving Lunatic)"
  332. depends on PCI && EXPERIMENTAL
  333. help
  334. This option enables support for the NatSemi/AMD SC1200 SoC
  335. companion chip used with the Geode processor family.
  336. If unsure, say N.
  337. config PATA_SERVERWORKS
  338. tristate "SERVERWORKS OSB4/CSB5/CSB6/HT1000 PATA support (Experimental)"
  339. depends on PCI && EXPERIMENTAL
  340. help
  341. This option enables support for the Serverworks OSB4/CSB5/CSB6 and
  342. HT1000 PATA controllers, via the new ATA layer.
  343. If unsure, say N.
  344. config PATA_PDC2027X
  345. tristate "Promise PATA 2027x support"
  346. depends on PCI
  347. help
  348. This option enables support for Promise PATA pdc20268 to pdc20277 host adapters.
  349. If unsure, say N.
  350. config PATA_SIL680
  351. tristate "CMD / Silicon Image 680 PATA support"
  352. depends on PCI
  353. help
  354. This option enables support for CMD / Silicon Image 680 PATA.
  355. If unsure, say N.
  356. config PATA_SIS
  357. tristate "SiS PATA support (Experimental)"
  358. depends on PCI && EXPERIMENTAL
  359. help
  360. This option enables support for SiS PATA controllers
  361. If unsure, say N.
  362. config PATA_VIA
  363. tristate "VIA PATA support"
  364. depends on PCI
  365. help
  366. This option enables support for the VIA PATA interfaces
  367. found on the many VIA chipsets.
  368. If unsure, say N.
  369. config PATA_WINBOND
  370. tristate "Winbond SL82C105 PATA support"
  371. depends on PCI
  372. help
  373. This option enables support for SL82C105 PATA devices found in the
  374. Netwinder and some other systems
  375. If unsure, say N.
  376. endif
  377. endmenu