Kconfig 26 KB

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