Blame view

drivers/ata/Kconfig 23.1 KB
421b20b9c   Jeff Garzik   libata: Make sure...
1
2
3
  #
  # SATA/PATA driver configuration
  #
2ad2c320a   Nick Bowler   pata_platform: Re...
4
5
6
7
8
9
10
  config HAVE_PATA_PLATFORM
  	bool
  	help
  	  This is an internal configuration node for any machine that
  	  uses pata-platform driver to enable the relevant driver in the
  	  configuration structure without having to submit endless patches
  	  to update the PATA_PLATFORM entry.
b196fc69f   Jan Engelhardt   Use menuconfig ob...
11
  menuconfig ATA
097dac918   Robert Hancock   libata: remove ex...
12
  	tristate "Serial ATA and Parallel ATA drivers"
e25df1205   Martin Schwidefsky   [S390] Kconfig: m...
13
  	depends on HAS_IOMEM
bf2d401bc   Adrian Bunk   [PATCH] ATA must ...
14
  	depends on BLOCK
0383a68cd   Heiko Carstens   ata: disable ATA ...
15
  	depends on !(M32R || M68K || S390) || BROKEN
81ce3c4b4   Jeff Garzik   Clean up drivers/...
16
  	select SCSI
c6fd28076   Jeff Garzik   Move libata to dr...
17
18
19
20
21
22
  	---help---
  	  If you want to use a ATA hard disk, ATA tape drive, ATA CD-ROM or
  	  any other ATA device under Linux, say Y and make sure that you know
  	  the name of your ATA host adapter (the card inside your computer
  	  that "speaks" the ATA protocol, also called ATA controller),
  	  because you will be asked for it.
abcdceb9d   Randy Dunlap   scsi disk help fi...
23
24
25
26
  	  NOTE: ATA enables basic SCSI support; *however*,
  	  'SCSI disk support', 'SCSI tape support', or
  	  'SCSI CDROM support' may also be needed,
  	  depending on your hardware configuration.
81ce3c4b4   Jeff Garzik   Clean up drivers/...
27
  if ATA
8cdf92a98   David Woodhouse   Fix Maple PATA IR...
28
29
30
  config ATA_NONSTANDARD
         bool
         default n
6521148c6   Robert Hancock   libata: add comma...
31
32
33
34
35
36
37
38
39
40
  config ATA_VERBOSE_ERROR
  	bool "Verbose ATA error reporting"
  	default y
  	help
  	  This option adds parsing of ATA command descriptions and error bits
  	  in libata kernel output, making it easier to interpret.
  	  This option will enlarge the kernel by approx. 6KB. Disable it only
  	  if kernel size is more important than ease of debugging.
  
  	  If unsure, say Y.
e92351bb5   Tejun Heo   libata-acpi: s/CO...
41
  config ATA_ACPI
c30484d77   Chris Wedgwood   Add 'short help t...
42
  	bool "ATA ACPI Support"
e92351bb5   Tejun Heo   libata-acpi: s/CO...
43
44
45
46
47
48
49
50
51
52
  	depends on ACPI && PCI
  	default y
  	help
  	  This option adds support for ATA-related ACPI objects.
  	  These ACPI objects add the ability to retrieve taskfiles
  	  from the ACPI BIOS and write them to the disk controller.
  	  These objects may be related to performance, security,
  	  power management, or other areas.
  	  You can disable this at kernel boot time by using the
  	  option libata.noacpi=1
afe759511   Aaron Lu   libata: identify ...
53
  config SATA_ZPODD
e189551bf   Aaron Lu   [libata] Avoid sp...
54
  	bool "SATA Zero Power Optical Disc Drive (ZPODD) support"
afe759511   Aaron Lu   libata: identify ...
55
56
57
  	depends on ATA_ACPI
  	default n
  	help
e189551bf   Aaron Lu   [libata] Avoid sp...
58
59
60
61
62
63
  	  This option adds support for SATA Zero Power Optical Disc
  	  Drive (ZPODD). It requires both the ODD and the platform
  	  support, and if enabled, will automatically power on/off the
  	  ODD when certain condition is satisfied. This does not impact
  	  end user's experience of the ODD, only power is saved when
  	  the ODD is not in use (i.e. no disc inside).
afe759511   Aaron Lu   libata: identify ...
64
65
  
  	  If unsure, say N.
88fcd5627   Tejun Heo   libata: make PMP ...
66
67
68
69
  config SATA_PMP
  	bool "SATA Port Multiplier support"
  	default y
  	help
f3360ebff   Jeff Garzik   [libata] improve ...
70
71
  	  This option adds support for SATA Port Multipliers
  	  (the SATA version of an ethernet hub, or SAS expander).
88fcd5627   Tejun Heo   libata: make PMP ...
72

9a7780c9a   Tejun Heo   libata-sff: make ...
73
  comment "Controllers with non-SFF native interface"
8ad92ba71   Jeff Garzik   libata: Remove SC...
74
  config SATA_AHCI
c6fd28076   Jeff Garzik   Move libata to dr...
75
  	tristate "AHCI SATA support"
81ce3c4b4   Jeff Garzik   Clean up drivers/...
76
  	depends on PCI
c6fd28076   Jeff Garzik   Move libata to dr...
77
78
79
80
  	help
  	  This option enables support for AHCI Serial ATA.
  
  	  If unsure, say N.
1c2a49f61   Anton Vorontsov   ahci: Add platfor...
81
82
83
84
85
86
87
  config SATA_AHCI_PLATFORM
  	tristate "Platform AHCI SATA support"
  	help
  	  This option enables support for Platform AHCI Serial ATA
  	  controllers.
  
  	  If unsure, say N.
b5842ed25   Richard Zhu   ahci_imx: add ahc...
88
89
90
91
92
93
94
95
  config AHCI_IMX
  	tristate "Freescale i.MX AHCI SATA support"
  	depends on SATA_AHCI_PLATFORM
  	help
  	  This option enables support for the Freescale i.MX SoC's
  	  onboard AHCI SATA.
  
  	  If unsure, say N.
9a7780c9a   Tejun Heo   libata-sff: make ...
96
97
98
  config SATA_FSL
  	tristate "Freescale 3.0Gbps SATA support"
  	depends on FSL_SOC
127102aea   Tejun Heo   libata: make SFF ...
99
  	help
9a7780c9a   Tejun Heo   libata-sff: make ...
100
101
  	  This option enables support for Freescale 3.0Gbps SATA controller.
  	  It can be found on MPC837x and MPC8315.
127102aea   Tejun Heo   libata: make SFF ...
102
103
  
  	  If unsure, say N.
6f7914604   Tejun Heo   sata_inic162x: in...
104
  config SATA_INIC162X
2794edb18   Tejun Heo   libata: make it c...
105
  	tristate "Initio 162x SATA support (Very Experimental)"
6f7914604   Tejun Heo   sata_inic162x: in...
106
107
108
  	depends on PCI
  	help
  	  This option enables support for Initio 162x Serial ATA.
02cdfcf04   David Milburn   [libata] new driv...
109
110
111
112
113
114
115
  config SATA_ACARD_AHCI
  	tristate "ACard AHCI variant (ATP 8620)"
  	depends on PCI
  	help
  	  This option enables support for Acard.
  
  	  If unsure, say N.
9a7780c9a   Tejun Heo   libata-sff: make ...
116
117
118
  config SATA_SIL24
  	tristate "Silicon Image 3124/3132 SATA support"
  	depends on PCI
127102aea   Tejun Heo   libata: make SFF ...
119
  	help
9a7780c9a   Tejun Heo   libata-sff: make ...
120
  	  This option enables support for Silicon Image 3124/3132 Serial ATA.
127102aea   Tejun Heo   libata: make SFF ...
121
122
123
124
  
  	  If unsure, say N.
  
  config ATA_SFF
ebd600281   Paul Menzel   [libata] Kconfig:...
125
  	bool "ATA SFF support (for legacy IDE and PATA)"
127102aea   Tejun Heo   libata: make SFF ...
126
127
128
129
  	default y
  	help
  	  This option adds support for ATA controllers with SFF
  	  compliant or similar programming interface.
f3360ebff   Jeff Garzik   [libata] improve ...
130
131
132
133
134
135
136
  	  SFF is the legacy IDE interface that has been around since
  	  the dawn of time.  Almost all PATA controllers have an
  	  SFF interface.  Many SATA controllers have an SFF interface
  	  when configured into a legacy compatibility mode.
  
  	  For users with exclusively modern controllers like AHCI,
  	  Silicon Image 3124, or Marvell 6440, you may choose to
692105b8a   Matt LaPlante   trivial: fix typo...
137
  	  disable this unneeded SFF support.
f3360ebff   Jeff Garzik   [libata] improve ...
138
139
  
  	  If unsure, say Y.
127102aea   Tejun Heo   libata: make SFF ...
140
  if ATA_SFF
9a7780c9a   Tejun Heo   libata-sff: make ...
141
142
143
144
  comment "SFF controllers with custom DMA interface"
  
  config PDC_ADMA
  	tristate "Pacific Digital ADMA support"
81ce3c4b4   Jeff Garzik   Clean up drivers/...
145
  	depends on PCI
c6fd28076   Jeff Garzik   Move libata to dr...
146
  	help
9a7780c9a   Tejun Heo   libata-sff: make ...
147
148
149
  	  This option enables support for Pacific Digital ADMA controllers
  
  	  If unsure, say N.
9a7780c9a   Tejun Heo   libata-sff: make ...
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
  config PATA_OCTEON_CF
  	tristate "OCTEON Boot Bus Compact Flash support"
  	depends on CPU_CAVIUM_OCTEON
  	help
  	  This option enables a polled compact flash driver for use with
  	  compact flash cards attached to the OCTEON boot bus.
  
  	  If unsure, say N.
  
  config SATA_QSTOR
  	tristate "Pacific Digital SATA QStor support"
  	depends on PCI
  	help
  	  This option enables support for Pacific Digital Serial ATA QStor.
  
  	  If unsure, say N.
  
  config SATA_SX4
  	tristate "Promise SATA SX4 support (Experimental)"
48b3de219   Kees Cook   drivers/ata: remo...
169
  	depends on PCI
9a7780c9a   Tejun Heo   libata-sff: make ...
170
171
  	help
  	  This option enables support for Promise Serial ATA SX4.
c6fd28076   Jeff Garzik   Move libata to dr...
172
173
  
  	  If unsure, say N.
9a7780c9a   Tejun Heo   libata-sff: make ...
174
175
176
177
178
  config ATA_BMDMA
  	bool "ATA BMDMA support"
  	default y
  	help
  	  This option adds support for SFF ATA controllers with BMDMA
ed4e2f801   Stefan Richter   libata-sff: trivi...
179
180
  	  capability.  BMDMA stands for bus-master DMA and is the
  	  de facto DMA interface for SFF controllers.
9a7780c9a   Tejun Heo   libata-sff: make ...
181

ed4e2f801   Stefan Richter   libata-sff: trivi...
182
  	  If unsure, say Y.
9a7780c9a   Tejun Heo   libata-sff: make ...
183
184
185
186
  
  if ATA_BMDMA
  
  comment "SATA SFF controllers with BMDMA"
8ad92ba71   Jeff Garzik   libata: Remove SC...
187
  config ATA_PIIX
2c7620d50   Alan Cox   Kconfig: clarify ...
188
  	tristate "Intel ESB, ICH, PIIX3, PIIX4 PATA/SATA support"
81ce3c4b4   Jeff Garzik   Clean up drivers/...
189
  	depends on PCI
c6fd28076   Jeff Garzik   Move libata to dr...
190
  	help
2bfc3611b   Alan Cox   [PATCH] Fix help ...
191
  	  This option enables support for ICH5/6/7/8 Serial ATA
2c7620d50   Alan Cox   Kconfig: clarify ...
192
193
  	  and support for PATA on the Intel ESB/ICH/PIIX3/PIIX4 series
  	  host controllers.
c6fd28076   Jeff Garzik   Move libata to dr...
194
195
  
  	  If unsure, say N.
62936009f   Rupjyoti Sarmah   [libata] Add 460E...
196
197
198
199
200
201
202
203
  config SATA_DWC
  	tristate "DesignWare Cores SATA support"
  	depends on 460EX
  	help
  	  This option enables support for the on-chip SATA controller of the
  	  AppliedMicro processor 460EX.
  
  	  If unsure, say N.
14080fa65   Sergei Shtylyov   sata_dwc_460ex: a...
204
205
206
207
208
209
210
211
212
213
214
  config SATA_DWC_DEBUG
  	bool "Debugging driver version"
  	depends on SATA_DWC
  	help
  	  This option enables debugging output in the driver.
  
  config SATA_DWC_VDEBUG
  	bool "Verbose debug output"
  	depends on SATA_DWC_DEBUG
  	help
  	  This option enables the taskfile dumping and NCQ debugging.
8996b89d6   Mark Langsdorf   ata: add platform...
215
216
217
218
219
220
221
  config SATA_HIGHBANK
  	tristate "Calxeda Highbank SATA support"
  	help
  	  This option enables support for the Calxeda Highbank SoC's
  	  onboard SATA.
  
  	  If unsure, say N.
8ad92ba71   Jeff Garzik   libata: Remove SC...
222
  config SATA_MV
f9228c7ff   Mark Lord   sata_mv: no longe...
223
  	tristate "Marvell SATA support"
c6fd28076   Jeff Garzik   Move libata to dr...
224
225
  	help
  	  This option enables support for the Marvell Serial ATA family.
f9228c7ff   Mark Lord   sata_mv: no longe...
226
227
  	  Currently supports 88SX[56]0[48][01] PCI(-X) chips,
  	  as well as the newer [67]042 PCI-X/PCIe and SOC devices.
c6fd28076   Jeff Garzik   Move libata to dr...
228
229
  
  	  If unsure, say N.
8ad92ba71   Jeff Garzik   libata: Remove SC...
230
  config SATA_NV
c6fd28076   Jeff Garzik   Move libata to dr...
231
  	tristate "NVIDIA SATA support"
81ce3c4b4   Jeff Garzik   Clean up drivers/...
232
  	depends on PCI
c6fd28076   Jeff Garzik   Move libata to dr...
233
234
235
236
  	help
  	  This option enables support for NVIDIA Serial ATA.
  
  	  If unsure, say N.
8ad92ba71   Jeff Garzik   libata: Remove SC...
237
  config SATA_PROMISE
c6fd28076   Jeff Garzik   Move libata to dr...
238
  	tristate "Promise SATA TX2/TX4 support"
81ce3c4b4   Jeff Garzik   Clean up drivers/...
239
  	depends on PCI
c6fd28076   Jeff Garzik   Move libata to dr...
240
241
242
243
  	help
  	  This option enables support for Promise Serial ATA TX2/TX4.
  
  	  If unsure, say N.
163cf81d2   Vladimir Barinov   libata: add R-Car...
244
245
246
247
248
249
250
  config SATA_RCAR
  	tristate "Renesas R-Car SATA support"
  	depends on ARCH_SHMOBILE && ARCH_R8A7779
  	help
  	  This option enables support for Renesas R-Car Serial ATA.
  
  	  If unsure, say N.
c6fd28076   Jeff Garzik   Move libata to dr...
251

8ad92ba71   Jeff Garzik   libata: Remove SC...
252
  config SATA_SIL
c6fd28076   Jeff Garzik   Move libata to dr...
253
  	tristate "Silicon Image SATA support"
81ce3c4b4   Jeff Garzik   Clean up drivers/...
254
  	depends on PCI
c6fd28076   Jeff Garzik   Move libata to dr...
255
256
257
258
  	help
  	  This option enables support for Silicon Image Serial ATA.
  
  	  If unsure, say N.
8ad92ba71   Jeff Garzik   libata: Remove SC...
259
  config SATA_SIS
9b14dec5a   Alan Cox   sata_sis: Support...
260
  	tristate "SiS 964/965/966/180 SATA support"
81ce3c4b4   Jeff Garzik   Clean up drivers/...
261
  	depends on PCI
9b14dec5a   Alan Cox   sata_sis: Support...
262
  	select PATA_SIS
c6fd28076   Jeff Garzik   Move libata to dr...
263
  	help
a617c09f6   Jeff Garzik   libata: Trim trai...
264
  	  This option enables support for SiS Serial ATA on
9b14dec5a   Alan Cox   sata_sis: Support...
265
266
267
  	  SiS 964/965/966/180 and Parallel ATA on SiS 180.
  	  The PATA support for SiS 180 requires additionally to
  	  enable the PATA_SIS driver in the config.
c6fd28076   Jeff Garzik   Move libata to dr...
268
  	  If unsure, say N.
9a7780c9a   Tejun Heo   libata-sff: make ...
269
270
271
272
273
274
275
276
  config SATA_SVW
  	tristate "ServerWorks Frodo / Apple K2 SATA support"
  	depends on PCI
  	help
  	  This option enables support for Broadcom/Serverworks/Apple K2
  	  SATA support.
  
  	  If unsure, say N.
8ad92ba71   Jeff Garzik   libata: Remove SC...
277
  config SATA_ULI
c6fd28076   Jeff Garzik   Move libata to dr...
278
  	tristate "ULi Electronics SATA support"
81ce3c4b4   Jeff Garzik   Clean up drivers/...
279
  	depends on PCI
c6fd28076   Jeff Garzik   Move libata to dr...
280
281
282
283
  	help
  	  This option enables support for ULi Electronics SATA.
  
  	  If unsure, say N.
8ad92ba71   Jeff Garzik   libata: Remove SC...
284
  config SATA_VIA
c6fd28076   Jeff Garzik   Move libata to dr...
285
  	tristate "VIA SATA support"
81ce3c4b4   Jeff Garzik   Clean up drivers/...
286
  	depends on PCI
c6fd28076   Jeff Garzik   Move libata to dr...
287
288
289
290
  	help
  	  This option enables support for VIA Serial ATA.
  
  	  If unsure, say N.
8ad92ba71   Jeff Garzik   libata: Remove SC...
291
  config SATA_VITESSE
c6fd28076   Jeff Garzik   Move libata to dr...
292
  	tristate "VITESSE VSC-7174 / INTEL 31244 SATA support"
81ce3c4b4   Jeff Garzik   Clean up drivers/...
293
  	depends on PCI
c6fd28076   Jeff Garzik   Move libata to dr...
294
295
296
297
  	help
  	  This option enables support for Vitesse VSC7174 and Intel 31244 Serial ATA.
  
  	  If unsure, say N.
9a7780c9a   Tejun Heo   libata-sff: make ...
298
  comment "PATA SFF controllers with BMDMA"
025621f9a   Alan Cox   pata_acpi: ACPI d...
299

669a5db41   Jeff Garzik   [libata] Add a bu...
300
  config PATA_ALI
e3389cbc6   Alan Cox   ata: Fix experime...
301
302
  	tristate "ALi PATA support"
  	depends on PCI
669a5db41   Jeff Garzik   [libata] Add a bu...
303
304
305
306
307
308
309
  	help
  	  This option enables support for the ALi ATA interfaces
  	  found on the many ALi chipsets.
  
  	  If unsure, say N.
  
  config PATA_AMD
942d09470   Alan Cox   libata: Restore K...
310
  	tristate "AMD/NVidia PATA support"
669a5db41   Jeff Garzik   [libata] Add a bu...
311
312
313
314
315
316
  	depends on PCI
  	help
  	  This option enables support for the AMD and NVidia PATA
  	  interfaces found on the chipsets for Athlon/Athlon64.
  
  	  If unsure, say N.
a480167b2   Viresh Kumar   pata_arasan_cf: A...
317
318
  config PATA_ARASAN_CF
  	tristate "ARASAN CompactFlash PATA Controller Support"
3b5ec274d   Randy Dunlap   ata: PATA_ARASAN_...
319
  	depends on DMADEVICES
a480167b2   Viresh Kumar   pata_arasan_cf: A...
320
321
322
  	select DMA_ENGINE
  	help
  	  Say Y here to support the ARASAN CompactFlash PATA controller
669a5db41   Jeff Garzik   [libata] Add a bu...
323
  config PATA_ARTOP
c645fd342   Alan Cox   libata: Update ex...
324
325
  	tristate "ARTOP 6210/6260 PATA support"
  	depends on PCI
669a5db41   Jeff Garzik   [libata] Add a bu...
326
327
328
329
  	help
  	  This option enables support for ARTOP PATA controllers.
  
  	  If unsure, say N.
9a7780c9a   Tejun Heo   libata-sff: make ...
330
331
  config PATA_ATIIXP
  	tristate "ATI PATA support"
d15d6e6cc   John(Jung-Ik) Lee   libata: Add pata_...
332
333
  	depends on PCI
  	help
9a7780c9a   Tejun Heo   libata-sff: make ...
334
335
  	  This option enables support for the ATI ATA interfaces
  	  found on the many ATI chipsets.
7c9ef8e41   Kristoffer Nyborg Gregertsen   AVR32 PATA driver
336
337
  
  	  If unsure, say N.
9a7780c9a   Tejun Heo   libata-sff: make ...
338
339
  config PATA_ATP867X
  	tristate "ARTOP/Acard ATP867X PATA support"
c645fd342   Alan Cox   libata: Update ex...
340
  	depends on PCI
669a5db41   Jeff Garzik   [libata] Add a bu...
341
  	help
9a7780c9a   Tejun Heo   libata-sff: make ...
342
343
  	  This option enables support for ARTOP/Acard ATP867X PATA
  	  controllers.
669a5db41   Jeff Garzik   [libata] Add a bu...
344
345
  
  	  If unsure, say N.
9a7780c9a   Tejun Heo   libata-sff: make ...
346
347
348
  config PATA_BF54X
  	tristate "Blackfin 54x ATAPI support"
  	depends on BF542 || BF548 || BF549
b2248dac0   Alan Cox   pata_cmd640: CMD6...
349
  	help
9a7780c9a   Tejun Heo   libata-sff: make ...
350
351
  	  This option enables support for the built-in ATAPI controller on
  	  Blackfin 54x family chips.
b2248dac0   Alan Cox   pata_cmd640: CMD6...
352
353
  
  	  If unsure, say N.
669a5db41   Jeff Garzik   [libata] Add a bu...
354
  config PATA_CMD64X
c645fd342   Alan Cox   libata: Update ex...
355
356
  	tristate "CMD64x PATA support"
  	depends on PCI
669a5db41   Jeff Garzik   [libata] Add a bu...
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
  	help
  	  This option enables support for the CMD64x series chips
  	  except for the CMD640.
  
  	  If unsure, say N.
  
  config PATA_CS5520
  	tristate "CS5510/5520 PATA support"
  	depends on PCI
  	help
  	  This option enables support for the Cyrix 5510/5520
  	  companion chip used with the MediaGX/Geode processor family.
  
  	  If unsure, say N.
  
  config PATA_CS5530
e3389cbc6   Alan Cox   ata: Fix experime...
373
374
  	tristate "CS5530 PATA support"
  	depends on PCI
669a5db41   Jeff Garzik   [libata] Add a bu...
375
376
377
378
379
380
381
382
  	help
  	  This option enables support for the Cyrix/NatSemi/AMD CS5530
  	  companion chip used with the MediaGX/Geode processor family.
  
  	  If unsure, say N.
  
  config PATA_CS5535
  	tristate "CS5535 PATA support (Experimental)"
48b3de219   Kees Cook   drivers/ata: remo...
383
  	depends on PCI && X86 && !X86_64
669a5db41   Jeff Garzik   [libata] Add a bu...
384
385
386
387
388
  	help
  	  This option enables support for the NatSemi/AMD CS5535
  	  companion chip used with the Geode processor family.
  
  	  If unsure, say N.
3957df616   Martin K. Petersen   pata_cs5536: ATA ...
389
  config PATA_CS5536
e3389cbc6   Alan Cox   ata: Fix experime...
390
  	tristate "CS5536 PATA support"
9272dcc23   Wu Zhangjin   pata_cs5536: Add ...
391
  	depends on PCI
3957df616   Martin K. Petersen   pata_cs5536: ATA ...
392
393
394
395
396
  	help
  	  This option enables support for the AMD CS5536
  	  companion chip used with the Geode LX processor family.
  
  	  If unsure, say N.
669a5db41   Jeff Garzik   [libata] Add a bu...
397
398
  config PATA_CYPRESS
  	tristate "Cypress CY82C693 PATA support (Very Experimental)"
48b3de219   Kees Cook   drivers/ata: remo...
399
  	depends on PCI
669a5db41   Jeff Garzik   [libata] Add a bu...
400
401
402
403
404
405
406
407
408
409
410
411
412
413
  	help
  	  This option enables support for the Cypress/Contaq CY82C693
  	  chipset found in some Alpha systems
  
  	  If unsure, say N.
  
  config PATA_EFAR
  	tristate "EFAR SLC90E66 support"
  	depends on PCI
  	help
  	  This option enables support for the EFAR SLC90E66
  	  IDE controller found on some older machines.
  
  	  If unsure, say N.
2fff27512   Rafal Prylowski   PATA host control...
414
415
416
417
418
419
420
421
  config PATA_EP93XX
  	tristate "Cirrus Logic EP93xx PATA support"
  	depends on ARCH_EP93XX
  	help
  	  This option enables support for the PATA controller in
  	  the Cirrus Logic EP9312 and EP9315 ARM CPU.
  
  	  If unsure, say N.
669a5db41   Jeff Garzik   [libata] Add a bu...
422
  config PATA_HPT366
c645fd342   Alan Cox   libata: Update ex...
423
424
  	tristate "HPT 366/368 PATA support"
  	depends on PCI
669a5db41   Jeff Garzik   [libata] Add a bu...
425
426
427
428
429
430
431
  	help
  	  This option enables support for the HPT 366 and 368
  	  PATA controllers via the new ATA layer.
  
  	  If unsure, say N.
  
  config PATA_HPT37X
be315d461   Alan Cox   [libata] PATA: Up...
432
433
  	tristate "HPT 370/370A/371/372/374/302 PATA support"
  	depends on PCI
669a5db41   Jeff Garzik   [libata] Add a bu...
434
435
436
437
438
439
440
  	help
  	  This option enables support for the majority of the later HPT
  	  PATA controllers via the new ATA layer.
  
  	  If unsure, say N.
  
  config PATA_HPT3X2N
0ca646db6   Sergei Shtylyov   pata_hpt3x2n: cla...
441
  	tristate "HPT 371N/372N/302N PATA support"
be315d461   Alan Cox   [libata] PATA: Up...
442
  	depends on PCI
669a5db41   Jeff Garzik   [libata] Add a bu...
443
444
  	help
  	  This option enables support for the N variant HPT PATA
0ca646db6   Sergei Shtylyov   pata_hpt3x2n: cla...
445
  	  controllers via the new ATA layer.
669a5db41   Jeff Garzik   [libata] Add a bu...
446
447
448
449
  
  	  If unsure, say N.
  
  config PATA_HPT3X3
66e7da4e3   Alan Cox   pata_hpt3x3: majo...
450
  	tristate "HPT 343/363 PATA support"
669a5db41   Jeff Garzik   [libata] Add a bu...
451
452
453
454
455
456
  	depends on PCI
  	help
  	  This option enables support for the HPT 343/363
  	  PATA controllers via the new ATA layer
  
  	  If unsure, say N.
66e7da4e3   Alan Cox   pata_hpt3x3: majo...
457
  config PATA_HPT3X3_DMA
be315d461   Alan Cox   [libata] PATA: Up...
458
  	bool "HPT 343/363 DMA support"
66e7da4e3   Alan Cox   pata_hpt3x3: majo...
459
460
461
462
463
  	depends on PATA_HPT3X3
  	help
  	  This option enables DMA support for the HPT343/363
  	  controllers. Enable with care as there are still some
  	  problems with DMA on this chipset.
9a7780c9a   Tejun Heo   libata-sff: make ...
464
465
466
  config PATA_ICSIDE
  	tristate "Acorn ICS PATA support"
  	depends on ARM && ARCH_ACORN
669a5db41   Jeff Garzik   [libata] Add a bu...
467
  	help
9a7780c9a   Tejun Heo   libata-sff: make ...
468
469
470
  	  On Acorn systems, say Y here if you wish to use the ICS PATA
  	  interface card.  This is not required for ICS partition support.
  	  If you are unsure, say N to this.
e39c75cf3   Arnaud Patard   ata: Add iMX pata...
471
472
473
474
475
476
477
478
  config PATA_IMX
  	tristate "PATA support for Freescale iMX"
  	depends on ARCH_MXC
  	help
  	  This option enables support for the PATA host available on Freescale
            iMX SoCs.
  
  	  If unsure, say N.
9a7780c9a   Tejun Heo   libata-sff: make ...
479
480
  config PATA_IT8213
  	tristate "IT8213 PATA support (Experimental)"
48b3de219   Kees Cook   drivers/ata: remo...
481
  	depends on PCI
9a7780c9a   Tejun Heo   libata-sff: make ...
482
483
484
  	help
  	  This option enables support for the ITE 821 PATA
            controllers via the new ATA layer.
669a5db41   Jeff Garzik   [libata] Add a bu...
485
486
  
  	  If unsure, say N.
669a5db41   Jeff Garzik   [libata] Add a bu...
487
  config PATA_IT821X
942d09470   Alan Cox   libata: Restore K...
488
489
  	tristate "IT8211/2 PATA support"
  	depends on PCI
669a5db41   Jeff Garzik   [libata] Add a bu...
490
491
492
493
494
495
  	help
  	  This option enables support for the ITE 8211 and 8212
  	  PATA controllers via the new ATA layer, including RAID
  	  mode.
  
  	  If unsure, say N.
406176ee7   Jeff Garzik   [libata] Add pata...
496
497
498
499
500
501
502
503
  config PATA_JMICRON
  	tristate "JMicron PATA support"
  	depends on PCI
  	help
  	  Enable support for the JMicron IDE controller, via the new
  	  ATA layer.
  
  	  If unsure, say N.
9a7780c9a   Tejun Heo   libata-sff: make ...
504
505
506
  config PATA_MACIO
  	tristate "Apple PowerMac/PowerBook internal 'MacIO' IDE"
  	depends on PPC_PMAC
669a5db41   Jeff Garzik   [libata] Add a bu...
507
  	help
9a7780c9a   Tejun Heo   libata-sff: make ...
508
509
510
511
  	  Most IDE capable PowerMacs have IDE busses driven by a variant
            of this controller which is part of the Apple chipset used on
            most PowerMac models. Some models have multiple busses using
            different chipsets, though generally, MacIO is one of them.
669a5db41   Jeff Garzik   [libata] Add a bu...
512

75742cb41   Alan Cox   [PATCH] pata_marv...
513
514
515
516
  config PATA_MARVELL
  	tristate "Marvell PATA support via legacy mode"
  	depends on PCI
  	help
5b66c829b   Alan Cox   ahci, pata_marvel...
517
518
519
520
  	  This option enables limited support for the Marvell 88SE61xx ATA
  	  controllers. If you wish to use only the SATA ports then select
  	  the AHCI driver alone. If you wish to the use the PATA port or
  	  both SATA and PATA include this driver.
75742cb41   Alan Cox   [PATCH] pata_marv...
521
522
  
  	  If unsure, say N.
869934adf   Wolfram Sang   pata_mpc52xx: dri...
523
524
525
526
527
528
529
530
531
  config PATA_MPC52xx
  	tristate "Freescale MPC52xx SoC internal IDE"
  	depends on PPC_MPC52xx && PPC_BESTCOMM
  	select PPC_BESTCOMM_ATA
  	help
  	  This option enables support for integrated IDE controller
  	  of the Freescale MPC52xx SoC.
  
  	  If unsure, say N.
669a5db41   Jeff Garzik   [libata] Add a bu...
532
533
534
535
536
537
538
539
  config PATA_NETCELL
  	tristate "NETCELL Revolution RAID support"
  	depends on PCI
  	help
  	  This option enables support for the Netcell Revolution RAID
  	  PATA controller.
  
  	  If unsure, say N.
51dbd4906   Alan Cox   pata_ninja32: Car...
540
  config PATA_NINJA32
be315d461   Alan Cox   [libata] PATA: Up...
541
542
  	tristate "Ninja32/Delkin Cardbus ATA support"
  	depends on PCI
51dbd4906   Alan Cox   pata_ninja32: Car...
543
544
545
546
547
  	help
  	  This option enables support for the Ninja32, Delkin and
  	  possibly other brands of Cardbus ATA adapter
  
  	  If unsure, say N.
c4b5b7b6c   Alan Cox   pata_ns87415: Ini...
548
  config PATA_NS87415
e3389cbc6   Alan Cox   ata: Fix experime...
549
550
  	tristate "Nat Semi NS87415 PATA support"
  	depends on PCI
c4b5b7b6c   Alan Cox   pata_ns87415: Ini...
551
552
553
554
555
  	help
  	  This option enables support for the National Semiconductor
  	  NS87415 PCI-IDE controller.
  
  	  If unsure, say N.
9a7780c9a   Tejun Heo   libata-sff: make ...
556
557
558
  config PATA_OLDPIIX
  	tristate "Intel PATA old PIIX support"
  	depends on PCI
669a5db41   Jeff Garzik   [libata] Add a bu...
559
  	help
9a7780c9a   Tejun Heo   libata-sff: make ...
560
  	  This option enables support for early PIIX PATA support.
669a5db41   Jeff Garzik   [libata] Add a bu...
561
562
563
564
  
  	  If unsure, say N.
  
  config PATA_OPTIDMA
516e72cb4   Alexey Dobriyan   [PATCH] pata_opti...
565
  	tristate "OPTI FireStar PATA support (Very Experimental)"
48b3de219   Kees Cook   drivers/ata: remo...
566
  	depends on PCI
669a5db41   Jeff Garzik   [libata] Add a bu...
567
568
569
  	help
  	  This option enables DMA/PIO support for the later OPTi
  	  controllers found on some old motherboards and in some
3dde6ad8f   David Sterba   Fix trivial typos...
570
  	  laptops.
669a5db41   Jeff Garzik   [libata] Add a bu...
571
572
  
  	  If unsure, say N.
be315d461   Alan Cox   [libata] PATA: Up...
573
574
575
576
577
578
579
  config PATA_PDC2027X
  	tristate "Promise PATA 2027x support"
  	depends on PCI
  	help
  	  This option enables support for Promise PATA pdc20268 to pdc20277 host adapters.
  
  	  If unsure, say N.
669a5db41   Jeff Garzik   [libata] Add a bu...
580
  config PATA_PDC_OLD
e3389cbc6   Alan Cox   ata: Fix experime...
581
582
  	tristate "Older Promise PATA controller support"
  	depends on PCI
669a5db41   Jeff Garzik   [libata] Add a bu...
583
584
585
586
587
  	help
  	  This option enables support for the Promise 20246, 20262, 20263,
  	  20265 and 20267 adapters.
  
  	  If unsure, say N.
669a5db41   Jeff Garzik   [libata] Add a bu...
588
  config PATA_RADISYS
e3389cbc6   Alan Cox   ata: Fix experime...
589
  	tristate "RADISYS 82600 PATA support (Experimental)"
48b3de219   Kees Cook   drivers/ata: remo...
590
  	depends on PCI
669a5db41   Jeff Garzik   [libata] Add a bu...
591
592
593
594
595
  	help
  	  This option enables support for the RADISYS 82600
  	  PATA controllers via the new ATA layer
  
  	  If unsure, say N.
6b406782a   Alan Cox   [libata] Add pata...
596
597
598
599
600
601
602
603
604
  config PATA_RDC
  	tristate "RDC PATA support"
  	depends on PCI
  	help
  	  This option enables basic support for the later RDC PATA controllers
  	  controllers via the new ATA layer. For the RDC 1010, you need to
  	  enable the IT821X driver instead.
  
  	  If unsure, say N.
9a7780c9a   Tejun Heo   libata-sff: make ...
605
606
  config PATA_SC1200
  	tristate "SC1200 PATA support"
669a5db41   Jeff Garzik   [libata] Add a bu...
607
608
  	depends on PCI
  	help
9a7780c9a   Tejun Heo   libata-sff: make ...
609
610
  	  This option enables support for the NatSemi/AMD SC1200 SoC
  	  companion chip used with the Geode processor family.
669a5db41   Jeff Garzik   [libata] Add a bu...
611
612
  
  	  If unsure, say N.
9a7780c9a   Tejun Heo   libata-sff: make ...
613
614
615
616
617
618
619
620
621
622
623
  config PATA_SCC
  	tristate "Toshiba's Cell Reference Set IDE support"
  	depends on PCI && PPC_CELLEB
  	help
  	  This option enables support for the built-in IDE controller on
  	  Toshiba Cell Reference Board.
  
  	  If unsure, say N.
  
  config PATA_SCH
  	tristate "Intel SCH PATA support"
e3389cbc6   Alan Cox   ata: Fix experime...
624
  	depends on PCI
669a5db41   Jeff Garzik   [libata] Add a bu...
625
  	help
9a7780c9a   Tejun Heo   libata-sff: make ...
626
627
  	  This option enables support for Intel SCH PATA on the Intel
  	  SCH (US15W, US15L, UL11L) series host controllers.
669a5db41   Jeff Garzik   [libata] Add a bu...
628
629
630
631
  
  	  If unsure, say N.
  
  config PATA_SERVERWORKS
942d09470   Alan Cox   libata: Restore K...
632
633
  	tristate "SERVERWORKS OSB4/CSB5/CSB6/HT1000 PATA support"
  	depends on PCI
669a5db41   Jeff Garzik   [libata] Add a bu...
634
635
636
637
638
  	help
  	  This option enables support for the Serverworks OSB4/CSB5/CSB6 and
  	  HT1000 PATA controllers, via the new ATA layer.
  
  	  If unsure, say N.
669a5db41   Jeff Garzik   [libata] Add a bu...
639
640
641
642
643
644
645
646
647
  config PATA_SIL680
  	tristate "CMD / Silicon Image 680 PATA support"
  	depends on PCI
  	help
  	  This option enables support for CMD / Silicon Image 680 PATA.
  
  	  If unsure, say N.
  
  config PATA_SIS
e3389cbc6   Alan Cox   ata: Fix experime...
648
649
  	tristate "SiS PATA support"
  	depends on PCI
669a5db41   Jeff Garzik   [libata] Add a bu...
650
651
652
653
  	help
  	  This option enables support for SiS PATA controllers
  
  	  If unsure, say N.
8e182a90f   Alan Cox   pata_piccolo: Dri...
654
655
  config PATA_TOSHIBA
  	tristate "Toshiba Piccolo support (Experimental)"
48b3de219   Kees Cook   drivers/ata: remo...
656
  	depends on PCI
8e182a90f   Alan Cox   pata_piccolo: Dri...
657
658
659
660
661
  	help
  	  Support for the Toshiba Piccolo controllers. Currently only the
  	  primary channel is supported by this driver.
  
  	  If unsure, say N.
9a7780c9a   Tejun Heo   libata-sff: make ...
662
663
664
665
666
667
668
669
  config PATA_TRIFLEX
  	tristate "Compaq Triflex PATA support"
  	depends on PCI
  	help
  	  Enable support for the Compaq 'Triflex' IDE controller as found
  	  on many Compaq Pentium-Pro systems, via the new ATA layer.
  
  	  If unsure, say N.
669a5db41   Jeff Garzik   [libata] Add a bu...
670
671
672
673
674
675
676
677
  config PATA_VIA
  	tristate "VIA PATA support"
  	depends on PCI
  	help
  	  This option enables support for the VIA PATA interfaces
  	  found on the many VIA chipsets.
  
  	  If unsure, say N.
2dc6c6f15   Marek Vasut   [ARM] pata_pxa: D...
678
679
680
681
682
683
684
685
686
687
  config PATA_PXA
  	tristate "PXA DMA-capable PATA support"
  	depends on ARCH_PXA
  	help
  	  This option enables support for harddrive attached to PXA CPU's bus.
  
  	  NOTE: This driver utilizes PXA DMA controller, in case your hardware
  	        is not capable of doing MWDMA, use pata_platform instead.
  
  	  If unsure, say N.
669a5db41   Jeff Garzik   [libata] Add a bu...
688
689
690
691
692
693
694
695
  config PATA_WINBOND
  	tristate "Winbond SL82C105 PATA support"
  	depends on PCI
  	help
  	  This option enables support for SL82C105 PATA devices found in the
  	  Netwinder and some other systems
  
  	  If unsure, say N.
9a7780c9a   Tejun Heo   libata-sff: make ...
696
697
698
699
700
701
  endif # ATA_BMDMA
  
  comment "PIO-only SFF controllers"
  
  config PATA_AT32
  	tristate "Atmel AVR32 PATA support (Experimental)"
48b3de219   Kees Cook   drivers/ata: remo...
702
  	depends on AVR32 && PLATFORM_AT32AP
7e45b0e5f   Alan Cox   [PATCH] libata: W...
703
  	help
9a7780c9a   Tejun Heo   libata-sff: make ...
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
  	  This option enables support for the IDE devices on the
  	  Atmel AT32AP platform.
  
  	  If unsure, say N.
  
  config PATA_AT91
  	tristate "PATA support for AT91SAM9260"
  	depends on ARM && ARCH_AT91
  	help
  	  This option enables support for IDE devices on the Atmel AT91SAM9260 SoC.
  
  	  If unsure, say N.
  
  config PATA_CMD640_PCI
  	tristate "CMD640 PCI PATA support (Experimental)"
48b3de219   Kees Cook   drivers/ata: remo...
719
  	depends on PCI
9a7780c9a   Tejun Heo   libata-sff: make ...
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
  	help
  	  This option enables support for the CMD640 PCI IDE
  	  interface chip. Only the primary channel is currently
  	  supported.
  
  	  If unsure, say N.
  
  config PATA_ISAPNP
  	tristate "ISA Plug and Play PATA support"
  	depends on ISAPNP
  	help
  	  This option enables support for ISA plug & play ATA
  	  controllers such as those found on old soundcards.
  
  	  If unsure, say N.
  
  config PATA_IXP4XX_CF
  	tristate "IXP4XX Compact Flash support"
  	depends on ARCH_IXP4XX
  	help
  	  This option enables support for a Compact Flash connected on
  	  the ixp4xx expansion bus. This driver had been written for
  	  Loft/Avila boards in mind but can work with others.
  
  	  If unsure, say N.
  
  config PATA_MPIIX
  	tristate "Intel PATA MPIIX support"
  	depends on PCI
  	help
  	  This option enables support for MPIIX PATA support.
  
  	  If unsure, say N.
  
  config PATA_NS87410
  	tristate "Nat Semi NS87410 PATA support"
  	depends on PCI
  	help
  	  This option enables support for the National Semiconductor
  	  NS87410 PCI-IDE controller.
  
  	  If unsure, say N.
  
  config PATA_OPTI
  	tristate "OPTI621/6215 PATA support (Very Experimental)"
48b3de219   Kees Cook   drivers/ata: remo...
765
  	depends on PCI
9a7780c9a   Tejun Heo   libata-sff: make ...
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
  	help
  	  This option enables full PIO support for the early Opti ATA
  	  controllers found on some old motherboards.
  
  	  If unsure, say N.
  
  config PATA_PALMLD
  	tristate "Palm LifeDrive PATA support"
  	depends on MACH_PALMLD
  	help
  	  This option enables support for Palm LifeDrive's internal ATA
  	  port via the new ATA layer.
  
  	  If unsure, say N.
  
  config PATA_PCMCIA
  	tristate "PCMCIA PATA support"
  	depends on PCMCIA
  	help
  	  This option enables support for PCMCIA ATA interfaces, including
  	  compact flash card adapters via the new ATA layer.
  
  	  If unsure, say N.
7e45b0e5f   Alan Cox   [PATCH] libata: W...
789

a20c9e820   Paul Mundt   [PATCH] ata: Gene...
790
791
  config PATA_PLATFORM
  	tristate "Generic platform device PATA support"
6a108a14f   David Rientjes   kconfig: rename C...
792
  	depends on EXPERT || PPC || HAVE_PATA_PLATFORM
a20c9e820   Paul Mundt   [PATCH] ata: Gene...
793
794
795
796
797
  	help
  	  This option enables support for generic directly connected ATA
  	  devices commonly found on embedded systems.
  
  	  If unsure, say N.
61f716211   Anton Vorontsov   libata: pata_of_p...
798
799
800
  
  config PATA_OF_PLATFORM
  	tristate "OpenFirmware platform device PATA support"
d0643aa16   Rob Herring   pata_of_platform:...
801
  	depends on PATA_PLATFORM && OF
61f716211   Anton Vorontsov   libata: pata_of_p...
802
803
804
805
806
807
  	help
  	  This option enables support for generic directly connected ATA
  	  devices commonly found on embedded systems with OpenFirmware
  	  bindings.
  
  	  If unsure, say N.
a20c9e820   Paul Mundt   [PATCH] ata: Gene...
808

9a7780c9a   Tejun Heo   libata-sff: make ...
809
810
811
  config PATA_QDI
  	tristate "QDI VLB PATA support"
  	depends on ISA
0dcd0a763   Bartlomiej Zolnierkiewicz   libata: remove no...
812
  	select PATA_LEGACY
73b6a2be8   Russell King   [ARM] Add support...
813
  	help
9a7780c9a   Tejun Heo   libata-sff: make ...
814
  	  Support for QDI 6500 and 6580 PATA controllers on VESA local bus.
73b6a2be8   Russell King   [ARM] Add support...
815

9a7780c9a   Tejun Heo   libata-sff: make ...
816
817
818
  config PATA_RB532
  	tristate "RouterBoard 532 PATA CompactFlash support"
  	depends on MIKROTIK_RB532
0df0d0a0e   Alessandro Zummo   [libata] ARM: add...
819
  	help
9a7780c9a   Tejun Heo   libata-sff: make ...
820
821
  	  This option enables support for the RouterBoard 532
  	  PATA CompactFlash controller.
0df0d0a0e   Alessandro Zummo   [libata] ARM: add...
822
823
  
  	  If unsure, say N.
9a7780c9a   Tejun Heo   libata-sff: make ...
824
825
826
  config PATA_RZ1000
  	tristate "PC Tech RZ1000 PATA support"
  	depends on PCI
3c929c6f5   David Daney   libata: New drive...
827
  	help
9a7780c9a   Tejun Heo   libata-sff: make ...
828
829
  	  This option enables basic support for the PC Tech RZ1000/1
  	  PATA controllers via the new ATA layer
3c929c6f5   David Daney   libata: New drive...
830
831
  
  	  If unsure, say N.
155bf48f1   Abhilash Kesavan   [libata] Add Sams...
832
833
834
835
836
837
838
839
  config PATA_SAMSUNG_CF
  	tristate "Samsung SoC PATA support"
  	depends on SAMSUNG_DEV_IDE
  	help
  	  This option enables basic support for Samsung's S3C/S5P board
  	  PATA controllers via the new ATA layer
  
  	  If unsure, say N.
9a7780c9a   Tejun Heo   libata-sff: make ...
840
841
  config PATA_WINBOND_VLB
  	tristate "Winbond W83759A VLB PATA support (Experimental)"
48b3de219   Kees Cook   drivers/ata: remo...
842
  	depends on ISA
6d981b9a9   Bartlomiej Zolnierkiewicz   libata: remove no...
843
  	select PATA_LEGACY
a619f981b   Akira Iguchi   libata: PATA driv...
844
  	help
9a7780c9a   Tejun Heo   libata-sff: make ...
845
846
  	  Support for the Winbond W83759A controller on Vesa Local Bus
  	  systems.
a619f981b   Akira Iguchi   libata: PATA driv...
847

9a7780c9a   Tejun Heo   libata-sff: make ...
848
  comment "Generic fallback / legacy drivers"
a619f981b   Akira Iguchi   libata: PATA driv...
849

9a7780c9a   Tejun Heo   libata-sff: make ...
850
851
852
  config PATA_ACPI
  	tristate "ACPI firmware driver for PATA"
  	depends on ATA_ACPI && ATA_BMDMA
07ab85de4   Alek Du   libata: Add Intel...
853
  	help
9a7780c9a   Tejun Heo   libata-sff: make ...
854
855
856
857
  	  This option enables an ACPI method driver which drives
  	  motherboard PATA controller interfaces through the ACPI
  	  firmware in the BIOS. This driver can sometimes handle
  	  otherwise unsupported hardware.
07ab85de4   Alek Du   libata: Add Intel...
858

9a7780c9a   Tejun Heo   libata-sff: make ...
859
860
861
  config ATA_GENERIC
  	tristate "Generic ATA support"
  	depends on PCI && ATA_BMDMA
d830d1731   Sonic Zhang   libata driver for...
862
  	help
9a7780c9a   Tejun Heo   libata-sff: make ...
863
864
  	  This option enables support for generic BIOS configured
  	  ATA controllers via the new ATA layer
d830d1731   Sonic Zhang   libata driver for...
865
866
  
  	  If unsure, say N.
9a7780c9a   Tejun Heo   libata-sff: make ...
867
868
  config PATA_LEGACY
  	tristate "Legacy ISA PATA support (Experimental)"
48b3de219   Kees Cook   drivers/ata: remo...
869
  	depends on (ISA || PCI)
88358ab08   Benjamin Herrenschmidt   libata/drivers: A...
870
  	help
9a7780c9a   Tejun Heo   libata-sff: make ...
871
872
  	  This option enables support for ISA/VLB/PCI bus legacy PATA
  	  ports and allows them to be accessed via the new ATA layer.
88358ab08   Benjamin Herrenschmidt   libata/drivers: A...
873

9a7780c9a   Tejun Heo   libata-sff: make ...
874
  	  If unsure, say N.
88358ab08   Benjamin Herrenschmidt   libata/drivers: A...
875

127102aea   Tejun Heo   libata: make SFF ...
876
  endif # ATA_SFF
b196fc69f   Jan Engelhardt   Use menuconfig ob...
877
  endif # ATA