Kconfig 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576
  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 ESB, ICH, PIIX3, PIIX4 PATA/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 ESB/ICH/PIIX3/PIIX4 series
  40. 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/965/966/180 SATA support"
  93. depends on PCI
  94. select PATA_SIS
  95. help
  96. This option enables support for SiS Serial ATA on
  97. SiS 964/965/966/180 and Parallel ATA on SiS 180.
  98. The PATA support for SiS 180 requires additionally to
  99. enable the PATA_SIS driver in the config.
  100. If unsure, say N.
  101. config SATA_ULI
  102. tristate "ULi Electronics SATA support"
  103. depends on PCI
  104. help
  105. This option enables support for ULi Electronics SATA.
  106. If unsure, say N.
  107. config SATA_VIA
  108. tristate "VIA SATA support"
  109. depends on PCI
  110. help
  111. This option enables support for VIA Serial ATA.
  112. If unsure, say N.
  113. config SATA_VITESSE
  114. tristate "VITESSE VSC-7174 / INTEL 31244 SATA support"
  115. depends on PCI
  116. help
  117. This option enables support for Vitesse VSC7174 and Intel 31244 Serial ATA.
  118. If unsure, say N.
  119. config SATA_INIC162X
  120. tristate "Initio 162x SATA support (HIGHLY EXPERIMENTAL)"
  121. depends on PCI && EXPERIMENTAL
  122. help
  123. This option enables support for Initio 162x Serial ATA.
  124. config SATA_INTEL_COMBINED
  125. bool
  126. depends on IDE=y && !BLK_DEV_IDE_SATA && (SATA_AHCI || ATA_PIIX)
  127. default y
  128. config SATA_ACPI
  129. bool
  130. depends on ACPI && PCI
  131. default y
  132. help
  133. This option adds support for SATA-related ACPI objects.
  134. These ACPI objects add the ability to retrieve taskfiles
  135. from the ACPI BIOS and write them to the disk controller.
  136. These objects may be related to performance, security,
  137. power management, or other areas.
  138. You can disable this at kernel boot time by using the
  139. option libata.noacpi=1
  140. config PATA_ALI
  141. tristate "ALi PATA support (Experimental)"
  142. depends on PCI && EXPERIMENTAL
  143. help
  144. This option enables support for the ALi ATA interfaces
  145. found on the many ALi chipsets.
  146. If unsure, say N.
  147. config PATA_AMD
  148. tristate "AMD/NVidia PATA support (Experimental)"
  149. depends on PCI
  150. help
  151. This option enables support for the AMD and NVidia PATA
  152. interfaces found on the chipsets for Athlon/Athlon64.
  153. If unsure, say N.
  154. config PATA_ARTOP
  155. tristate "ARTOP 6210/6260 PATA support (Experimental)"
  156. depends on PCI && EXPERIMENTAL
  157. help
  158. This option enables support for ARTOP PATA controllers.
  159. If unsure, say N.
  160. config PATA_ATIIXP
  161. tristate "ATI PATA support (Experimental)"
  162. depends on PCI && EXPERIMENTAL
  163. help
  164. This option enables support for the ATI ATA interfaces
  165. found on the many ATI chipsets.
  166. If unsure, say N.
  167. config PATA_CMD64X
  168. tristate "CMD64x PATA support (Very Experimental)"
  169. depends on PCI&& EXPERIMENTAL
  170. help
  171. This option enables support for the CMD64x series chips
  172. except for the CMD640.
  173. If unsure, say N.
  174. config PATA_CS5520
  175. tristate "CS5510/5520 PATA support"
  176. depends on PCI
  177. help
  178. This option enables support for the Cyrix 5510/5520
  179. companion chip used with the MediaGX/Geode processor family.
  180. If unsure, say N.
  181. config PATA_CS5530
  182. tristate "CS5530 PATA support (Experimental)"
  183. depends on PCI && EXPERIMENTAL
  184. help
  185. This option enables support for the Cyrix/NatSemi/AMD CS5530
  186. companion chip used with the MediaGX/Geode processor family.
  187. If unsure, say N.
  188. config PATA_CS5535
  189. tristate "CS5535 PATA support (Experimental)"
  190. depends on PCI && X86 && !X86_64 && EXPERIMENTAL
  191. help
  192. This option enables support for the NatSemi/AMD CS5535
  193. companion chip used with the Geode processor family.
  194. If unsure, say N.
  195. config PATA_CYPRESS
  196. tristate "Cypress CY82C693 PATA support (Very Experimental)"
  197. depends on PCI && EXPERIMENTAL
  198. help
  199. This option enables support for the Cypress/Contaq CY82C693
  200. chipset found in some Alpha systems
  201. If unsure, say N.
  202. config PATA_EFAR
  203. tristate "EFAR SLC90E66 support"
  204. depends on PCI
  205. help
  206. This option enables support for the EFAR SLC90E66
  207. IDE controller found on some older machines.
  208. If unsure, say N.
  209. config ATA_GENERIC
  210. tristate "Generic ATA support"
  211. depends on PCI
  212. help
  213. This option enables support for generic BIOS configured
  214. ATA controllers via the new ATA layer
  215. If unsure, say N.
  216. config PATA_HPT366
  217. tristate "HPT 366/368 PATA support (Very Experimental)"
  218. depends on PCI && EXPERIMENTAL
  219. help
  220. This option enables support for the HPT 366 and 368
  221. PATA controllers via the new ATA layer.
  222. If unsure, say N.
  223. config PATA_HPT37X
  224. tristate "HPT 370/370A/371/372/374/302 PATA support (Very Experimental)"
  225. depends on PCI && EXPERIMENTAL
  226. help
  227. This option enables support for the majority of the later HPT
  228. PATA controllers via the new ATA layer.
  229. If unsure, say N.
  230. config PATA_HPT3X2N
  231. tristate "HPT 372N/302N PATA support (Very Experimental)"
  232. depends on PCI && EXPERIMENTAL
  233. help
  234. This option enables support for the N variant HPT PATA
  235. controllers via the new ATA layer
  236. If unsure, say N.
  237. config PATA_HPT3X3
  238. tristate "HPT 343/363 PATA support (Experimental)"
  239. depends on PCI
  240. help
  241. This option enables support for the HPT 343/363
  242. PATA controllers via the new ATA layer
  243. If unsure, say N.
  244. config PATA_ISAPNP
  245. tristate "ISA Plug and Play PATA support (Very Experimental)"
  246. depends on EXPERIMENTAL && ISAPNP
  247. help
  248. This option enables support for ISA plug & play ATA
  249. controllers such as those found on old soundcards.
  250. If unsure, say N.
  251. config PATA_IT821X
  252. tristate "IT8211/2 PATA support (Experimental)"
  253. depends on PCI && EXPERIMENTAL
  254. help
  255. This option enables support for the ITE 8211 and 8212
  256. PATA controllers via the new ATA layer, including RAID
  257. mode.
  258. If unsure, say N.
  259. config PATA_IT8213
  260. tristate "IT8213 PATA support (Experimental)"
  261. depends on PCI && EXPERIMENTAL
  262. help
  263. This option enables support for the ITE 821 PATA
  264. controllers via the new ATA layer.
  265. If unsure, say N.
  266. config PATA_JMICRON
  267. tristate "JMicron PATA support"
  268. depends on PCI
  269. help
  270. Enable support for the JMicron IDE controller, via the new
  271. ATA layer.
  272. If unsure, say N.
  273. config PATA_LEGACY
  274. tristate "Legacy ISA PATA support (Experimental)"
  275. depends on ISA && EXPERIMENTAL
  276. help
  277. This option enables support for ISA/VLB bus legacy PATA
  278. ports and allows them to be accessed via the new ATA layer.
  279. If unsure, say N.
  280. config PATA_TRIFLEX
  281. tristate "Compaq Triflex PATA support"
  282. depends on PCI
  283. help
  284. Enable support for the Compaq 'Triflex' IDE controller as found
  285. on many Compaq Pentium-Pro systems, via the new ATA layer.
  286. If unsure, say N.
  287. config PATA_MARVELL
  288. tristate "Marvell PATA support via legacy mode"
  289. depends on PCI
  290. help
  291. This option enables limited support for the Marvell 88SE6145 ATA
  292. controller.
  293. If unsure, say N.
  294. config PATA_MPC52xx
  295. tristate "Freescale MPC52xx SoC internal IDE"
  296. depends on PPC_MPC52xx
  297. help
  298. This option enables support for integrated IDE controller
  299. of the Freescale MPC52xx SoC.
  300. If unsure, say N.
  301. config PATA_MPIIX
  302. tristate "Intel PATA MPIIX support"
  303. depends on PCI
  304. help
  305. This option enables support for MPIIX PATA support.
  306. If unsure, say N.
  307. config PATA_OLDPIIX
  308. tristate "Intel PATA old PIIX support (Experimental)"
  309. depends on PCI && EXPERIMENTAL
  310. help
  311. This option enables support for old(?) PIIX PATA support.
  312. If unsure, say N.
  313. config PATA_NETCELL
  314. tristate "NETCELL Revolution RAID support"
  315. depends on PCI
  316. help
  317. This option enables support for the Netcell Revolution RAID
  318. PATA controller.
  319. If unsure, say N.
  320. config PATA_NS87410
  321. tristate "Nat Semi NS87410 PATA support (Experimental)"
  322. depends on PCI && EXPERIMENTAL
  323. help
  324. This option enables support for the National Semiconductor
  325. NS87410 PCI-IDE controller.
  326. If unsure, say N.
  327. config PATA_OPTI
  328. tristate "OPTI621/6215 PATA support (Very Experimental)"
  329. depends on PCI && EXPERIMENTAL
  330. help
  331. This option enables full PIO support for the early Opti ATA
  332. controllers found on some old motherboards.
  333. If unsure, say N.
  334. config PATA_OPTIDMA
  335. tristate "OPTI FireStar PATA support (Very Experimental)"
  336. depends on PCI && EXPERIMENTAL
  337. help
  338. This option enables DMA/PIO support for the later OPTi
  339. controllers found on some old motherboards and in some
  340. latops
  341. If unsure, say N.
  342. config PATA_PCMCIA
  343. tristate "PCMCIA PATA support"
  344. depends on PCMCIA
  345. help
  346. This option enables support for PCMCIA ATA interfaces, including
  347. compact flash card adapters via the new ATA layer.
  348. If unsure, say N.
  349. config PATA_PDC_OLD
  350. tristate "Older Promise PATA controller support (Very Experimental)"
  351. depends on PCI && EXPERIMENTAL
  352. help
  353. This option enables support for the Promise 20246, 20262, 20263,
  354. 20265 and 20267 adapters.
  355. If unsure, say N.
  356. config PATA_QDI
  357. tristate "QDI VLB PATA support"
  358. depends on ISA
  359. help
  360. Support for QDI 6500 and 6580 PATA controllers on VESA local bus.
  361. config PATA_RADISYS
  362. tristate "RADISYS 82600 PATA support (Very experimental)"
  363. depends on PCI && EXPERIMENTAL
  364. help
  365. This option enables support for the RADISYS 82600
  366. PATA controllers via the new ATA layer
  367. If unsure, say N.
  368. config PATA_RZ1000
  369. tristate "PC Tech RZ1000 PATA support"
  370. depends on PCI
  371. help
  372. This option enables basic support for the PC Tech RZ1000/1
  373. PATA controllers via the new ATA layer
  374. If unsure, say N.
  375. config PATA_SC1200
  376. tristate "SC1200 PATA support (Raving Lunatic)"
  377. depends on PCI && EXPERIMENTAL
  378. help
  379. This option enables support for the NatSemi/AMD SC1200 SoC
  380. companion chip used with the Geode processor family.
  381. If unsure, say N.
  382. config PATA_SERVERWORKS
  383. tristate "SERVERWORKS OSB4/CSB5/CSB6/HT1000 PATA support (Experimental)"
  384. depends on PCI && EXPERIMENTAL
  385. help
  386. This option enables support for the Serverworks OSB4/CSB5/CSB6 and
  387. HT1000 PATA controllers, via the new ATA layer.
  388. If unsure, say N.
  389. config PATA_PDC2027X
  390. tristate "Promise PATA 2027x support"
  391. depends on PCI
  392. help
  393. This option enables support for Promise PATA pdc20268 to pdc20277 host adapters.
  394. If unsure, say N.
  395. config PATA_SIL680
  396. tristate "CMD / Silicon Image 680 PATA support"
  397. depends on PCI
  398. help
  399. This option enables support for CMD / Silicon Image 680 PATA.
  400. If unsure, say N.
  401. config PATA_SIS
  402. tristate "SiS PATA support (Experimental)"
  403. depends on PCI && EXPERIMENTAL
  404. help
  405. This option enables support for SiS PATA controllers
  406. If unsure, say N.
  407. config PATA_VIA
  408. tristate "VIA PATA support"
  409. depends on PCI
  410. help
  411. This option enables support for the VIA PATA interfaces
  412. found on the many VIA chipsets.
  413. If unsure, say N.
  414. config PATA_WINBOND
  415. tristate "Winbond SL82C105 PATA support"
  416. depends on PCI
  417. help
  418. This option enables support for SL82C105 PATA devices found in the
  419. Netwinder and some other systems
  420. If unsure, say N.
  421. config PATA_WINBOND_VLB
  422. tristate "Winbond W83759A VLB PATA support (Experimental)"
  423. depends on ISA && EXPERIMENTAL
  424. help
  425. Support for the Winbond W83759A controller on Vesa Local Bus
  426. systems.
  427. config PATA_PLATFORM
  428. tristate "Generic platform device PATA support"
  429. depends on EMBEDDED || ARCH_RPC
  430. help
  431. This option enables support for generic directly connected ATA
  432. devices commonly found on embedded systems.
  433. If unsure, say N.
  434. config PATA_IXP4XX_CF
  435. tristate "IXP4XX Compact Flash support"
  436. depends on ARCH_IXP4XX
  437. help
  438. This option enables support for a Compact Flash connected on
  439. the ixp4xx expansion bus. This driver had been written for
  440. Loft/Avila boards in mind but can work with others.
  441. If unsure, say N.
  442. config PATA_SCC
  443. tristate "Toshiba's Cell Reference Set IDE support"
  444. depends on PCI && PPC_CELLEB
  445. help
  446. This option enables support for the built-in IDE controller on
  447. Toshiba Cell Reference Board.
  448. If unsure, say N.
  449. endif
  450. endmenu