blob: 19454fe2cb4213bbc7d14c6c2cbd56e283c78430 [file] [log] [blame]
xjb04a4022021-11-25 15:01:52 +08001# SPDX-License-Identifier: GPL-2.0
2#
3# SATA/PATA driver configuration
4#
5
6config HAVE_PATA_PLATFORM
7 bool
8 help
9 This is an internal configuration node for any machine that
10 uses pata-platform driver to enable the relevant driver in the
11 configuration structure without having to submit endless patches
12 to update the PATA_PLATFORM entry.
13
14menuconfig ATA
15 tristate "Serial ATA and Parallel ATA drivers (libata)"
16 depends on HAS_IOMEM
17 depends on BLOCK
18 select SCSI
19 select GLOB
20 ---help---
21 If you want to use an ATA hard disk, ATA tape drive, ATA CD-ROM or
22 any other ATA device under Linux, say Y and make sure that you know
23 the name of your ATA host adapter (the card inside your computer
24 that "speaks" the ATA protocol, also called ATA controller),
25 because you will be asked for it.
26
27 NOTE: ATA enables basic SCSI support; *however*,
28 'SCSI disk support', 'SCSI tape support', or
29 'SCSI CDROM support' may also be needed,
30 depending on your hardware configuration.
31
32if ATA
33
34config ATA_NONSTANDARD
35 bool
36 default n
37
38config ATA_VERBOSE_ERROR
39 bool "Verbose ATA error reporting"
40 default y
41 help
42 This option adds parsing of ATA command descriptions and error bits
43 in libata kernel output, making it easier to interpret.
44 This option will enlarge the kernel by approx. 6KB. Disable it only
45 if kernel size is more important than ease of debugging.
46
47 If unsure, say Y.
48
49config ARCH_WANT_LIBATA_LEDS
50 bool
51
52config ATA_LEDS
53 bool "support ATA port LED triggers"
54 depends on ARCH_WANT_LIBATA_LEDS
55 select NEW_LEDS
56 select LEDS_CLASS
57 select LEDS_TRIGGERS
58 default y
59 help
60 This option adds a LED trigger for each registered ATA port.
61 It is used to drive disk activity leds connected via GPIO.
62
63 If unsure, say N.
64
65config ATA_ACPI
66 bool "ATA ACPI Support"
67 depends on ACPI
68 default y
69 help
70 This option adds support for ATA-related ACPI objects.
71 These ACPI objects add the ability to retrieve taskfiles
72 from the ACPI BIOS and write them to the disk controller.
73 These objects may be related to performance, security,
74 power management, or other areas.
75 You can disable this at kernel boot time by using the
76 option libata.noacpi=1
77
78config SATA_ZPODD
79 bool "SATA Zero Power Optical Disc Drive (ZPODD) support"
80 depends on ATA_ACPI && PM
81 default n
82 help
83 This option adds support for SATA Zero Power Optical Disc
84 Drive (ZPODD). It requires both the ODD and the platform
85 support, and if enabled, will automatically power on/off the
86 ODD when certain condition is satisfied. This does not impact
87 end user's experience of the ODD, only power is saved when
88 the ODD is not in use (i.e. no disc inside).
89
90 If unsure, say N.
91
92config SATA_PMP
93 bool "SATA Port Multiplier support"
94 default y
95 help
96 This option adds support for SATA Port Multipliers
97 (the SATA version of an ethernet hub, or SAS expander).
98
99if HAS_DMA
100
101comment "Controllers with non-SFF native interface"
102
103config SATA_AHCI
104 tristate "AHCI SATA support"
105 depends on PCI
106 help
107 This option enables support for AHCI Serial ATA.
108
109 If unsure, say N.
110
111config SATA_MOBILE_LPM_POLICY
112 int "Default SATA Link Power Management policy for mobile chipsets"
113 range 0 4
114 default 0
115 depends on SATA_AHCI
116 help
117 Select the Default SATA Link Power Management (LPM) policy to use
118 for mobile / laptop variants of chipsets / "South Bridges".
119
120 The value set has the following meanings:
121 0 => Keep firmware settings
122 1 => Maximum performance
123 2 => Medium power
124 3 => Medium power with Device Initiated PM enabled
125 4 => Minimum power
126
127 Note "Minimum power" is known to cause issues, including disk
128 corruption, with some disks and should not be used.
129
130config SATA_AHCI_PLATFORM
131 tristate "Platform AHCI SATA support"
132 help
133 This option enables support for Platform AHCI Serial ATA
134 controllers.
135
136 If unsure, say N.
137
138config AHCI_BRCM
139 tristate "Broadcom AHCI SATA support"
140 depends on ARCH_BRCMSTB || BMIPS_GENERIC || ARCH_BCM_NSP || \
141 ARCH_BCM_63XX
142 help
143 This option enables support for the AHCI SATA3 controller found on
144 Broadcom SoC's.
145
146 If unsure, say N.
147
148config AHCI_DA850
149 tristate "DaVinci DA850 AHCI SATA support"
150 depends on ARCH_DAVINCI_DA850
151 help
152 This option enables support for the DaVinci DA850 SoC's
153 onboard AHCI SATA.
154
155 If unsure, say N.
156
157config AHCI_DM816
158 tristate "DaVinci DM816 AHCI SATA support"
159 depends on ARCH_OMAP2PLUS
160 help
161 This option enables support for the DaVinci DM816 SoC's
162 onboard AHCI SATA controller.
163
164 If unsure, say N.
165
166config AHCI_ST
167 tristate "ST AHCI SATA support"
168 depends on ARCH_STI
169 help
170 This option enables support for ST AHCI SATA controller.
171
172 If unsure, say N.
173
174config AHCI_IMX
175 tristate "Freescale i.MX AHCI SATA support"
176 depends on MFD_SYSCON && (ARCH_MXC || COMPILE_TEST)
177 depends on (HWMON && (THERMAL || !THERMAL_OF)) || !HWMON
178 help
179 This option enables support for the Freescale i.MX SoC's
180 onboard AHCI SATA.
181
182 If unsure, say N.
183
184config AHCI_CEVA
185 tristate "CEVA AHCI SATA support"
186 depends on OF
187 help
188 This option enables support for the CEVA AHCI SATA.
189 It can be found on the Xilinx Zynq UltraScale+ MPSoC.
190
191 If unsure, say N.
192
193config AHCI_MTK
194 tristate "MediaTek AHCI SATA support"
195 depends on ARCH_MEDIATEK
196 select MFD_SYSCON
197 help
198 This option enables support for the MediaTek SoC's
199 onboard AHCI SATA controller.
200
201 If unsure, say N.
202
203config AHCI_MVEBU
204 tristate "Marvell EBU AHCI SATA support"
205 depends on ARCH_MVEBU
206 help
207 This option enables support for the Marvebu EBU SoC's
208 onboard AHCI SATA.
209
210 If unsure, say N.
211
212config AHCI_OCTEON
213 tristate "Cavium Octeon Soc Serial ATA"
214 depends on SATA_AHCI_PLATFORM && CAVIUM_OCTEON_SOC
215 default y
216 help
217 This option enables support for Cavium Octeon SoC Serial ATA.
218
219 If unsure, say N.
220
221config AHCI_SUNXI
222 tristate "Allwinner sunxi AHCI SATA support"
223 depends on ARCH_SUNXI
224 help
225 This option enables support for the Allwinner sunxi SoC's
226 onboard AHCI SATA.
227
228 If unsure, say N.
229
230config AHCI_TEGRA
231 tristate "NVIDIA Tegra AHCI SATA support"
232 depends on ARCH_TEGRA
233 help
234 This option enables support for the NVIDIA Tegra SoC's
235 onboard AHCI SATA.
236
237 If unsure, say N.
238
239config AHCI_XGENE
240 tristate "APM X-Gene 6.0Gbps AHCI SATA host controller support"
241 depends on PHY_XGENE
242 help
243 This option enables support for APM X-Gene SoC SATA host controller.
244
245config AHCI_QORIQ
246 tristate "Freescale QorIQ AHCI SATA support"
247 depends on OF
248 help
249 This option enables support for the Freescale QorIQ AHCI SoC's
250 onboard AHCI SATA.
251
252 If unsure, say N.
253
254config SATA_FSL
255 tristate "Freescale 3.0Gbps SATA support"
256 depends on FSL_SOC
257 help
258 This option enables support for Freescale 3.0Gbps SATA controller.
259 It can be found on MPC837x and MPC8315.
260
261 If unsure, say N.
262
263config SATA_GEMINI
264 tristate "Gemini SATA bridge support"
265 depends on ARCH_GEMINI || COMPILE_TEST
266 default ARCH_GEMINI
267 help
268 This enabled support for the FTIDE010 to SATA bridge
269 found in Cortina Systems Gemini platform.
270
271 If unsure, say N.
272
273config SATA_AHCI_SEATTLE
274 tristate "AMD Seattle 6.0Gbps AHCI SATA host controller support"
275 depends on ARCH_SEATTLE
276 help
277 This option enables support for AMD Seattle SATA host controller.
278
279 If unsure, say N
280
281config SATA_INIC162X
282 tristate "Initio 162x SATA support (Very Experimental)"
283 depends on PCI
284 help
285 This option enables support for Initio 162x Serial ATA.
286
287config SATA_ACARD_AHCI
288 tristate "ACard AHCI variant (ATP 8620)"
289 depends on PCI
290 help
291 This option enables support for Acard.
292
293 If unsure, say N.
294
295config SATA_SIL24
296 tristate "Silicon Image 3124/3132 SATA support"
297 depends on PCI
298 help
299 This option enables support for Silicon Image 3124/3132 Serial ATA.
300
301 If unsure, say N.
302
303endif # HAS_DMA
304
305config ATA_SFF
306 bool "ATA SFF support (for legacy IDE and PATA)"
307 default y
308 help
309 This option adds support for ATA controllers with SFF
310 compliant or similar programming interface.
311
312 SFF is the legacy IDE interface that has been around since
313 the dawn of time. Almost all PATA controllers have an
314 SFF interface. Many SATA controllers have an SFF interface
315 when configured into a legacy compatibility mode.
316
317 For users with exclusively modern controllers like AHCI,
318 Silicon Image 3124, or Marvell 6440, you may choose to
319 disable this unneeded SFF support.
320
321 If unsure, say Y.
322
323if ATA_SFF
324
325comment "SFF controllers with custom DMA interface"
326
327config PDC_ADMA
328 tristate "Pacific Digital ADMA support"
329 depends on PCI
330 help
331 This option enables support for Pacific Digital ADMA controllers
332
333 If unsure, say N.
334
335config PATA_OCTEON_CF
336 tristate "OCTEON Boot Bus Compact Flash support"
337 depends on CAVIUM_OCTEON_SOC
338 help
339 This option enables a polled compact flash driver for use with
340 compact flash cards attached to the OCTEON boot bus.
341
342 If unsure, say N.
343
344config SATA_QSTOR
345 tristate "Pacific Digital SATA QStor support"
346 depends on PCI
347 help
348 This option enables support for Pacific Digital Serial ATA QStor.
349
350 If unsure, say N.
351
352config SATA_SX4
353 tristate "Promise SATA SX4 support (Experimental)"
354 depends on PCI
355 help
356 This option enables support for Promise Serial ATA SX4.
357
358 If unsure, say N.
359
360config ATA_BMDMA
361 bool "ATA BMDMA support"
362 depends on HAS_DMA
363 default y
364 help
365 This option adds support for SFF ATA controllers with BMDMA
366 capability. BMDMA stands for bus-master DMA and is the
367 de facto DMA interface for SFF controllers.
368
369 If unsure, say Y.
370
371if ATA_BMDMA
372
373comment "SATA SFF controllers with BMDMA"
374
375config ATA_PIIX
376 tristate "Intel ESB, ICH, PIIX3, PIIX4 PATA/SATA support"
377 depends on PCI
378 help
379 This option enables support for ICH5/6/7/8 Serial ATA
380 and support for PATA on the Intel ESB/ICH/PIIX3/PIIX4 series
381 host controllers.
382
383 If unsure, say N.
384
385config SATA_DWC
386 tristate "DesignWare Cores SATA support"
387 depends on DMADEVICES
388 select GENERIC_PHY
389 help
390 This option enables support for the on-chip SATA controller of the
391 AppliedMicro processor 460EX.
392
393 If unsure, say N.
394
395config SATA_DWC_OLD_DMA
396 bool "Support old device trees"
397 depends on SATA_DWC
398 select DW_DMAC_CORE
399 default y if 460EX
400 help
401 This option enables support for old device trees without the
402 "dmas" property.
403
404config SATA_DWC_DEBUG
405 bool "Debugging driver version"
406 depends on SATA_DWC
407 help
408 This option enables debugging output in the driver.
409
410config SATA_DWC_VDEBUG
411 bool "Verbose debug output"
412 depends on SATA_DWC_DEBUG
413 help
414 This option enables the taskfile dumping and NCQ debugging.
415
416config SATA_HIGHBANK
417 tristate "Calxeda Highbank SATA support"
418 depends on ARCH_HIGHBANK || COMPILE_TEST
419 help
420 This option enables support for the Calxeda Highbank SoC's
421 onboard SATA.
422
423 If unsure, say N.
424
425config SATA_MV
426 tristate "Marvell SATA support"
427 depends on PCI || ARCH_DOVE || ARCH_MV78XX0 || \
428 ARCH_MVEBU || ARCH_ORION5X || COMPILE_TEST
429 select GENERIC_PHY
430 help
431 This option enables support for the Marvell Serial ATA family.
432 Currently supports 88SX[56]0[48][01] PCI(-X) chips,
433 as well as the newer [67]042 PCI-X/PCIe and SOC devices.
434
435 If unsure, say N.
436
437config SATA_NV
438 tristate "NVIDIA SATA support"
439 depends on PCI
440 help
441 This option enables support for NVIDIA Serial ATA.
442
443 If unsure, say N.
444
445config SATA_PROMISE
446 tristate "Promise SATA TX2/TX4 support"
447 depends on PCI
448 help
449 This option enables support for Promise Serial ATA TX2/TX4.
450
451 If unsure, say N.
452
453config SATA_RCAR
454 tristate "Renesas R-Car SATA support"
455 depends on ARCH_RENESAS || COMPILE_TEST
456 help
457 This option enables support for Renesas R-Car Serial ATA.
458
459 If unsure, say N.
460
461config SATA_SIL
462 tristate "Silicon Image SATA support"
463 depends on PCI
464 help
465 This option enables support for Silicon Image Serial ATA.
466
467 If unsure, say N.
468
469config SATA_SIS
470 tristate "SiS 964/965/966/180 SATA support"
471 depends on PCI
472 select PATA_SIS
473 help
474 This option enables support for SiS Serial ATA on
475 SiS 964/965/966/180 and Parallel ATA on SiS 180.
476 The PATA support for SiS 180 requires additionally to
477 enable the PATA_SIS driver in the config.
478 If unsure, say N.
479
480config SATA_SVW
481 tristate "ServerWorks Frodo / Apple K2 SATA support"
482 depends on PCI
483 help
484 This option enables support for Broadcom/Serverworks/Apple K2
485 SATA support.
486
487 If unsure, say N.
488
489config SATA_ULI
490 tristate "ULi Electronics SATA support"
491 depends on PCI
492 help
493 This option enables support for ULi Electronics SATA.
494
495 If unsure, say N.
496
497config SATA_VIA
498 tristate "VIA SATA support"
499 depends on PCI
500 help
501 This option enables support for VIA Serial ATA.
502
503 If unsure, say N.
504
505config SATA_VITESSE
506 tristate "VITESSE VSC-7174 / INTEL 31244 SATA support"
507 depends on PCI
508 help
509 This option enables support for Vitesse VSC7174 and Intel 31244 Serial ATA.
510
511 If unsure, say N.
512
513comment "PATA SFF controllers with BMDMA"
514
515config PATA_ALI
516 tristate "ALi PATA support"
517 depends on PCI
518 help
519 This option enables support for the ALi ATA interfaces
520 found on the many ALi chipsets.
521
522 If unsure, say N.
523
524config PATA_AMD
525 tristate "AMD/NVidia PATA support"
526 depends on PCI
527 help
528 This option enables support for the AMD and NVidia PATA
529 interfaces found on the chipsets for Athlon/Athlon64.
530
531 If unsure, say N.
532
533config PATA_ARASAN_CF
534 tristate "ARASAN CompactFlash PATA Controller Support"
535 depends on ARCH_SPEAR13XX || COMPILE_TEST
536 depends on DMADEVICES
537 select DMA_ENGINE
538 help
539 Say Y here to support the ARASAN CompactFlash PATA controller
540
541config PATA_ARTOP
542 tristate "ARTOP 6210/6260 PATA support"
543 depends on PCI
544 help
545 This option enables support for ARTOP PATA controllers.
546
547 If unsure, say N.
548
549config PATA_ATIIXP
550 tristate "ATI PATA support"
551 depends on PCI
552 help
553 This option enables support for the ATI ATA interfaces
554 found on the many ATI chipsets.
555
556 If unsure, say N.
557
558config PATA_ATP867X
559 tristate "ARTOP/Acard ATP867X PATA support"
560 depends on PCI
561 help
562 This option enables support for ARTOP/Acard ATP867X PATA
563 controllers.
564
565 If unsure, say N.
566
567config PATA_BK3710
568 tristate "Palmchip BK3710 PATA support"
569 depends on ARCH_DAVINCI
570 help
571 This option enables support for the integrated IDE controller on
572 the TI DaVinci SoC.
573
574 If unsure, say N.
575
576config PATA_CMD64X
577 tristate "CMD64x PATA support"
578 depends on PCI
579 help
580 This option enables support for the CMD64x series chips
581 except for the CMD640.
582
583 If unsure, say N.
584
585config PATA_CS5520
586 tristate "CS5510/5520 PATA support"
587 depends on PCI && (X86_32 || COMPILE_TEST)
588 help
589 This option enables support for the Cyrix 5510/5520
590 companion chip used with the MediaGX/Geode processor family.
591
592 If unsure, say N.
593
594config PATA_CS5530
595 tristate "CS5530 PATA support"
596 depends on PCI && (X86_32 || COMPILE_TEST)
597 help
598 This option enables support for the Cyrix/NatSemi/AMD CS5530
599 companion chip used with the MediaGX/Geode processor family.
600
601 If unsure, say N.
602
603config PATA_CS5535
604 tristate "CS5535 PATA support (Experimental)"
605 depends on PCI && X86_32
606 help
607 This option enables support for the NatSemi/AMD CS5535
608 companion chip used with the Geode processor family.
609
610 If unsure, say N.
611
612config PATA_CS5536
613 tristate "CS5536 PATA support"
614 depends on PCI && (X86_32 || MIPS || COMPILE_TEST)
615 help
616 This option enables support for the AMD CS5536
617 companion chip used with the Geode LX processor family.
618
619 If unsure, say N.
620
621config PATA_CYPRESS
622 tristate "Cypress CY82C693 PATA support (Very Experimental)"
623 depends on PCI
624 help
625 This option enables support for the Cypress/Contaq CY82C693
626 chipset found in some Alpha systems
627
628 If unsure, say N.
629
630config PATA_EFAR
631 tristate "EFAR SLC90E66 support"
632 depends on PCI
633 help
634 This option enables support for the EFAR SLC90E66
635 IDE controller found on some older machines.
636
637 If unsure, say N.
638
639config PATA_EP93XX
640 tristate "Cirrus Logic EP93xx PATA support"
641 depends on ARCH_EP93XX
642 help
643 This option enables support for the PATA controller in
644 the Cirrus Logic EP9312 and EP9315 ARM CPU.
645
646 If unsure, say N.
647
648config PATA_FTIDE010
649 tristate "Faraday Technology FTIDE010 PATA support"
650 depends on OF
651 depends on ARM
652 depends on SATA_GEMINI
653 help
654 This option enables support for the Faraday FTIDE010
655 PATA controller found in the Cortina Gemini SoCs.
656
657 If unsure, say N.
658
659config PATA_HPT366
660 tristate "HPT 366/368 PATA support"
661 depends on PCI
662 help
663 This option enables support for the HPT 366 and 368
664 PATA controllers via the new ATA layer.
665
666 If unsure, say N.
667
668config PATA_HPT37X
669 tristate "HPT 370/370A/371/372/374/302 PATA support"
670 depends on PCI
671 help
672 This option enables support for the majority of the later HPT
673 PATA controllers via the new ATA layer.
674
675 If unsure, say N.
676
677config PATA_HPT3X2N
678 tristate "HPT 371N/372N/302N PATA support"
679 depends on PCI
680 help
681 This option enables support for the N variant HPT PATA
682 controllers via the new ATA layer.
683
684 If unsure, say N.
685
686config PATA_HPT3X3
687 tristate "HPT 343/363 PATA support"
688 depends on PCI
689 help
690 This option enables support for the HPT 343/363
691 PATA controllers via the new ATA layer
692
693 If unsure, say N.
694
695config PATA_HPT3X3_DMA
696 bool "HPT 343/363 DMA support"
697 depends on PATA_HPT3X3
698 help
699 This option enables DMA support for the HPT343/363
700 controllers. Enable with care as there are still some
701 problems with DMA on this chipset.
702
703config PATA_ICSIDE
704 tristate "Acorn ICS PATA support"
705 depends on ARM && ARCH_ACORN
706 help
707 On Acorn systems, say Y here if you wish to use the ICS PATA
708 interface card. This is not required for ICS partition support.
709 If you are unsure, say N to this.
710
711config PATA_IMX
712 tristate "PATA support for Freescale iMX"
713 depends on ARCH_MXC
714 help
715 This option enables support for the PATA host available on Freescale
716 iMX SoCs.
717
718 If unsure, say N.
719
720config PATA_IT8213
721 tristate "IT8213 PATA support (Experimental)"
722 depends on PCI
723 help
724 This option enables support for the ITE 821 PATA
725 controllers via the new ATA layer.
726
727 If unsure, say N.
728
729config PATA_IT821X
730 tristate "IT8211/2 PATA support"
731 depends on PCI
732 help
733 This option enables support for the ITE 8211 and 8212
734 PATA controllers via the new ATA layer, including RAID
735 mode.
736
737 If unsure, say N.
738
739config PATA_JMICRON
740 tristate "JMicron PATA support"
741 depends on PCI
742 help
743 Enable support for the JMicron IDE controller, via the new
744 ATA layer.
745
746 If unsure, say N.
747
748config PATA_MACIO
749 tristate "Apple PowerMac/PowerBook internal 'MacIO' IDE"
750 depends on PPC_PMAC
751 help
752 Most IDE capable PowerMacs have IDE busses driven by a variant
753 of this controller which is part of the Apple chipset used on
754 most PowerMac models. Some models have multiple busses using
755 different chipsets, though generally, MacIO is one of them.
756
757config PATA_MARVELL
758 tristate "Marvell PATA support via legacy mode"
759 depends on PCI
760 help
761 This option enables limited support for the Marvell 88SE61xx ATA
762 controllers. If you wish to use only the SATA ports then select
763 the AHCI driver alone. If you wish to the use the PATA port or
764 both SATA and PATA include this driver.
765
766 If unsure, say N.
767
768config PATA_MPC52xx
769 tristate "Freescale MPC52xx SoC internal IDE"
770 depends on PPC_MPC52xx && PPC_BESTCOMM
771 select PPC_BESTCOMM_ATA
772 help
773 This option enables support for integrated IDE controller
774 of the Freescale MPC52xx SoC.
775
776 If unsure, say N.
777
778config PATA_NETCELL
779 tristate "NETCELL Revolution RAID support"
780 depends on PCI
781 help
782 This option enables support for the Netcell Revolution RAID
783 PATA controller.
784
785 If unsure, say N.
786
787config PATA_NINJA32
788 tristate "Ninja32/Delkin Cardbus ATA support"
789 depends on PCI
790 help
791 This option enables support for the Ninja32, Delkin and
792 possibly other brands of Cardbus ATA adapter
793
794 If unsure, say N.
795
796config PATA_NS87415
797 tristate "Nat Semi NS87415 PATA support"
798 depends on PCI
799 help
800 This option enables support for the National Semiconductor
801 NS87415 PCI-IDE controller.
802
803 If unsure, say N.
804
805config PATA_OLDPIIX
806 tristate "Intel PATA old PIIX support"
807 depends on PCI
808 help
809 This option enables support for early PIIX PATA support.
810
811 If unsure, say N.
812
813config PATA_OPTIDMA
814 tristate "OPTI FireStar PATA support (Very Experimental)"
815 depends on PCI
816 help
817 This option enables DMA/PIO support for the later OPTi
818 controllers found on some old motherboards and in some
819 laptops.
820
821 If unsure, say N.
822
823config PATA_PDC2027X
824 tristate "Promise PATA 2027x support"
825 depends on PCI
826 help
827 This option enables support for Promise PATA pdc20268 to pdc20277 host adapters.
828
829 If unsure, say N.
830
831config PATA_PDC_OLD
832 tristate "Older Promise PATA controller support"
833 depends on PCI
834 help
835 This option enables support for the Promise 20246, 20262, 20263,
836 20265 and 20267 adapters.
837
838 If unsure, say N.
839
840config PATA_RADISYS
841 tristate "RADISYS 82600 PATA support (Experimental)"
842 depends on PCI
843 help
844 This option enables support for the RADISYS 82600
845 PATA controllers via the new ATA layer
846
847 If unsure, say N.
848
849config PATA_RDC
850 tristate "RDC PATA support"
851 depends on PCI
852 help
853 This option enables basic support for the later RDC PATA controllers
854 controllers via the new ATA layer. For the RDC 1010, you need to
855 enable the IT821X driver instead.
856
857 If unsure, say N.
858
859config PATA_SC1200
860 tristate "SC1200 PATA support"
861 depends on PCI && (X86_32 || COMPILE_TEST)
862 help
863 This option enables support for the NatSemi/AMD SC1200 SoC
864 companion chip used with the Geode processor family.
865
866 If unsure, say N.
867
868config PATA_SCH
869 tristate "Intel SCH PATA support"
870 depends on PCI
871 help
872 This option enables support for Intel SCH PATA on the Intel
873 SCH (US15W, US15L, UL11L) series host controllers.
874
875 If unsure, say N.
876
877config PATA_SERVERWORKS
878 tristate "SERVERWORKS OSB4/CSB5/CSB6/HT1000 PATA support"
879 depends on PCI
880 help
881 This option enables support for the Serverworks OSB4/CSB5/CSB6 and
882 HT1000 PATA controllers, via the new ATA layer.
883
884 If unsure, say N.
885
886config PATA_SIL680
887 tristate "CMD / Silicon Image 680 PATA support"
888 depends on PCI
889 help
890 This option enables support for CMD / Silicon Image 680 PATA.
891
892 If unsure, say N.
893
894config PATA_SIS
895 tristate "SiS PATA support"
896 depends on PCI
897 help
898 This option enables support for SiS PATA controllers
899
900 If unsure, say N.
901
902config PATA_TOSHIBA
903 tristate "Toshiba Piccolo support (Experimental)"
904 depends on PCI
905 help
906 Support for the Toshiba Piccolo controllers. Currently only the
907 primary channel is supported by this driver.
908
909 If unsure, say N.
910
911config PATA_TRIFLEX
912 tristate "Compaq Triflex PATA support"
913 depends on PCI
914 help
915 Enable support for the Compaq 'Triflex' IDE controller as found
916 on many Compaq Pentium-Pro systems, via the new ATA layer.
917
918 If unsure, say N.
919
920config PATA_VIA
921 tristate "VIA PATA support"
922 depends on PCI
923 help
924 This option enables support for the VIA PATA interfaces
925 found on the many VIA chipsets.
926
927 If unsure, say N.
928
929config PATA_PXA
930 tristate "PXA DMA-capable PATA support"
931 depends on ARCH_PXA
932 help
933 This option enables support for harddrive attached to PXA CPU's bus.
934
935 NOTE: This driver utilizes PXA DMA controller, in case your hardware
936 is not capable of doing MWDMA, use pata_platform instead.
937
938 If unsure, say N.
939
940config PATA_WINBOND
941 tristate "Winbond SL82C105 PATA support"
942 depends on PCI
943 help
944 This option enables support for SL82C105 PATA devices found in the
945 Netwinder and some other systems
946
947 If unsure, say N.
948
949endif # ATA_BMDMA
950
951comment "PIO-only SFF controllers"
952
953config PATA_CMD640_PCI
954 tristate "CMD640 PCI PATA support (Experimental)"
955 depends on PCI
956 help
957 This option enables support for the CMD640 PCI IDE
958 interface chip. Only the primary channel is currently
959 supported.
960
961 If unsure, say N.
962
963config PATA_FALCON
964 tristate "Atari Falcon PATA support"
965 depends on M68K && ATARI
966 help
967 This option enables support for the on-board IDE
968 interface on the Atari Falcon.
969
970 If unsure, say N.
971
972config PATA_GAYLE
973 tristate "Amiga Gayle PATA support"
974 depends on M68K && AMIGA
975 help
976 This option enables support for the on-board IDE
977 interfaces on some Amiga models (A600, A1200,
978 A4000 and A4000T) and also for IDE interfaces on
979 the Zorro expansion bus (M-Tech E-Matrix 530
980 expansion card).
981
982 If unsure, say N.
983
984config PATA_ISAPNP
985 tristate "ISA Plug and Play PATA support"
986 depends on ISAPNP
987 help
988 This option enables support for ISA plug & play ATA
989 controllers such as those found on old soundcards.
990
991 If unsure, say N.
992
993config PATA_IXP4XX_CF
994 tristate "IXP4XX Compact Flash support"
995 depends on ARCH_IXP4XX
996 help
997 This option enables support for a Compact Flash connected on
998 the ixp4xx expansion bus. This driver had been written for
999 Loft/Avila boards in mind but can work with others.
1000
1001 If unsure, say N.
1002
1003config PATA_MPIIX
1004 tristate "Intel PATA MPIIX support"
1005 depends on PCI
1006 help
1007 This option enables support for MPIIX PATA support.
1008
1009 If unsure, say N.
1010
1011config PATA_NS87410
1012 tristate "Nat Semi NS87410 PATA support"
1013 depends on PCI
1014 help
1015 This option enables support for the National Semiconductor
1016 NS87410 PCI-IDE controller.
1017
1018 If unsure, say N.
1019
1020config PATA_OPTI
1021 tristate "OPTI621/6215 PATA support (Very Experimental)"
1022 depends on PCI
1023 help
1024 This option enables full PIO support for the early Opti ATA
1025 controllers found on some old motherboards.
1026
1027 If unsure, say N.
1028
1029config PATA_PALMLD
1030 tristate "Palm LifeDrive PATA support"
1031 depends on MACH_PALMLD
1032 help
1033 This option enables support for Palm LifeDrive's internal ATA
1034 port via the new ATA layer.
1035
1036 If unsure, say N.
1037
1038config PATA_PCMCIA
1039 tristate "PCMCIA PATA support"
1040 depends on PCMCIA
1041 help
1042 This option enables support for PCMCIA ATA interfaces, including
1043 compact flash card adapters via the new ATA layer.
1044
1045 If unsure, say N.
1046
1047config PATA_PLATFORM
1048 tristate "Generic platform device PATA support"
1049 depends on EXPERT || PPC || HAVE_PATA_PLATFORM
1050 help
1051 This option enables support for generic directly connected ATA
1052 devices commonly found on embedded systems.
1053
1054 If unsure, say N.
1055
1056config PATA_OF_PLATFORM
1057 tristate "OpenFirmware platform device PATA support"
1058 depends on PATA_PLATFORM && OF
1059 help
1060 This option enables support for generic directly connected ATA
1061 devices commonly found on embedded systems with OpenFirmware
1062 bindings.
1063
1064 If unsure, say N.
1065
1066config PATA_QDI
1067 tristate "QDI VLB PATA support"
1068 depends on ISA
1069 select PATA_LEGACY
1070 help
1071 Support for QDI 6500 and 6580 PATA controllers on VESA local bus.
1072
1073config PATA_RB532
1074 tristate "RouterBoard 532 PATA CompactFlash support"
1075 depends on MIKROTIK_RB532
1076 help
1077 This option enables support for the RouterBoard 532
1078 PATA CompactFlash controller.
1079
1080 If unsure, say N.
1081
1082config PATA_RZ1000
1083 tristate "PC Tech RZ1000 PATA support"
1084 depends on PCI
1085 help
1086 This option enables basic support for the PC Tech RZ1000/1
1087 PATA controllers via the new ATA layer
1088
1089 If unsure, say N.
1090
1091config PATA_SAMSUNG_CF
1092 tristate "Samsung SoC PATA support"
1093 depends on SAMSUNG_DEV_IDE
1094 help
1095 This option enables basic support for Samsung's S3C/S5P board
1096 PATA controllers via the new ATA layer
1097
1098 If unsure, say N.
1099
1100config PATA_WINBOND_VLB
1101 tristate "Winbond W83759A VLB PATA support (Experimental)"
1102 depends on ISA
1103 select PATA_LEGACY
1104 help
1105 Support for the Winbond W83759A controller on Vesa Local Bus
1106 systems.
1107
1108comment "Generic fallback / legacy drivers"
1109
1110config PATA_ACPI
1111 tristate "ACPI firmware driver for PATA"
1112 depends on ATA_ACPI && ATA_BMDMA
1113 help
1114 This option enables an ACPI method driver which drives
1115 motherboard PATA controller interfaces through the ACPI
1116 firmware in the BIOS. This driver can sometimes handle
1117 otherwise unsupported hardware.
1118
1119config ATA_GENERIC
1120 tristate "Generic ATA support"
1121 depends on PCI && ATA_BMDMA
1122 help
1123 This option enables support for generic BIOS configured
1124 ATA controllers via the new ATA layer
1125
1126 If unsure, say N.
1127
1128config PATA_LEGACY
1129 tristate "Legacy ISA PATA support (Experimental)"
1130 depends on (ISA || PCI)
1131 help
1132 This option enables support for ISA/VLB/PCI bus legacy PATA
1133 ports and allows them to be accessed via the new ATA layer.
1134
1135 If unsure, say N.
1136
1137endif # ATA_SFF
1138endif # ATA