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