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