Merge git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6
[pandora-kernel.git] / drivers / ieee1394 / Kconfig
1 menu "IEEE 1394 (FireWire) support"
2
3 config IEEE1394
4         tristate "IEEE 1394 (FireWire) support"
5         depends on PCI || BROKEN
6         help
7           IEEE 1394 describes a high performance serial bus, which is also
8           known as FireWire(tm) or i.Link(tm) and is used for connecting all
9           sorts of devices (most notably digital video cameras) to your
10           computer.
11
12           If you have FireWire hardware and want to use it, say Y here.  This
13           is the core support only, you will also need to select a driver for
14           your IEEE 1394 adapter.
15
16           To compile this driver as a module, say M here: the
17           module will be called ieee1394.
18
19 comment "Subsystem Options"
20         depends on IEEE1394
21
22 config IEEE1394_VERBOSEDEBUG
23         bool "Excessive debugging output"
24         depends on IEEE1394
25         help
26           If you say Y here, you will get very verbose debugging logs from
27           the subsystem which includes a dump of the header of every sent
28           and received packet.  This can amount to a high amount of data
29           collected in a very short time which is usually also saved to
30           disk by the system logging daemons.
31
32           Say Y if you really want or need the debugging output, everyone
33           else says N.
34
35 comment "Controllers"
36         depends on IEEE1394
37
38 comment "Texas Instruments PCILynx requires I2C"
39         depends on IEEE1394 && I2C=n
40
41 config IEEE1394_PCILYNX
42         tristate "Texas Instruments PCILynx support"
43         depends on PCI && IEEE1394 && I2C
44         select I2C_ALGOBIT
45         help
46           Say Y here if you have an IEEE-1394 controller with the Texas
47           Instruments PCILynx chip.  Note: this driver is written for revision
48           2 of this chip and may not work with revision 0.
49
50           To compile this driver as a module, say M here: the
51           module will be called pcilynx.
52
53           Only some old and now very rare PCI and CardBus cards and
54           PowerMacs G3 B&W contain the PCILynx controller.  Therefore
55           almost everybody can say N here.
56
57 config IEEE1394_OHCI1394
58         tristate "OHCI-1394 support"
59         depends on PCI && IEEE1394
60         help
61           Enable this driver if you have an IEEE 1394 controller based on the
62           OHCI-1394 specification. The current driver is only tested with OHCI
63           chipsets made by Texas Instruments and NEC. Most third-party vendors
64           use one of these chipsets.  It should work with any OHCI-1394
65           compliant card, however.
66
67           To compile this driver as a module, say M here: the
68           module will be called ohci1394.
69
70 comment "Protocols"
71         depends on IEEE1394
72
73 config IEEE1394_VIDEO1394
74         tristate "OHCI-1394 Video support"
75         depends on IEEE1394 && IEEE1394_OHCI1394
76         help
77           This option enables video device usage for OHCI-1394 cards.  Enable
78           this option only if you have an IEEE 1394 video device connected to
79           an OHCI-1394 card.
80
81 comment "SBP-2 support (for storage devices) requires SCSI"
82         depends on IEEE1394 && SCSI=n
83
84 config IEEE1394_SBP2
85         tristate "SBP-2 support (Harddisks etc.)"
86         depends on IEEE1394 && SCSI
87         help
88           This option enables you to use SBP-2 devices connected to an IEEE
89           1394 bus.  SBP-2 devices include storage devices like harddisks and
90           DVD drives, also some other FireWire devices like scanners.
91
92           You should also enable support for disks, CD-ROMs, etc. in the SCSI
93           configuration section.
94
95 config IEEE1394_SBP2_PHYS_DMA
96         bool "Enable replacement for physical DMA in SBP2"
97         depends on IEEE1394 && IEEE1394_SBP2 && EXPERIMENTAL && (X86_32 || PPC_32)
98         help
99           This builds sbp2 for use with non-OHCI host adapters which do not
100           support physical DMA or for when ohci1394 is run with phys_dma=0.
101           Physical DMA is data movement without assistance of the drivers'
102           interrupt handlers.  This option includes the interrupt handlers
103           that are required in absence of this hardware feature.
104
105           This option is buggy and currently broken on some architectures.
106           If unsure, say N.
107
108 config IEEE1394_ETH1394_ROM_ENTRY
109         depends on IEEE1394
110         bool
111         default n
112
113 config IEEE1394_ETH1394
114         tristate "IP over 1394"
115         depends on IEEE1394 && EXPERIMENTAL && INET
116         select IEEE1394_ETH1394_ROM_ENTRY
117         help
118           This driver implements a functional majority of RFC 2734: IPv4 over
119           1394.  It will provide IP connectivity with implementations of RFC
120           2734 found on other operating systems.  It will not communicate with
121           older versions of this driver found in stock kernels prior to 2.6.3.
122           This driver is still considered experimental.  It does not yet support
123           MCAP, therefore multicast support is significantly limited.
124
125           The module is called eth1394 although it does not emulate Ethernet.
126
127 config IEEE1394_DV1394
128         tristate "OHCI-DV I/O support (deprecated)"
129         depends on IEEE1394 && IEEE1394_OHCI1394
130         help
131           The dv1394 driver is unsupported and may be removed from Linux in a
132           future release.  Its functionality is now provided by raw1394 together
133           with libraries such as libiec61883.
134
135 config IEEE1394_RAWIO
136         tristate "Raw IEEE1394 I/O support"
137         depends on IEEE1394
138         help
139           This option adds support for the raw1394 device file which enables
140           direct communication of user programs with the IEEE 1394 bus and thus
141           with the attached peripherals.  Almost all application programs which
142           access FireWire require this option.
143
144           To compile this driver as a module, say M here: the module will be
145           called raw1394.
146
147 endmenu