1# 2# SATA/PATA driver configuration 3# 4 5menuconfig ATA 6 tristate "Serial ATA (prod) and Parallel ATA (experimental) drivers" 7 depends on HAS_IOMEM 8 depends on BLOCK 9 depends on !(M32R || M68K) || BROKEN 10 depends on !SUN4 || BROKEN 11 select SCSI 12 ---help--- 13 If you want to use a ATA hard disk, ATA tape drive, ATA CD-ROM or 14 any other ATA device under Linux, say Y and make sure that you know 15 the name of your ATA host adapter (the card inside your computer 16 that "speaks" the ATA protocol, also called ATA controller), 17 because you will be asked for it. 18 19 NOTE: ATA enables basic SCSI support; *however*, 20 'SCSI disk support', 'SCSI tape support', or 21 'SCSI CDROM support' may also be needed, 22 depending on your hardware configuration. 23 24if ATA 25 26config ATA_NONSTANDARD 27 bool 28 default n 29 30config ATA_ACPI 31 bool 32 depends on ACPI && PCI 33 default y 34 help 35 This option adds support for ATA-related ACPI objects. 36 These ACPI objects add the ability to retrieve taskfiles 37 from the ACPI BIOS and write them to the disk controller. 38 These objects may be related to performance, security, 39 power management, or other areas. 40 You can disable this at kernel boot time by using the 41 option libata.noacpi=1 42 43config SATA_AHCI 44 tristate "AHCI SATA support" 45 depends on PCI 46 help 47 This option enables support for AHCI Serial ATA. 48 49 If unsure, say N. 50 51config SATA_SVW 52 tristate "ServerWorks Frodo / Apple K2 SATA support" 53 depends on PCI 54 help 55 This option enables support for Broadcom/Serverworks/Apple K2 56 SATA support. 57 58 If unsure, say N. 59 60config ATA_PIIX 61 tristate "Intel ESB, ICH, PIIX3, PIIX4 PATA/SATA support" 62 depends on PCI 63 help 64 This option enables support for ICH5/6/7/8 Serial ATA 65 and support for PATA on the Intel ESB/ICH/PIIX3/PIIX4 series 66 host controllers. 67 68 If unsure, say N. 69 70config SATA_MV 71 tristate "Marvell SATA support (HIGHLY EXPERIMENTAL)" 72 depends on PCI && EXPERIMENTAL 73 help 74 This option enables support for the Marvell Serial ATA family. 75 Currently supports 88SX[56]0[48][01] chips. 76 77 If unsure, say N. 78 79config SATA_NV 80 tristate "NVIDIA SATA support" 81 depends on PCI 82 help 83 This option enables support for NVIDIA Serial ATA. 84 85 If unsure, say N. 86 87config PDC_ADMA 88 tristate "Pacific Digital ADMA support" 89 depends on PCI 90 help 91 This option enables support for Pacific Digital ADMA controllers 92 93 If unsure, say N. 94 95config SATA_QSTOR 96 tristate "Pacific Digital SATA QStor support" 97 depends on PCI 98 help 99 This option enables support for Pacific Digital Serial ATA QStor. 100 101 If unsure, say N. 102 103config SATA_PROMISE 104 tristate "Promise SATA TX2/TX4 support" 105 depends on PCI 106 help 107 This option enables support for Promise Serial ATA TX2/TX4. 108 109 If unsure, say N. 110 111config SATA_SX4 112 tristate "Promise SATA SX4 support" 113 depends on PCI && EXPERIMENTAL 114 help 115 This option enables support for Promise Serial ATA SX4. 116 117 If unsure, say N. 118 119config SATA_SIL 120 tristate "Silicon Image SATA support" 121 depends on PCI 122 help 123 This option enables support for Silicon Image Serial ATA. 124 125 If unsure, say N. 126 127config SATA_SIL24 128 tristate "Silicon Image 3124/3132 SATA support" 129 depends on PCI 130 help 131 This option enables support for Silicon Image 3124/3132 Serial ATA. 132 133 If unsure, say N. 134 135config SATA_SIS 136 tristate "SiS 964/965/966/180 SATA support" 137 depends on PCI 138 select PATA_SIS 139 help 140 This option enables support for SiS Serial ATA on 141 SiS 964/965/966/180 and Parallel ATA on SiS 180. 142 The PATA support for SiS 180 requires additionally to 143 enable the PATA_SIS driver in the config. 144 If unsure, say N. 145 146config SATA_ULI 147 tristate "ULi Electronics SATA support" 148 depends on PCI 149 help 150 This option enables support for ULi Electronics SATA. 151 152 If unsure, say N. 153 154config SATA_VIA 155 tristate "VIA SATA support" 156 depends on PCI 157 help 158 This option enables support for VIA Serial ATA. 159 160 If unsure, say N. 161 162config SATA_VITESSE 163 tristate "VITESSE VSC-7174 / INTEL 31244 SATA support" 164 depends on PCI 165 help 166 This option enables support for Vitesse VSC7174 and Intel 31244 Serial ATA. 167 168 If unsure, say N. 169 170config SATA_INIC162X 171 tristate "Initio 162x SATA support (HIGHLY EXPERIMENTAL)" 172 depends on PCI && EXPERIMENTAL 173 help 174 This option enables support for Initio 162x Serial ATA. 175 176config PATA_ACPI 177 tristate "ACPI firmware driver for PATA" 178 depends on ATA_ACPI 179 help 180 This option enables an ACPI method driver which drives 181 motherboard PATA controller interfaces through the ACPI 182 firmware in the BIOS. This driver can sometimes handle 183 otherwise unsupported hardware. 184 185config PATA_ALI 186 tristate "ALi PATA support (Experimental)" 187 depends on PCI && EXPERIMENTAL 188 help 189 This option enables support for the ALi ATA interfaces 190 found on the many ALi chipsets. 191 192 If unsure, say N. 193 194config PATA_AMD 195 tristate "AMD/NVidia PATA support" 196 depends on PCI 197 help 198 This option enables support for the AMD and NVidia PATA 199 interfaces found on the chipsets for Athlon/Athlon64. 200 201 If unsure, say N. 202 203config PATA_ARTOP 204 tristate "ARTOP 6210/6260 PATA support" 205 depends on PCI 206 help 207 This option enables support for ARTOP PATA controllers. 208 209 If unsure, say N. 210 211config PATA_AT32 212 tristate "Atmel AVR32 PATA support (Experimental)" 213 depends on AVR32 && PLATFORM_AT32AP && EXPERIMENTAL 214 help 215 This option enables support for the IDE devices on the 216 Atmel AT32AP platform. 217 218 If unsure, say N. 219 220config PATA_ATIIXP 221 tristate "ATI PATA support" 222 depends on PCI 223 help 224 This option enables support for the ATI ATA interfaces 225 found on the many ATI chipsets. 226 227 If unsure, say N. 228 229config PATA_CMD640_PCI 230 tristate "CMD640 PCI PATA support (Very Experimental)" 231 depends on PCI && EXPERIMENTAL 232 help 233 This option enables support for the CMD640 PCI IDE 234 interface chip. Only the primary channel is currently 235 supported. 236 237 If unsure, say N. 238 239config PATA_CMD64X 240 tristate "CMD64x PATA support" 241 depends on PCI 242 help 243 This option enables support for the CMD64x series chips 244 except for the CMD640. 245 246 If unsure, say N. 247 248config PATA_CS5520 249 tristate "CS5510/5520 PATA support" 250 depends on PCI 251 help 252 This option enables support for the Cyrix 5510/5520 253 companion chip used with the MediaGX/Geode processor family. 254 255 If unsure, say N. 256 257config PATA_CS5530 258 tristate "CS5530 PATA support (Experimental)" 259 depends on PCI && EXPERIMENTAL 260 help 261 This option enables support for the Cyrix/NatSemi/AMD CS5530 262 companion chip used with the MediaGX/Geode processor family. 263 264 If unsure, say N. 265 266config PATA_CS5535 267 tristate "CS5535 PATA support (Experimental)" 268 depends on PCI && X86 && !X86_64 && EXPERIMENTAL 269 help 270 This option enables support for the NatSemi/AMD CS5535 271 companion chip used with the Geode processor family. 272 273 If unsure, say N. 274 275config PATA_CYPRESS 276 tristate "Cypress CY82C693 PATA support (Very Experimental)" 277 depends on PCI && EXPERIMENTAL 278 help 279 This option enables support for the Cypress/Contaq CY82C693 280 chipset found in some Alpha systems 281 282 If unsure, say N. 283 284config PATA_EFAR 285 tristate "EFAR SLC90E66 support" 286 depends on PCI 287 help 288 This option enables support for the EFAR SLC90E66 289 IDE controller found on some older machines. 290 291 If unsure, say N. 292 293config ATA_GENERIC 294 tristate "Generic ATA support" 295 depends on PCI 296 help 297 This option enables support for generic BIOS configured 298 ATA controllers via the new ATA layer 299 300 If unsure, say N. 301 302config PATA_HPT366 303 tristate "HPT 366/368 PATA support" 304 depends on PCI 305 help 306 This option enables support for the HPT 366 and 368 307 PATA controllers via the new ATA layer. 308 309 If unsure, say N. 310 311config PATA_HPT37X 312 tristate "HPT 370/370A/371/372/374/302 PATA support (Experimental)" 313 depends on PCI && EXPERIMENTAL 314 help 315 This option enables support for the majority of the later HPT 316 PATA controllers via the new ATA layer. 317 318 If unsure, say N. 319 320config PATA_HPT3X2N 321 tristate "HPT 372N/302N PATA support (Very Experimental)" 322 depends on PCI && EXPERIMENTAL 323 help 324 This option enables support for the N variant HPT PATA 325 controllers via the new ATA layer 326 327 If unsure, say N. 328 329config PATA_HPT3X3 330 tristate "HPT 343/363 PATA support" 331 depends on PCI 332 help 333 This option enables support for the HPT 343/363 334 PATA controllers via the new ATA layer 335 336 If unsure, say N. 337 338config PATA_HPT3X3_DMA 339 bool "HPT 343/363 DMA support (Experimental)" 340 depends on PATA_HPT3X3 341 help 342 This option enables DMA support for the HPT343/363 343 controllers. Enable with care as there are still some 344 problems with DMA on this chipset. 345 346config PATA_ISAPNP 347 tristate "ISA Plug and Play PATA support (Experimental)" 348 depends on EXPERIMENTAL && ISAPNP 349 help 350 This option enables support for ISA plug & play ATA 351 controllers such as those found on old soundcards. 352 353 If unsure, say N. 354 355config PATA_IT821X 356 tristate "IT8211/2 PATA support" 357 depends on PCI 358 help 359 This option enables support for the ITE 8211 and 8212 360 PATA controllers via the new ATA layer, including RAID 361 mode. 362 363 If unsure, say N. 364 365config PATA_IT8213 366 tristate "IT8213 PATA support (Experimental)" 367 depends on PCI && EXPERIMENTAL 368 help 369 This option enables support for the ITE 821 PATA 370 controllers via the new ATA layer. 371 372 If unsure, say N. 373 374config PATA_JMICRON 375 tristate "JMicron PATA support" 376 depends on PCI 377 help 378 Enable support for the JMicron IDE controller, via the new 379 ATA layer. 380 381 If unsure, say N. 382 383config PATA_LEGACY 384 tristate "Legacy ISA PATA support (Experimental)" 385 depends on ISA && EXPERIMENTAL 386 help 387 This option enables support for ISA/VLB bus legacy PATA 388 ports and allows them to be accessed via the new ATA layer. 389 390 If unsure, say N. 391 392config PATA_TRIFLEX 393 tristate "Compaq Triflex PATA support" 394 depends on PCI 395 help 396 Enable support for the Compaq 'Triflex' IDE controller as found 397 on many Compaq Pentium-Pro systems, via the new ATA layer. 398 399 If unsure, say N. 400 401config PATA_MARVELL 402 tristate "Marvell PATA support via legacy mode" 403 depends on PCI 404 help 405 This option enables limited support for the Marvell 88SE6145 ATA 406 controller. 407 408 If unsure, say N. 409 410config PATA_MPC52xx 411 tristate "Freescale MPC52xx SoC internal IDE" 412 depends on PPC_MPC52xx 413 help 414 This option enables support for integrated IDE controller 415 of the Freescale MPC52xx SoC. 416 417 If unsure, say N. 418 419config PATA_MPIIX 420 tristate "Intel PATA MPIIX support" 421 depends on PCI 422 help 423 This option enables support for MPIIX PATA support. 424 425 If unsure, say N. 426 427config PATA_OLDPIIX 428 tristate "Intel PATA old PIIX support" 429 depends on PCI 430 help 431 This option enables support for early PIIX PATA support. 432 433 If unsure, say N. 434 435config PATA_NETCELL 436 tristate "NETCELL Revolution RAID support" 437 depends on PCI 438 help 439 This option enables support for the Netcell Revolution RAID 440 PATA controller. 441 442 If unsure, say N. 443 444config PATA_NS87410 445 tristate "Nat Semi NS87410 PATA support (Experimental)" 446 depends on PCI && EXPERIMENTAL 447 help 448 This option enables support for the National Semiconductor 449 NS87410 PCI-IDE controller. 450 451 If unsure, say N. 452 453config PATA_NS87415 454 tristate "Nat Semi NS87415 PATA support (Experimental)" 455 depends on PCI && EXPERIMENTAL 456 help 457 This option enables support for the National Semiconductor 458 NS87415 PCI-IDE controller. 459 460 If unsure, say N. 461 462config PATA_OPTI 463 tristate "OPTI621/6215 PATA support (Very Experimental)" 464 depends on PCI && EXPERIMENTAL 465 help 466 This option enables full PIO support for the early Opti ATA 467 controllers found on some old motherboards. 468 469 If unsure, say N. 470 471config PATA_OPTIDMA 472 tristate "OPTI FireStar PATA support (Very Experimental)" 473 depends on PCI && EXPERIMENTAL 474 help 475 This option enables DMA/PIO support for the later OPTi 476 controllers found on some old motherboards and in some 477 laptops. 478 479 If unsure, say N. 480 481config PATA_PCMCIA 482 tristate "PCMCIA PATA support" 483 depends on PCMCIA 484 help 485 This option enables support for PCMCIA ATA interfaces, including 486 compact flash card adapters via the new ATA layer. 487 488 If unsure, say N. 489 490config PATA_PDC_OLD 491 tristate "Older Promise PATA controller support (Experimental)" 492 depends on PCI && EXPERIMENTAL 493 help 494 This option enables support for the Promise 20246, 20262, 20263, 495 20265 and 20267 adapters. 496 497 If unsure, say N. 498 499config PATA_QDI 500 tristate "QDI VLB PATA support" 501 depends on ISA 502 help 503 Support for QDI 6500 and 6580 PATA controllers on VESA local bus. 504 505config PATA_RADISYS 506 tristate "RADISYS 82600 PATA support (Very Experimental)" 507 depends on PCI && EXPERIMENTAL 508 help 509 This option enables support for the RADISYS 82600 510 PATA controllers via the new ATA layer 511 512 If unsure, say N. 513 514config PATA_RZ1000 515 tristate "PC Tech RZ1000 PATA support" 516 depends on PCI 517 help 518 This option enables basic support for the PC Tech RZ1000/1 519 PATA controllers via the new ATA layer 520 521 If unsure, say N. 522 523config PATA_SC1200 524 tristate "SC1200 PATA support (Very Experimental)" 525 depends on PCI && EXPERIMENTAL 526 help 527 This option enables support for the NatSemi/AMD SC1200 SoC 528 companion chip used with the Geode processor family. 529 530 If unsure, say N. 531 532config PATA_SERVERWORKS 533 tristate "SERVERWORKS OSB4/CSB5/CSB6/HT1000 PATA support" 534 depends on PCI 535 help 536 This option enables support for the Serverworks OSB4/CSB5/CSB6 and 537 HT1000 PATA controllers, via the new ATA layer. 538 539 If unsure, say N. 540 541config PATA_PDC2027X 542 tristate "Promise PATA 2027x support" 543 depends on PCI 544 help 545 This option enables support for Promise PATA pdc20268 to pdc20277 host adapters. 546 547 If unsure, say N. 548 549config PATA_SIL680 550 tristate "CMD / Silicon Image 680 PATA support" 551 depends on PCI 552 help 553 This option enables support for CMD / Silicon Image 680 PATA. 554 555 If unsure, say N. 556 557config PATA_SIS 558 tristate "SiS PATA support (Experimental)" 559 depends on PCI && EXPERIMENTAL 560 help 561 This option enables support for SiS PATA controllers 562 563 If unsure, say N. 564 565config PATA_VIA 566 tristate "VIA PATA support" 567 depends on PCI 568 help 569 This option enables support for the VIA PATA interfaces 570 found on the many VIA chipsets. 571 572 If unsure, say N. 573 574config PATA_WINBOND 575 tristate "Winbond SL82C105 PATA support" 576 depends on PCI 577 help 578 This option enables support for SL82C105 PATA devices found in the 579 Netwinder and some other systems 580 581 If unsure, say N. 582 583config PATA_WINBOND_VLB 584 tristate "Winbond W83759A VLB PATA support (Experimental)" 585 depends on ISA && EXPERIMENTAL 586 help 587 Support for the Winbond W83759A controller on Vesa Local Bus 588 systems. 589 590config PATA_PLATFORM 591 tristate "Generic platform device PATA support" 592 depends on EMBEDDED || ARCH_RPC 593 help 594 This option enables support for generic directly connected ATA 595 devices commonly found on embedded systems. 596 597 If unsure, say N. 598 599config PATA_ICSIDE 600 tristate "Acorn ICS PATA support" 601 depends on ARM && ARCH_ACORN 602 help 603 On Acorn systems, say Y here if you wish to use the ICS PATA 604 interface card. This is not required for ICS partition support. 605 If you are unsure, say N to this. 606 607config PATA_IXP4XX_CF 608 tristate "IXP4XX Compact Flash support" 609 depends on ARCH_IXP4XX 610 help 611 This option enables support for a Compact Flash connected on 612 the ixp4xx expansion bus. This driver had been written for 613 Loft/Avila boards in mind but can work with others. 614 615 If unsure, say N. 616 617config PATA_SCC 618 tristate "Toshiba's Cell Reference Set IDE support" 619 depends on PCI && PPC_CELLEB 620 help 621 This option enables support for the built-in IDE controller on 622 Toshiba Cell Reference Board. 623 624 If unsure, say N. 625 626config PATA_BF54X 627 tristate "Blackfin 54x ATAPI support" 628 depends on BF542 || BF548 || BF549 629 help 630 This option enables support for the built-in ATAPI controller on 631 Blackfin 54x family chips. 632 633 If unsure, say N. 634 635config PATA_BF54X_DMA 636 bool "DMA mode" 637 depends on PATA_BF54X 638 default y 639 help 640 Enable DMA mode for Blackfin ATAPI controller. 641 642endif # ATA 643