blob: f21426ad2faaf1d963af5afd7a95bcb2e63d56fc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001menu "IEEE 1394 (FireWire) support"
Martin Schwidefskyeeca7a32007-05-10 15:45:56 +02002 depends on PCI || BROKEN
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
4config IEEE1394
5 tristate "IEEE 1394 (FireWire) support"
Stefan Richter09a9a452006-06-25 05:46:44 -07006 depends on PCI || BROKEN
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 help
8 IEEE 1394 describes a high performance serial bus, which is also
9 known as FireWire(tm) or i.Link(tm) and is used for connecting all
10 sorts of devices (most notably digital video cameras) to your
11 computer.
12
13 If you have FireWire hardware and want to use it, say Y here. This
14 is the core support only, you will also need to select a driver for
15 your IEEE 1394 adapter.
16
17 To compile this driver as a module, say M here: the
18 module will be called ieee1394.
19
20comment "Subsystem Options"
21 depends on IEEE1394
22
23config IEEE1394_VERBOSEDEBUG
24 bool "Excessive debugging output"
25 depends on IEEE1394
26 help
27 If you say Y here, you will get very verbose debugging logs from
28 the subsystem which includes a dump of the header of every sent
29 and received packet. This can amount to a high amount of data
30 collected in a very short time which is usually also saved to
31 disk by the system logging daemons.
32
33 Say Y if you really want or need the debugging output, everyone
34 else says N.
35
Stefan Richter3f94aa42007-04-21 20:54:37 +020036comment "Controllers"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 depends on IEEE1394
38
39comment "Texas Instruments PCILynx requires I2C"
40 depends on IEEE1394 && I2C=n
41
42config IEEE1394_PCILYNX
43 tristate "Texas Instruments PCILynx support"
44 depends on PCI && IEEE1394 && I2C
45 select I2C_ALGOBIT
46 help
47 Say Y here if you have an IEEE-1394 controller with the Texas
48 Instruments PCILynx chip. Note: this driver is written for revision
49 2 of this chip and may not work with revision 0.
50
51 To compile this driver as a module, say M here: the
52 module will be called pcilynx.
53
Stefan Richter3f94aa42007-04-21 20:54:37 +020054 Only some old and now very rare PCI and CardBus cards and
55 PowerMacs G3 B&W contain the PCILynx controller. Therefore
56 almost everybody can say N here.
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058config IEEE1394_OHCI1394
59 tristate "OHCI-1394 support"
60 depends on PCI && IEEE1394
61 help
62 Enable this driver if you have an IEEE 1394 controller based on the
63 OHCI-1394 specification. The current driver is only tested with OHCI
64 chipsets made by Texas Instruments and NEC. Most third-party vendors
65 use one of these chipsets. It should work with any OHCI-1394
66 compliant card, however.
67
68 To compile this driver as a module, say M here: the
69 module will be called ohci1394.
70
Stefan Richter3f94aa42007-04-21 20:54:37 +020071comment "Protocols"
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 depends on IEEE1394
73
74config IEEE1394_VIDEO1394
75 tristate "OHCI-1394 Video support"
76 depends on IEEE1394 && IEEE1394_OHCI1394
77 help
78 This option enables video device usage for OHCI-1394 cards. Enable
79 this option only if you have an IEEE 1394 video device connected to
80 an OHCI-1394 card.
81
Stefan Richterb8092892006-08-30 18:22:00 +020082comment "SBP-2 support (for storage devices) requires SCSI"
83 depends on IEEE1394 && SCSI=n
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085config IEEE1394_SBP2
86 tristate "SBP-2 support (Harddisks etc.)"
Stefan Richter9b7d9c02006-11-22 21:44:34 +010087 depends on IEEE1394 && SCSI
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 help
Stefan Richterb8092892006-08-30 18:22:00 +020089 This option enables you to use SBP-2 devices connected to an IEEE
90 1394 bus. SBP-2 devices include storage devices like harddisks and
91 DVD drives, also some other FireWire devices like scanners.
92
93 You should also enable support for disks, CD-ROMs, etc. in the SCSI
94 configuration section.
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96config IEEE1394_SBP2_PHYS_DMA
Ben Collinsbccbccd2006-06-12 18:14:36 -040097 bool "Enable replacement for physical DMA in SBP2"
Ben Collinsdd082c62006-06-12 18:15:40 -040098 depends on IEEE1394 && IEEE1394_SBP2 && EXPERIMENTAL && (X86_32 || PPC_32)
Ben Collinsbccbccd2006-06-12 18:14:36 -040099 help
100 This builds sbp2 for use with non-OHCI host adapters which do not
101 support physical DMA or for when ohci1394 is run with phys_dma=0.
Matt LaPlante09509602006-10-03 22:31:37 +0200102 Physical DMA is data movement without assistance of the drivers'
Ben Collinsbccbccd2006-06-12 18:14:36 -0400103 interrupt handlers. This option includes the interrupt handlers
104 that are required in absence of this hardware feature.
105
106 This option is buggy and currently broken on some architectures.
107 If unsure, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Stefan Richter70093cf2007-03-27 01:36:50 +0200109config IEEE1394_ETH1394_ROM_ENTRY
110 depends on IEEE1394
111 bool
112 default n
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114config IEEE1394_ETH1394
Stefan Richter70093cf2007-03-27 01:36:50 +0200115 tristate "IP over 1394"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 depends on IEEE1394 && EXPERIMENTAL && INET
Stefan Richter70093cf2007-03-27 01:36:50 +0200117 select IEEE1394_ETH1394_ROM_ENTRY
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 help
119 This driver implements a functional majority of RFC 2734: IPv4 over
120 1394. It will provide IP connectivity with implementations of RFC
121 2734 found on other operating systems. It will not communicate with
122 older versions of this driver found in stock kernels prior to 2.6.3.
123 This driver is still considered experimental. It does not yet support
124 MCAP, therefore multicast support is significantly limited.
125
Stefan Richter70093cf2007-03-27 01:36:50 +0200126 The module is called eth1394 although it does not emulate Ethernet.
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128config IEEE1394_DV1394
Stefan Richter861646f2006-11-20 00:07:26 +0100129 tristate "OHCI-DV I/O support (deprecated)"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 depends on IEEE1394 && IEEE1394_OHCI1394
131 help
Stefan Richter199c1162007-03-22 00:40:06 +0100132 The dv1394 driver is unsupported and may be removed from Linux in a
133 future release. Its functionality is now provided by raw1394 together
134 with libraries such as libiec61883.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136config IEEE1394_RAWIO
137 tristate "Raw IEEE1394 I/O support"
138 depends on IEEE1394
139 help
Stefan Richter3f94aa42007-04-21 20:54:37 +0200140 This option adds support for the raw1394 device file which enables
141 direct communication of user programs with the IEEE 1394 bus and thus
142 with the attached peripherals. Almost all application programs which
143 access FireWire require this option.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Stefan Richter3f94aa42007-04-21 20:54:37 +0200145 To compile this driver as a module, say M here: the module will be
146 called raw1394.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148endmenu