Kconfig 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729
  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. select SCSI
  10. ---help---
  11. If you want to use a ATA hard disk, ATA tape drive, ATA CD-ROM or
  12. any other ATA device under Linux, say Y and make sure that you know
  13. the name of your ATA host adapter (the card inside your computer
  14. that "speaks" the ATA protocol, also called ATA controller),
  15. because you will be asked for it.
  16. NOTE: ATA enables basic SCSI support; *however*,
  17. 'SCSI disk support', 'SCSI tape support', or
  18. 'SCSI CDROM support' may also be needed,
  19. depending on your hardware configuration.
  20. if ATA
  21. config ATA_NONSTANDARD
  22. bool
  23. default n
  24. config ATA_ACPI
  25. bool "ATA ACPI Support"
  26. depends on ACPI && PCI
  27. select ACPI_DOCK
  28. default y
  29. help
  30. This option adds support for ATA-related ACPI objects.
  31. These ACPI objects add the ability to retrieve taskfiles
  32. from the ACPI BIOS and write them to the disk controller.
  33. These objects may be related to performance, security,
  34. power management, or other areas.
  35. You can disable this at kernel boot time by using the
  36. option libata.noacpi=1
  37. config SATA_PMP
  38. bool "SATA Port Multiplier support"
  39. default y
  40. help
  41. This option adds support for SATA Port Multipliers
  42. (the SATA version of an ethernet hub, or SAS expander).
  43. config SATA_AHCI
  44. tristate "AHCI SATA support"
  45. depends on PCI
  46. help
  47. This option enables support for AHCI Serial ATA.
  48. If unsure, say N.
  49. config SATA_SIL24
  50. tristate "Silicon Image 3124/3132 SATA support"
  51. depends on PCI
  52. help
  53. This option enables support for Silicon Image 3124/3132 Serial ATA.
  54. If unsure, say N.
  55. config SATA_FSL
  56. tristate "Freescale 3.0Gbps SATA support"
  57. depends on FSL_SOC
  58. help
  59. This option enables support for Freescale 3.0Gbps SATA controller.
  60. It can be found on MPC837x and MPC8315.
  61. If unsure, say N.
  62. config ATA_SFF
  63. bool "ATA SFF support"
  64. default y
  65. help
  66. This option adds support for ATA controllers with SFF
  67. compliant or similar programming interface.
  68. SFF is the legacy IDE interface that has been around since
  69. the dawn of time. Almost all PATA controllers have an
  70. SFF interface. Many SATA controllers have an SFF interface
  71. when configured into a legacy compatibility mode.
  72. For users with exclusively modern controllers like AHCI,
  73. Silicon Image 3124, or Marvell 6440, you may choose to
  74. disable this uneeded SFF support.
  75. If unsure, say Y.
  76. if ATA_SFF
  77. config SATA_SVW
  78. tristate "ServerWorks Frodo / Apple K2 SATA support"
  79. depends on PCI
  80. help
  81. This option enables support for Broadcom/Serverworks/Apple K2
  82. SATA support.
  83. If unsure, say N.
  84. config ATA_PIIX
  85. tristate "Intel ESB, ICH, PIIX3, PIIX4 PATA/SATA support"
  86. depends on PCI
  87. help
  88. This option enables support for ICH5/6/7/8 Serial ATA
  89. and support for PATA on the Intel ESB/ICH/PIIX3/PIIX4 series
  90. host controllers.
  91. If unsure, say N.
  92. config SATA_MV
  93. tristate "Marvell SATA support (HIGHLY EXPERIMENTAL)"
  94. depends on EXPERIMENTAL
  95. help
  96. This option enables support for the Marvell Serial ATA family.
  97. Currently supports 88SX[56]0[48][01] chips.
  98. If unsure, say N.
  99. config SATA_NV
  100. tristate "NVIDIA SATA support"
  101. depends on PCI
  102. help
  103. This option enables support for NVIDIA Serial ATA.
  104. If unsure, say N.
  105. config PDC_ADMA
  106. tristate "Pacific Digital ADMA support"
  107. depends on PCI
  108. help
  109. This option enables support for Pacific Digital ADMA controllers
  110. If unsure, say N.
  111. config SATA_QSTOR
  112. tristate "Pacific Digital SATA QStor support"
  113. depends on PCI
  114. help
  115. This option enables support for Pacific Digital Serial ATA QStor.
  116. If unsure, say N.
  117. config SATA_PROMISE
  118. tristate "Promise SATA TX2/TX4 support"
  119. depends on PCI
  120. help
  121. This option enables support for Promise Serial ATA TX2/TX4.
  122. If unsure, say N.
  123. config SATA_SX4
  124. tristate "Promise SATA SX4 support (Experimental)"
  125. depends on PCI && EXPERIMENTAL
  126. help
  127. This option enables support for Promise Serial ATA SX4.
  128. If unsure, say N.
  129. config SATA_SIL
  130. tristate "Silicon Image SATA support"
  131. depends on PCI
  132. help
  133. This option enables support for Silicon Image Serial ATA.
  134. If unsure, say N.
  135. config SATA_SIS
  136. tristate "SiS 964/965/966/180 SATA support"
  137. depends on PCI
  138. select PATA_SIS
  139. help
  140. This option enables support for SiS Serial ATA on
  141. SiS 964/965/966/180 and Parallel ATA on SiS 180.
  142. The PATA support for SiS 180 requires additionally to
  143. enable the PATA_SIS driver in the config.
  144. If unsure, say N.
  145. config SATA_ULI
  146. tristate "ULi Electronics SATA support"
  147. depends on PCI
  148. help
  149. This option enables support for ULi Electronics SATA.
  150. If unsure, say N.
  151. config SATA_VIA
  152. tristate "VIA SATA support"
  153. depends on PCI
  154. help
  155. This option enables support for VIA Serial ATA.
  156. If unsure, say N.
  157. config SATA_VITESSE
  158. tristate "VITESSE VSC-7174 / INTEL 31244 SATA support"
  159. depends on PCI
  160. help
  161. This option enables support for Vitesse VSC7174 and Intel 31244 Serial ATA.
  162. If unsure, say N.
  163. config SATA_INIC162X
  164. tristate "Initio 162x SATA support"
  165. depends on PCI
  166. help
  167. This option enables support for Initio 162x Serial ATA.
  168. config PATA_ACPI
  169. tristate "ACPI firmware driver for PATA"
  170. depends on ATA_ACPI
  171. help
  172. This option enables an ACPI method driver which drives
  173. motherboard PATA controller interfaces through the ACPI
  174. firmware in the BIOS. This driver can sometimes handle
  175. otherwise unsupported hardware.
  176. config PATA_ALI
  177. tristate "ALi PATA support"
  178. depends on PCI
  179. help
  180. This option enables support for the ALi ATA interfaces
  181. found on the many ALi chipsets.
  182. If unsure, say N.
  183. config PATA_AMD
  184. tristate "AMD/NVidia PATA support"
  185. depends on PCI
  186. help
  187. This option enables support for the AMD and NVidia PATA
  188. interfaces found on the chipsets for Athlon/Athlon64.
  189. If unsure, say N.
  190. config PATA_ARTOP
  191. tristate "ARTOP 6210/6260 PATA support"
  192. depends on PCI
  193. help
  194. This option enables support for ARTOP PATA controllers.
  195. If unsure, say N.
  196. config PATA_AT32
  197. tristate "Atmel AVR32 PATA support (Experimental)"
  198. depends on AVR32 && PLATFORM_AT32AP && EXPERIMENTAL
  199. help
  200. This option enables support for the IDE devices on the
  201. Atmel AT32AP platform.
  202. If unsure, say N.
  203. config PATA_ATIIXP
  204. tristate "ATI PATA support"
  205. depends on PCI
  206. help
  207. This option enables support for the ATI ATA interfaces
  208. found on the many ATI chipsets.
  209. If unsure, say N.
  210. config PATA_CMD640_PCI
  211. tristate "CMD640 PCI PATA support (Experimental)"
  212. depends on PCI && EXPERIMENTAL
  213. help
  214. This option enables support for the CMD640 PCI IDE
  215. interface chip. Only the primary channel is currently
  216. supported.
  217. If unsure, say N.
  218. config PATA_CMD64X
  219. tristate "CMD64x PATA support"
  220. depends on PCI
  221. help
  222. This option enables support for the CMD64x series chips
  223. except for the CMD640.
  224. If unsure, say N.
  225. config PATA_CS5520
  226. tristate "CS5510/5520 PATA support"
  227. depends on PCI
  228. help
  229. This option enables support for the Cyrix 5510/5520
  230. companion chip used with the MediaGX/Geode processor family.
  231. If unsure, say N.
  232. config PATA_CS5530
  233. tristate "CS5530 PATA support"
  234. depends on PCI
  235. help
  236. This option enables support for the Cyrix/NatSemi/AMD CS5530
  237. companion chip used with the MediaGX/Geode processor family.
  238. If unsure, say N.
  239. config PATA_CS5535
  240. tristate "CS5535 PATA support (Experimental)"
  241. depends on PCI && X86 && !X86_64 && EXPERIMENTAL
  242. help
  243. This option enables support for the NatSemi/AMD CS5535
  244. companion chip used with the Geode processor family.
  245. If unsure, say N.
  246. config PATA_CS5536
  247. tristate "CS5536 PATA support"
  248. depends on PCI && X86 && !X86_64
  249. help
  250. This option enables support for the AMD CS5536
  251. companion chip used with the Geode LX processor family.
  252. If unsure, say N.
  253. config PATA_CYPRESS
  254. tristate "Cypress CY82C693 PATA support (Very Experimental)"
  255. depends on PCI && EXPERIMENTAL
  256. help
  257. This option enables support for the Cypress/Contaq CY82C693
  258. chipset found in some Alpha systems
  259. If unsure, say N.
  260. config PATA_EFAR
  261. tristate "EFAR SLC90E66 support"
  262. depends on PCI
  263. help
  264. This option enables support for the EFAR SLC90E66
  265. IDE controller found on some older machines.
  266. If unsure, say N.
  267. config ATA_GENERIC
  268. tristate "Generic ATA support"
  269. depends on PCI
  270. help
  271. This option enables support for generic BIOS configured
  272. ATA controllers via the new ATA layer
  273. If unsure, say N.
  274. config PATA_HPT366
  275. tristate "HPT 366/368 PATA support"
  276. depends on PCI
  277. help
  278. This option enables support for the HPT 366 and 368
  279. PATA controllers via the new ATA layer.
  280. If unsure, say N.
  281. config PATA_HPT37X
  282. tristate "HPT 370/370A/371/372/374/302 PATA support (Experimental)"
  283. depends on PCI && EXPERIMENTAL
  284. help
  285. This option enables support for the majority of the later HPT
  286. PATA controllers via the new ATA layer.
  287. If unsure, say N.
  288. config PATA_HPT3X2N
  289. tristate "HPT 372N/302N PATA support (Experimental)"
  290. depends on PCI && EXPERIMENTAL
  291. help
  292. This option enables support for the N variant HPT PATA
  293. controllers via the new ATA layer
  294. If unsure, say N.
  295. config PATA_HPT3X3
  296. tristate "HPT 343/363 PATA support"
  297. depends on PCI
  298. help
  299. This option enables support for the HPT 343/363
  300. PATA controllers via the new ATA layer
  301. If unsure, say N.
  302. config PATA_HPT3X3_DMA
  303. bool "HPT 343/363 DMA support (Experimental)"
  304. depends on PATA_HPT3X3
  305. help
  306. This option enables DMA support for the HPT343/363
  307. controllers. Enable with care as there are still some
  308. problems with DMA on this chipset.
  309. config PATA_ISAPNP
  310. tristate "ISA Plug and Play PATA support"
  311. depends on ISAPNP
  312. help
  313. This option enables support for ISA plug & play ATA
  314. controllers such as those found on old soundcards.
  315. If unsure, say N.
  316. config PATA_IT821X
  317. tristate "IT8211/2 PATA support"
  318. depends on PCI
  319. help
  320. This option enables support for the ITE 8211 and 8212
  321. PATA controllers via the new ATA layer, including RAID
  322. mode.
  323. If unsure, say N.
  324. config PATA_IT8213
  325. tristate "IT8213 PATA support (Experimental)"
  326. depends on PCI && EXPERIMENTAL
  327. help
  328. This option enables support for the ITE 821 PATA
  329. controllers via the new ATA layer.
  330. If unsure, say N.
  331. config PATA_JMICRON
  332. tristate "JMicron PATA support"
  333. depends on PCI
  334. help
  335. Enable support for the JMicron IDE controller, via the new
  336. ATA layer.
  337. If unsure, say N.
  338. config PATA_LEGACY
  339. tristate "Legacy ISA PATA support (Experimental)"
  340. depends on ISA && EXPERIMENTAL
  341. help
  342. This option enables support for ISA/VLB bus legacy PATA
  343. ports and allows them to be accessed via the new ATA layer.
  344. If unsure, say N.
  345. config PATA_TRIFLEX
  346. tristate "Compaq Triflex PATA support"
  347. depends on PCI
  348. help
  349. Enable support for the Compaq 'Triflex' IDE controller as found
  350. on many Compaq Pentium-Pro systems, via the new ATA layer.
  351. If unsure, say N.
  352. config PATA_MARVELL
  353. tristate "Marvell PATA support via legacy mode"
  354. depends on PCI
  355. help
  356. This option enables limited support for the Marvell 88SE61xx ATA
  357. controllers. If you wish to use only the SATA ports then select
  358. the AHCI driver alone. If you wish to the use the PATA port or
  359. both SATA and PATA include this driver.
  360. If unsure, say N.
  361. config PATA_MPC52xx
  362. tristate "Freescale MPC52xx SoC internal IDE"
  363. depends on PPC_MPC52xx && PPC_BESTCOMM
  364. select PPC_BESTCOMM_ATA
  365. help
  366. This option enables support for integrated IDE controller
  367. of the Freescale MPC52xx SoC.
  368. If unsure, say N.
  369. config PATA_MPIIX
  370. tristate "Intel PATA MPIIX support"
  371. depends on PCI
  372. help
  373. This option enables support for MPIIX PATA support.
  374. If unsure, say N.
  375. config PATA_OLDPIIX
  376. tristate "Intel PATA old PIIX support"
  377. depends on PCI
  378. help
  379. This option enables support for early PIIX PATA support.
  380. If unsure, say N.
  381. config PATA_NETCELL
  382. tristate "NETCELL Revolution RAID support"
  383. depends on PCI
  384. help
  385. This option enables support for the Netcell Revolution RAID
  386. PATA controller.
  387. If unsure, say N.
  388. config PATA_NINJA32
  389. tristate "Ninja32/Delkin Cardbus ATA support (Experimental)"
  390. depends on PCI && EXPERIMENTAL
  391. help
  392. This option enables support for the Ninja32, Delkin and
  393. possibly other brands of Cardbus ATA adapter
  394. If unsure, say N.
  395. config PATA_NS87410
  396. tristate "Nat Semi NS87410 PATA support"
  397. depends on PCI
  398. help
  399. This option enables support for the National Semiconductor
  400. NS87410 PCI-IDE controller.
  401. If unsure, say N.
  402. config PATA_NS87415
  403. tristate "Nat Semi NS87415 PATA support"
  404. depends on PCI
  405. help
  406. This option enables support for the National Semiconductor
  407. NS87415 PCI-IDE controller.
  408. If unsure, say N.
  409. config PATA_OPTI
  410. tristate "OPTI621/6215 PATA support (Very Experimental)"
  411. depends on PCI && EXPERIMENTAL
  412. help
  413. This option enables full PIO support for the early Opti ATA
  414. controllers found on some old motherboards.
  415. If unsure, say N.
  416. config PATA_OPTIDMA
  417. tristate "OPTI FireStar PATA support (Very Experimental)"
  418. depends on PCI && EXPERIMENTAL
  419. help
  420. This option enables DMA/PIO support for the later OPTi
  421. controllers found on some old motherboards and in some
  422. laptops.
  423. If unsure, say N.
  424. config PATA_PCMCIA
  425. tristate "PCMCIA PATA support"
  426. depends on PCMCIA
  427. help
  428. This option enables support for PCMCIA ATA interfaces, including
  429. compact flash card adapters via the new ATA layer.
  430. If unsure, say N.
  431. config PATA_PDC_OLD
  432. tristate "Older Promise PATA controller support"
  433. depends on PCI
  434. help
  435. This option enables support for the Promise 20246, 20262, 20263,
  436. 20265 and 20267 adapters.
  437. If unsure, say N.
  438. config PATA_QDI
  439. tristate "QDI VLB PATA support"
  440. depends on ISA
  441. help
  442. Support for QDI 6500 and 6580 PATA controllers on VESA local bus.
  443. config PATA_RADISYS
  444. tristate "RADISYS 82600 PATA support (Experimental)"
  445. depends on PCI && EXPERIMENTAL
  446. help
  447. This option enables support for the RADISYS 82600
  448. PATA controllers via the new ATA layer
  449. If unsure, say N.
  450. config PATA_RB532
  451. tristate "RouterBoard 532 PATA CompactFlash support"
  452. depends on MIKROTIK_RB532
  453. help
  454. This option enables support for the RouterBoard 532
  455. PATA CompactFlash controller.
  456. If unsure, say N.
  457. config PATA_RZ1000
  458. tristate "PC Tech RZ1000 PATA support"
  459. depends on PCI
  460. help
  461. This option enables basic support for the PC Tech RZ1000/1
  462. PATA controllers via the new ATA layer
  463. If unsure, say N.
  464. config PATA_SC1200
  465. tristate "SC1200 PATA support"
  466. depends on PCI
  467. help
  468. This option enables support for the NatSemi/AMD SC1200 SoC
  469. companion chip used with the Geode processor family.
  470. If unsure, say N.
  471. config PATA_SERVERWORKS
  472. tristate "SERVERWORKS OSB4/CSB5/CSB6/HT1000 PATA support"
  473. depends on PCI
  474. help
  475. This option enables support for the Serverworks OSB4/CSB5/CSB6 and
  476. HT1000 PATA controllers, via the new ATA layer.
  477. If unsure, say N.
  478. config PATA_PDC2027X
  479. tristate "Promise PATA 2027x support"
  480. depends on PCI
  481. help
  482. This option enables support for Promise PATA pdc20268 to pdc20277 host adapters.
  483. If unsure, say N.
  484. config PATA_SIL680
  485. tristate "CMD / Silicon Image 680 PATA support"
  486. depends on PCI
  487. help
  488. This option enables support for CMD / Silicon Image 680 PATA.
  489. If unsure, say N.
  490. config PATA_SIS
  491. tristate "SiS PATA support"
  492. depends on PCI
  493. help
  494. This option enables support for SiS PATA controllers
  495. If unsure, say N.
  496. config PATA_VIA
  497. tristate "VIA PATA support"
  498. depends on PCI
  499. help
  500. This option enables support for the VIA PATA interfaces
  501. found on the many VIA chipsets.
  502. If unsure, say N.
  503. config PATA_WINBOND
  504. tristate "Winbond SL82C105 PATA support"
  505. depends on PCI
  506. help
  507. This option enables support for SL82C105 PATA devices found in the
  508. Netwinder and some other systems
  509. If unsure, say N.
  510. config PATA_WINBOND_VLB
  511. tristate "Winbond W83759A VLB PATA support (Experimental)"
  512. depends on ISA && EXPERIMENTAL
  513. help
  514. Support for the Winbond W83759A controller on Vesa Local Bus
  515. systems.
  516. config HAVE_PATA_PLATFORM
  517. bool
  518. help
  519. This is an internal configuration node for any machine that
  520. uses pata-platform driver to enable the relevant driver in the
  521. configuration structure without having to submit endless patches
  522. to update the PATA_PLATFORM entry.
  523. config PATA_PLATFORM
  524. tristate "Generic platform device PATA support"
  525. depends on EMBEDDED || PPC || HAVE_PATA_PLATFORM
  526. help
  527. This option enables support for generic directly connected ATA
  528. devices commonly found on embedded systems.
  529. If unsure, say N.
  530. config PATA_OF_PLATFORM
  531. tristate "OpenFirmware platform device PATA support"
  532. depends on PATA_PLATFORM && PPC_OF
  533. help
  534. This option enables support for generic directly connected ATA
  535. devices commonly found on embedded systems with OpenFirmware
  536. bindings.
  537. If unsure, say N.
  538. config PATA_ICSIDE
  539. tristate "Acorn ICS PATA support"
  540. depends on ARM && ARCH_ACORN
  541. help
  542. On Acorn systems, say Y here if you wish to use the ICS PATA
  543. interface card. This is not required for ICS partition support.
  544. If you are unsure, say N to this.
  545. config PATA_IXP4XX_CF
  546. tristate "IXP4XX Compact Flash support"
  547. depends on ARCH_IXP4XX
  548. help
  549. This option enables support for a Compact Flash connected on
  550. the ixp4xx expansion bus. This driver had been written for
  551. Loft/Avila boards in mind but can work with others.
  552. If unsure, say N.
  553. config PATA_SCC
  554. tristate "Toshiba's Cell Reference Set IDE support"
  555. depends on PCI && PPC_CELLEB
  556. help
  557. This option enables support for the built-in IDE controller on
  558. Toshiba Cell Reference Board.
  559. If unsure, say N.
  560. config PATA_SCH
  561. tristate "Intel SCH PATA support"
  562. depends on PCI
  563. help
  564. This option enables support for Intel SCH PATA on the Intel
  565. SCH (US15W, US15L, UL11L) series host controllers.
  566. If unsure, say N.
  567. config PATA_BF54X
  568. tristate "Blackfin 54x ATAPI support"
  569. depends on BF542 || BF548 || BF549
  570. help
  571. This option enables support for the built-in ATAPI controller on
  572. Blackfin 54x family chips.
  573. If unsure, say N.
  574. endif # ATA_SFF
  575. endif # ATA