Kconfig 26 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052
  1. #
  2. # SATA/PATA driver configuration
  3. #
  4. config HAVE_PATA_PLATFORM
  5. bool
  6. help
  7. This is an internal configuration node for any machine that
  8. uses pata-platform driver to enable the relevant driver in the
  9. configuration structure without having to submit endless patches
  10. to update the PATA_PLATFORM entry.
  11. menuconfig ATA
  12. tristate "Serial ATA and Parallel ATA drivers (libata)"
  13. depends on HAS_IOMEM
  14. depends on BLOCK
  15. depends on !(M32R || M68K || S390) || BROKEN
  16. select SCSI
  17. select GLOB
  18. ---help---
  19. If you want to use an ATA hard disk, ATA tape drive, ATA CD-ROM or
  20. any other ATA device under Linux, say Y and make sure that you know
  21. the name of your ATA host adapter (the card inside your computer
  22. that "speaks" the ATA protocol, also called ATA controller),
  23. because you will be asked for it.
  24. NOTE: ATA enables basic SCSI support; *however*,
  25. 'SCSI disk support', 'SCSI tape support', or
  26. 'SCSI CDROM support' may also be needed,
  27. depending on your hardware configuration.
  28. if ATA
  29. config ATA_NONSTANDARD
  30. bool
  31. default n
  32. config ATA_VERBOSE_ERROR
  33. bool "Verbose ATA error reporting"
  34. default y
  35. help
  36. This option adds parsing of ATA command descriptions and error bits
  37. in libata kernel output, making it easier to interpret.
  38. This option will enlarge the kernel by approx. 6KB. Disable it only
  39. if kernel size is more important than ease of debugging.
  40. If unsure, say Y.
  41. config ATA_ACPI
  42. bool "ATA ACPI Support"
  43. depends on ACPI
  44. default y
  45. help
  46. This option adds support for ATA-related ACPI objects.
  47. These ACPI objects add the ability to retrieve taskfiles
  48. from the ACPI BIOS and write them to the disk controller.
  49. These objects may be related to performance, security,
  50. power management, or other areas.
  51. You can disable this at kernel boot time by using the
  52. option libata.noacpi=1
  53. config SATA_ZPODD
  54. bool "SATA Zero Power Optical Disc Drive (ZPODD) support"
  55. depends on ATA_ACPI && PM
  56. default n
  57. help
  58. This option adds support for SATA Zero Power Optical Disc
  59. Drive (ZPODD). It requires both the ODD and the platform
  60. support, and if enabled, will automatically power on/off the
  61. ODD when certain condition is satisfied. This does not impact
  62. end user's experience of the ODD, only power is saved when
  63. the ODD is not in use (i.e. no disc inside).
  64. If unsure, say N.
  65. config SATA_PMP
  66. bool "SATA Port Multiplier support"
  67. default y
  68. help
  69. This option adds support for SATA Port Multipliers
  70. (the SATA version of an ethernet hub, or SAS expander).
  71. comment "Controllers with non-SFF native interface"
  72. config SATA_AHCI
  73. tristate "AHCI SATA support"
  74. depends on PCI
  75. help
  76. This option enables support for AHCI Serial ATA.
  77. If unsure, say N.
  78. config SATA_AHCI_PLATFORM
  79. tristate "Platform AHCI SATA support"
  80. help
  81. This option enables support for Platform AHCI Serial ATA
  82. controllers.
  83. If unsure, say N.
  84. config AHCI_BRCM
  85. tristate "Broadcom AHCI SATA support"
  86. depends on ARCH_BRCMSTB || BMIPS_GENERIC || ARCH_BCM_NSP
  87. help
  88. This option enables support for the AHCI SATA3 controller found on
  89. Broadcom SoC's.
  90. If unsure, say N.
  91. config AHCI_DA850
  92. tristate "DaVinci DA850 AHCI SATA support"
  93. depends on ARCH_DAVINCI_DA850
  94. help
  95. This option enables support for the DaVinci DA850 SoC's
  96. onboard AHCI SATA.
  97. If unsure, say N.
  98. config AHCI_ST
  99. tristate "ST AHCI SATA support"
  100. depends on ARCH_STI
  101. help
  102. This option enables support for ST AHCI SATA controller.
  103. If unsure, say N.
  104. config AHCI_IMX
  105. tristate "Freescale i.MX AHCI SATA support"
  106. depends on MFD_SYSCON && (ARCH_MXC || COMPILE_TEST)
  107. help
  108. This option enables support for the Freescale i.MX SoC's
  109. onboard AHCI SATA.
  110. If unsure, say N.
  111. config AHCI_CEVA
  112. tristate "CEVA AHCI SATA support"
  113. depends on OF
  114. help
  115. This option enables support for the CEVA AHCI SATA.
  116. It can be found on the Xilinx Zynq UltraScale+ MPSoC.
  117. If unsure, say N.
  118. config AHCI_MVEBU
  119. tristate "Marvell EBU AHCI SATA support"
  120. depends on ARCH_MVEBU
  121. help
  122. This option enables support for the Marvebu EBU SoC's
  123. onboard AHCI SATA.
  124. If unsure, say N.
  125. config AHCI_OCTEON
  126. tristate "Cavium Octeon Soc Serial ATA"
  127. depends on SATA_AHCI_PLATFORM && CAVIUM_OCTEON_SOC
  128. default y
  129. help
  130. This option enables support for Cavium Octeon SoC Serial ATA.
  131. If unsure, say N.
  132. config AHCI_SUNXI
  133. tristate "Allwinner sunxi AHCI SATA support"
  134. depends on ARCH_SUNXI
  135. help
  136. This option enables support for the Allwinner sunxi SoC's
  137. onboard AHCI SATA.
  138. If unsure, say N.
  139. config AHCI_TEGRA
  140. tristate "NVIDIA Tegra124 AHCI SATA support"
  141. depends on ARCH_TEGRA
  142. help
  143. This option enables support for the NVIDIA Tegra124 SoC's
  144. onboard AHCI SATA.
  145. If unsure, say N.
  146. config AHCI_XGENE
  147. tristate "APM X-Gene 6.0Gbps AHCI SATA host controller support"
  148. depends on PHY_XGENE
  149. help
  150. This option enables support for APM X-Gene SoC SATA host controller.
  151. config AHCI_QORIQ
  152. tristate "Freescale QorIQ AHCI SATA support"
  153. depends on OF
  154. help
  155. This option enables support for the Freescale QorIQ AHCI SoC's
  156. onboard AHCI SATA.
  157. If unsure, say N.
  158. config SATA_FSL
  159. tristate "Freescale 3.0Gbps SATA support"
  160. depends on FSL_SOC
  161. help
  162. This option enables support for Freescale 3.0Gbps SATA controller.
  163. It can be found on MPC837x and MPC8315.
  164. If unsure, say N.
  165. config SATA_AHCI_SEATTLE
  166. tristate "AMD Seattle 6.0Gbps AHCI SATA host controller support"
  167. depends on ARCH_SEATTLE
  168. help
  169. This option enables support for AMD Seattle SATA host controller.
  170. If unsure, say N
  171. config SATA_INIC162X
  172. tristate "Initio 162x SATA support (Very Experimental)"
  173. depends on PCI
  174. help
  175. This option enables support for Initio 162x Serial ATA.
  176. config SATA_ACARD_AHCI
  177. tristate "ACard AHCI variant (ATP 8620)"
  178. depends on PCI
  179. help
  180. This option enables support for Acard.
  181. If unsure, say N.
  182. config SATA_SIL24
  183. tristate "Silicon Image 3124/3132 SATA support"
  184. depends on PCI
  185. help
  186. This option enables support for Silicon Image 3124/3132 Serial ATA.
  187. If unsure, say N.
  188. config ATA_SFF
  189. bool "ATA SFF support (for legacy IDE and PATA)"
  190. default y
  191. help
  192. This option adds support for ATA controllers with SFF
  193. compliant or similar programming interface.
  194. SFF is the legacy IDE interface that has been around since
  195. the dawn of time. Almost all PATA controllers have an
  196. SFF interface. Many SATA controllers have an SFF interface
  197. when configured into a legacy compatibility mode.
  198. For users with exclusively modern controllers like AHCI,
  199. Silicon Image 3124, or Marvell 6440, you may choose to
  200. disable this unneeded SFF support.
  201. If unsure, say Y.
  202. if ATA_SFF
  203. comment "SFF controllers with custom DMA interface"
  204. config PDC_ADMA
  205. tristate "Pacific Digital ADMA support"
  206. depends on PCI
  207. help
  208. This option enables support for Pacific Digital ADMA controllers
  209. If unsure, say N.
  210. config PATA_OCTEON_CF
  211. tristate "OCTEON Boot Bus Compact Flash support"
  212. depends on CAVIUM_OCTEON_SOC
  213. help
  214. This option enables a polled compact flash driver for use with
  215. compact flash cards attached to the OCTEON boot bus.
  216. If unsure, say N.
  217. config SATA_QSTOR
  218. tristate "Pacific Digital SATA QStor support"
  219. depends on PCI
  220. help
  221. This option enables support for Pacific Digital Serial ATA QStor.
  222. If unsure, say N.
  223. config SATA_SX4
  224. tristate "Promise SATA SX4 support (Experimental)"
  225. depends on PCI
  226. help
  227. This option enables support for Promise Serial ATA SX4.
  228. If unsure, say N.
  229. config ATA_BMDMA
  230. bool "ATA BMDMA support"
  231. default y
  232. help
  233. This option adds support for SFF ATA controllers with BMDMA
  234. capability. BMDMA stands for bus-master DMA and is the
  235. de facto DMA interface for SFF controllers.
  236. If unsure, say Y.
  237. if ATA_BMDMA
  238. comment "SATA SFF controllers with BMDMA"
  239. config ATA_PIIX
  240. tristate "Intel ESB, ICH, PIIX3, PIIX4 PATA/SATA support"
  241. depends on PCI
  242. help
  243. This option enables support for ICH5/6/7/8 Serial ATA
  244. and support for PATA on the Intel ESB/ICH/PIIX3/PIIX4 series
  245. host controllers.
  246. If unsure, say N.
  247. config SATA_DWC
  248. tristate "DesignWare Cores SATA support"
  249. depends on DMADEVICES
  250. select GENERIC_PHY
  251. help
  252. This option enables support for the on-chip SATA controller of the
  253. AppliedMicro processor 460EX.
  254. If unsure, say N.
  255. config SATA_DWC_OLD_DMA
  256. bool "Support old device trees"
  257. depends on SATA_DWC
  258. select DW_DMAC_CORE
  259. default y if 460EX
  260. help
  261. This option enables support for old device trees without the
  262. "dmas" property.
  263. config SATA_DWC_DEBUG
  264. bool "Debugging driver version"
  265. depends on SATA_DWC
  266. help
  267. This option enables debugging output in the driver.
  268. config SATA_DWC_VDEBUG
  269. bool "Verbose debug output"
  270. depends on SATA_DWC_DEBUG
  271. help
  272. This option enables the taskfile dumping and NCQ debugging.
  273. config SATA_HIGHBANK
  274. tristate "Calxeda Highbank SATA support"
  275. depends on ARCH_HIGHBANK || COMPILE_TEST
  276. help
  277. This option enables support for the Calxeda Highbank SoC's
  278. onboard SATA.
  279. If unsure, say N.
  280. config SATA_MV
  281. tristate "Marvell SATA support"
  282. depends on PCI || ARCH_DOVE || ARCH_MV78XX0 || \
  283. ARCH_MVEBU || ARCH_ORION5X || COMPILE_TEST
  284. select GENERIC_PHY
  285. help
  286. This option enables support for the Marvell Serial ATA family.
  287. Currently supports 88SX[56]0[48][01] PCI(-X) chips,
  288. as well as the newer [67]042 PCI-X/PCIe and SOC devices.
  289. If unsure, say N.
  290. config SATA_NV
  291. tristate "NVIDIA SATA support"
  292. depends on PCI
  293. help
  294. This option enables support for NVIDIA Serial ATA.
  295. If unsure, say N.
  296. config SATA_PROMISE
  297. tristate "Promise SATA TX2/TX4 support"
  298. depends on PCI
  299. help
  300. This option enables support for Promise Serial ATA TX2/TX4.
  301. If unsure, say N.
  302. config SATA_RCAR
  303. tristate "Renesas R-Car SATA support"
  304. depends on ARCH_RENESAS || COMPILE_TEST
  305. help
  306. This option enables support for Renesas R-Car Serial ATA.
  307. If unsure, say N.
  308. config SATA_SIL
  309. tristate "Silicon Image SATA support"
  310. depends on PCI
  311. help
  312. This option enables support for Silicon Image Serial ATA.
  313. If unsure, say N.
  314. config SATA_SIS
  315. tristate "SiS 964/965/966/180 SATA support"
  316. depends on PCI
  317. select PATA_SIS
  318. help
  319. This option enables support for SiS Serial ATA on
  320. SiS 964/965/966/180 and Parallel ATA on SiS 180.
  321. The PATA support for SiS 180 requires additionally to
  322. enable the PATA_SIS driver in the config.
  323. If unsure, say N.
  324. config SATA_SVW
  325. tristate "ServerWorks Frodo / Apple K2 SATA support"
  326. depends on PCI
  327. help
  328. This option enables support for Broadcom/Serverworks/Apple K2
  329. SATA support.
  330. If unsure, say N.
  331. config SATA_ULI
  332. tristate "ULi Electronics SATA support"
  333. depends on PCI
  334. help
  335. This option enables support for ULi Electronics SATA.
  336. If unsure, say N.
  337. config SATA_VIA
  338. tristate "VIA SATA support"
  339. depends on PCI
  340. help
  341. This option enables support for VIA Serial ATA.
  342. If unsure, say N.
  343. config SATA_VITESSE
  344. tristate "VITESSE VSC-7174 / INTEL 31244 SATA support"
  345. depends on PCI
  346. help
  347. This option enables support for Vitesse VSC7174 and Intel 31244 Serial ATA.
  348. If unsure, say N.
  349. comment "PATA SFF controllers with BMDMA"
  350. config PATA_ALI
  351. tristate "ALi PATA support"
  352. depends on PCI
  353. help
  354. This option enables support for the ALi ATA interfaces
  355. found on the many ALi chipsets.
  356. If unsure, say N.
  357. config PATA_AMD
  358. tristate "AMD/NVidia PATA support"
  359. depends on PCI
  360. help
  361. This option enables support for the AMD and NVidia PATA
  362. interfaces found on the chipsets for Athlon/Athlon64.
  363. If unsure, say N.
  364. config PATA_ARASAN_CF
  365. tristate "ARASAN CompactFlash PATA Controller Support"
  366. depends on ARCH_SPEAR13XX || COMPILE_TEST
  367. depends on DMADEVICES
  368. select DMA_ENGINE
  369. help
  370. Say Y here to support the ARASAN CompactFlash PATA controller
  371. config PATA_ARTOP
  372. tristate "ARTOP 6210/6260 PATA support"
  373. depends on PCI
  374. help
  375. This option enables support for ARTOP PATA controllers.
  376. If unsure, say N.
  377. config PATA_ATIIXP
  378. tristate "ATI PATA support"
  379. depends on PCI
  380. help
  381. This option enables support for the ATI ATA interfaces
  382. found on the many ATI chipsets.
  383. If unsure, say N.
  384. config PATA_ATP867X
  385. tristate "ARTOP/Acard ATP867X PATA support"
  386. depends on PCI
  387. help
  388. This option enables support for ARTOP/Acard ATP867X PATA
  389. controllers.
  390. If unsure, say N.
  391. config PATA_BF54X
  392. tristate "Blackfin 54x ATAPI support"
  393. depends on BF542 || BF548 || BF549
  394. help
  395. This option enables support for the built-in ATAPI controller on
  396. Blackfin 54x family chips.
  397. If unsure, say N.
  398. config PATA_CMD64X
  399. tristate "CMD64x PATA support"
  400. depends on PCI
  401. help
  402. This option enables support for the CMD64x series chips
  403. except for the CMD640.
  404. If unsure, say N.
  405. config PATA_CS5520
  406. tristate "CS5510/5520 PATA support"
  407. depends on PCI && (X86_32 || COMPILE_TEST)
  408. help
  409. This option enables support for the Cyrix 5510/5520
  410. companion chip used with the MediaGX/Geode processor family.
  411. If unsure, say N.
  412. config PATA_CS5530
  413. tristate "CS5530 PATA support"
  414. depends on PCI && (X86_32 || COMPILE_TEST)
  415. help
  416. This option enables support for the Cyrix/NatSemi/AMD CS5530
  417. companion chip used with the MediaGX/Geode processor family.
  418. If unsure, say N.
  419. config PATA_CS5535
  420. tristate "CS5535 PATA support (Experimental)"
  421. depends on PCI && X86_32
  422. help
  423. This option enables support for the NatSemi/AMD CS5535
  424. companion chip used with the Geode processor family.
  425. If unsure, say N.
  426. config PATA_CS5536
  427. tristate "CS5536 PATA support"
  428. depends on PCI && (X86_32 || MIPS || COMPILE_TEST)
  429. help
  430. This option enables support for the AMD CS5536
  431. companion chip used with the Geode LX processor family.
  432. If unsure, say N.
  433. config PATA_CYPRESS
  434. tristate "Cypress CY82C693 PATA support (Very Experimental)"
  435. depends on PCI
  436. help
  437. This option enables support for the Cypress/Contaq CY82C693
  438. chipset found in some Alpha systems
  439. If unsure, say N.
  440. config PATA_EFAR
  441. tristate "EFAR SLC90E66 support"
  442. depends on PCI
  443. help
  444. This option enables support for the EFAR SLC90E66
  445. IDE controller found on some older machines.
  446. If unsure, say N.
  447. config PATA_EP93XX
  448. tristate "Cirrus Logic EP93xx PATA support"
  449. depends on ARCH_EP93XX
  450. help
  451. This option enables support for the PATA controller in
  452. the Cirrus Logic EP9312 and EP9315 ARM CPU.
  453. If unsure, say N.
  454. config PATA_HPT366
  455. tristate "HPT 366/368 PATA support"
  456. depends on PCI
  457. help
  458. This option enables support for the HPT 366 and 368
  459. PATA controllers via the new ATA layer.
  460. If unsure, say N.
  461. config PATA_HPT37X
  462. tristate "HPT 370/370A/371/372/374/302 PATA support"
  463. depends on PCI
  464. help
  465. This option enables support for the majority of the later HPT
  466. PATA controllers via the new ATA layer.
  467. If unsure, say N.
  468. config PATA_HPT3X2N
  469. tristate "HPT 371N/372N/302N PATA support"
  470. depends on PCI
  471. help
  472. This option enables support for the N variant HPT PATA
  473. controllers via the new ATA layer.
  474. If unsure, say N.
  475. config PATA_HPT3X3
  476. tristate "HPT 343/363 PATA support"
  477. depends on PCI
  478. help
  479. This option enables support for the HPT 343/363
  480. PATA controllers via the new ATA layer
  481. If unsure, say N.
  482. config PATA_HPT3X3_DMA
  483. bool "HPT 343/363 DMA support"
  484. depends on PATA_HPT3X3
  485. help
  486. This option enables DMA support for the HPT343/363
  487. controllers. Enable with care as there are still some
  488. problems with DMA on this chipset.
  489. config PATA_ICSIDE
  490. tristate "Acorn ICS PATA support"
  491. depends on ARM && ARCH_ACORN
  492. help
  493. On Acorn systems, say Y here if you wish to use the ICS PATA
  494. interface card. This is not required for ICS partition support.
  495. If you are unsure, say N to this.
  496. config PATA_IMX
  497. tristate "PATA support for Freescale iMX"
  498. depends on ARCH_MXC
  499. help
  500. This option enables support for the PATA host available on Freescale
  501. iMX SoCs.
  502. If unsure, say N.
  503. config PATA_IT8213
  504. tristate "IT8213 PATA support (Experimental)"
  505. depends on PCI
  506. help
  507. This option enables support for the ITE 821 PATA
  508. controllers via the new ATA layer.
  509. If unsure, say N.
  510. config PATA_IT821X
  511. tristate "IT8211/2 PATA support"
  512. depends on PCI
  513. help
  514. This option enables support for the ITE 8211 and 8212
  515. PATA controllers via the new ATA layer, including RAID
  516. mode.
  517. If unsure, say N.
  518. config PATA_JMICRON
  519. tristate "JMicron PATA support"
  520. depends on PCI
  521. help
  522. Enable support for the JMicron IDE controller, via the new
  523. ATA layer.
  524. If unsure, say N.
  525. config PATA_MACIO
  526. tristate "Apple PowerMac/PowerBook internal 'MacIO' IDE"
  527. depends on PPC_PMAC
  528. help
  529. Most IDE capable PowerMacs have IDE busses driven by a variant
  530. of this controller which is part of the Apple chipset used on
  531. most PowerMac models. Some models have multiple busses using
  532. different chipsets, though generally, MacIO is one of them.
  533. config PATA_MARVELL
  534. tristate "Marvell PATA support via legacy mode"
  535. depends on PCI
  536. help
  537. This option enables limited support for the Marvell 88SE61xx ATA
  538. controllers. If you wish to use only the SATA ports then select
  539. the AHCI driver alone. If you wish to the use the PATA port or
  540. both SATA and PATA include this driver.
  541. If unsure, say N.
  542. config PATA_MPC52xx
  543. tristate "Freescale MPC52xx SoC internal IDE"
  544. depends on PPC_MPC52xx && PPC_BESTCOMM
  545. select PPC_BESTCOMM_ATA
  546. help
  547. This option enables support for integrated IDE controller
  548. of the Freescale MPC52xx SoC.
  549. If unsure, say N.
  550. config PATA_NETCELL
  551. tristate "NETCELL Revolution RAID support"
  552. depends on PCI
  553. help
  554. This option enables support for the Netcell Revolution RAID
  555. PATA controller.
  556. If unsure, say N.
  557. config PATA_NINJA32
  558. tristate "Ninja32/Delkin Cardbus ATA support"
  559. depends on PCI
  560. help
  561. This option enables support for the Ninja32, Delkin and
  562. possibly other brands of Cardbus ATA adapter
  563. If unsure, say N.
  564. config PATA_NS87415
  565. tristate "Nat Semi NS87415 PATA support"
  566. depends on PCI
  567. help
  568. This option enables support for the National Semiconductor
  569. NS87415 PCI-IDE controller.
  570. If unsure, say N.
  571. config PATA_OLDPIIX
  572. tristate "Intel PATA old PIIX support"
  573. depends on PCI
  574. help
  575. This option enables support for early PIIX PATA support.
  576. If unsure, say N.
  577. config PATA_OPTIDMA
  578. tristate "OPTI FireStar PATA support (Very Experimental)"
  579. depends on PCI
  580. help
  581. This option enables DMA/PIO support for the later OPTi
  582. controllers found on some old motherboards and in some
  583. laptops.
  584. If unsure, say N.
  585. config PATA_PDC2027X
  586. tristate "Promise PATA 2027x support"
  587. depends on PCI
  588. help
  589. This option enables support for Promise PATA pdc20268 to pdc20277 host adapters.
  590. If unsure, say N.
  591. config PATA_PDC_OLD
  592. tristate "Older Promise PATA controller support"
  593. depends on PCI
  594. help
  595. This option enables support for the Promise 20246, 20262, 20263,
  596. 20265 and 20267 adapters.
  597. If unsure, say N.
  598. config PATA_RADISYS
  599. tristate "RADISYS 82600 PATA support (Experimental)"
  600. depends on PCI
  601. help
  602. This option enables support for the RADISYS 82600
  603. PATA controllers via the new ATA layer
  604. If unsure, say N.
  605. config PATA_RDC
  606. tristate "RDC PATA support"
  607. depends on PCI
  608. help
  609. This option enables basic support for the later RDC PATA controllers
  610. controllers via the new ATA layer. For the RDC 1010, you need to
  611. enable the IT821X driver instead.
  612. If unsure, say N.
  613. config PATA_SC1200
  614. tristate "SC1200 PATA support"
  615. depends on PCI && (X86_32 || COMPILE_TEST)
  616. help
  617. This option enables support for the NatSemi/AMD SC1200 SoC
  618. companion chip used with the Geode processor family.
  619. If unsure, say N.
  620. config PATA_SCH
  621. tristate "Intel SCH PATA support"
  622. depends on PCI
  623. help
  624. This option enables support for Intel SCH PATA on the Intel
  625. SCH (US15W, US15L, UL11L) series host controllers.
  626. If unsure, say N.
  627. config PATA_SERVERWORKS
  628. tristate "SERVERWORKS OSB4/CSB5/CSB6/HT1000 PATA support"
  629. depends on PCI
  630. help
  631. This option enables support for the Serverworks OSB4/CSB5/CSB6 and
  632. HT1000 PATA controllers, via the new ATA layer.
  633. If unsure, say N.
  634. config PATA_SIL680
  635. tristate "CMD / Silicon Image 680 PATA support"
  636. depends on PCI
  637. help
  638. This option enables support for CMD / Silicon Image 680 PATA.
  639. If unsure, say N.
  640. config PATA_SIS
  641. tristate "SiS PATA support"
  642. depends on PCI
  643. help
  644. This option enables support for SiS PATA controllers
  645. If unsure, say N.
  646. config PATA_TOSHIBA
  647. tristate "Toshiba Piccolo support (Experimental)"
  648. depends on PCI
  649. help
  650. Support for the Toshiba Piccolo controllers. Currently only the
  651. primary channel is supported by this driver.
  652. If unsure, say N.
  653. config PATA_TRIFLEX
  654. tristate "Compaq Triflex PATA support"
  655. depends on PCI
  656. help
  657. Enable support for the Compaq 'Triflex' IDE controller as found
  658. on many Compaq Pentium-Pro systems, via the new ATA layer.
  659. If unsure, say N.
  660. config PATA_VIA
  661. tristate "VIA PATA support"
  662. depends on PCI
  663. help
  664. This option enables support for the VIA PATA interfaces
  665. found on the many VIA chipsets.
  666. If unsure, say N.
  667. config PATA_PXA
  668. tristate "PXA DMA-capable PATA support"
  669. depends on ARCH_PXA
  670. help
  671. This option enables support for harddrive attached to PXA CPU's bus.
  672. NOTE: This driver utilizes PXA DMA controller, in case your hardware
  673. is not capable of doing MWDMA, use pata_platform instead.
  674. If unsure, say N.
  675. config PATA_WINBOND
  676. tristate "Winbond SL82C105 PATA support"
  677. depends on PCI
  678. help
  679. This option enables support for SL82C105 PATA devices found in the
  680. Netwinder and some other systems
  681. If unsure, say N.
  682. endif # ATA_BMDMA
  683. comment "PIO-only SFF controllers"
  684. config PATA_AT32
  685. tristate "Atmel AVR32 PATA support (Experimental)"
  686. depends on AVR32 && PLATFORM_AT32AP
  687. help
  688. This option enables support for the IDE devices on the
  689. Atmel AT32AP platform.
  690. If unsure, say N.
  691. config PATA_AT91
  692. tristate "PATA support for AT91SAM9260"
  693. depends on ARM && SOC_AT91SAM9
  694. help
  695. This option enables support for IDE devices on the Atmel AT91SAM9260 SoC.
  696. If unsure, say N.
  697. config PATA_CMD640_PCI
  698. tristate "CMD640 PCI PATA support (Experimental)"
  699. depends on PCI
  700. help
  701. This option enables support for the CMD640 PCI IDE
  702. interface chip. Only the primary channel is currently
  703. supported.
  704. If unsure, say N.
  705. config PATA_ISAPNP
  706. tristate "ISA Plug and Play PATA support"
  707. depends on ISAPNP
  708. help
  709. This option enables support for ISA plug & play ATA
  710. controllers such as those found on old soundcards.
  711. If unsure, say N.
  712. config PATA_IXP4XX_CF
  713. tristate "IXP4XX Compact Flash support"
  714. depends on ARCH_IXP4XX
  715. help
  716. This option enables support for a Compact Flash connected on
  717. the ixp4xx expansion bus. This driver had been written for
  718. Loft/Avila boards in mind but can work with others.
  719. If unsure, say N.
  720. config PATA_MPIIX
  721. tristate "Intel PATA MPIIX support"
  722. depends on PCI
  723. help
  724. This option enables support for MPIIX PATA support.
  725. If unsure, say N.
  726. config PATA_NS87410
  727. tristate "Nat Semi NS87410 PATA support"
  728. depends on PCI
  729. help
  730. This option enables support for the National Semiconductor
  731. NS87410 PCI-IDE controller.
  732. If unsure, say N.
  733. config PATA_OPTI
  734. tristate "OPTI621/6215 PATA support (Very Experimental)"
  735. depends on PCI
  736. help
  737. This option enables full PIO support for the early Opti ATA
  738. controllers found on some old motherboards.
  739. If unsure, say N.
  740. config PATA_PALMLD
  741. tristate "Palm LifeDrive PATA support"
  742. depends on MACH_PALMLD
  743. help
  744. This option enables support for Palm LifeDrive's internal ATA
  745. port via the new ATA layer.
  746. If unsure, say N.
  747. config PATA_PCMCIA
  748. tristate "PCMCIA PATA support"
  749. depends on PCMCIA
  750. help
  751. This option enables support for PCMCIA ATA interfaces, including
  752. compact flash card adapters via the new ATA layer.
  753. If unsure, say N.
  754. config PATA_PLATFORM
  755. tristate "Generic platform device PATA support"
  756. depends on EXPERT || PPC || HAVE_PATA_PLATFORM
  757. help
  758. This option enables support for generic directly connected ATA
  759. devices commonly found on embedded systems.
  760. If unsure, say N.
  761. config PATA_OF_PLATFORM
  762. tristate "OpenFirmware platform device PATA support"
  763. depends on PATA_PLATFORM && OF
  764. help
  765. This option enables support for generic directly connected ATA
  766. devices commonly found on embedded systems with OpenFirmware
  767. bindings.
  768. If unsure, say N.
  769. config PATA_QDI
  770. tristate "QDI VLB PATA support"
  771. depends on ISA
  772. select PATA_LEGACY
  773. help
  774. Support for QDI 6500 and 6580 PATA controllers on VESA local bus.
  775. config PATA_RB532
  776. tristate "RouterBoard 532 PATA CompactFlash support"
  777. depends on MIKROTIK_RB532
  778. help
  779. This option enables support for the RouterBoard 532
  780. PATA CompactFlash controller.
  781. If unsure, say N.
  782. config PATA_RZ1000
  783. tristate "PC Tech RZ1000 PATA support"
  784. depends on PCI
  785. help
  786. This option enables basic support for the PC Tech RZ1000/1
  787. PATA controllers via the new ATA layer
  788. If unsure, say N.
  789. config PATA_SAMSUNG_CF
  790. tristate "Samsung SoC PATA support"
  791. depends on SAMSUNG_DEV_IDE
  792. help
  793. This option enables basic support for Samsung's S3C/S5P board
  794. PATA controllers via the new ATA layer
  795. If unsure, say N.
  796. config PATA_WINBOND_VLB
  797. tristate "Winbond W83759A VLB PATA support (Experimental)"
  798. depends on ISA
  799. select PATA_LEGACY
  800. help
  801. Support for the Winbond W83759A controller on Vesa Local Bus
  802. systems.
  803. comment "Generic fallback / legacy drivers"
  804. config PATA_ACPI
  805. tristate "ACPI firmware driver for PATA"
  806. depends on ATA_ACPI && ATA_BMDMA
  807. help
  808. This option enables an ACPI method driver which drives
  809. motherboard PATA controller interfaces through the ACPI
  810. firmware in the BIOS. This driver can sometimes handle
  811. otherwise unsupported hardware.
  812. config ATA_GENERIC
  813. tristate "Generic ATA support"
  814. depends on PCI && ATA_BMDMA
  815. help
  816. This option enables support for generic BIOS configured
  817. ATA controllers via the new ATA layer
  818. If unsure, say N.
  819. config PATA_LEGACY
  820. tristate "Legacy ISA PATA support (Experimental)"
  821. depends on (ISA || PCI)
  822. help
  823. This option enables support for ISA/VLB/PCI bus legacy PATA
  824. ports and allows them to be accessed via the new ATA layer.
  825. If unsure, say N.
  826. endif # ATA_SFF
  827. endif # ATA