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