Kconfig 13 KB

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