Kconfig 14 KB

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