Kconfig 26 KB

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