Kconfig 25 KB

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