blob: 61d7809a5a262340864f5012835b7a75636493cd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001menu "IEEE 1394 (FireWire) support"
2
3config IEEE1394
4 tristate "IEEE 1394 (FireWire) support"
Stefan Richter09a9a452006-06-25 05:46:44 -07005 depends on PCI || BROKEN
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 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
19comment "Subsystem Options"
20 depends on IEEE1394
21
22config 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
Stefan Richter3f94aa42007-04-21 20:54:37 +020035comment "Controllers"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 depends on IEEE1394
37
38comment "Texas Instruments PCILynx requires I2C"
39 depends on IEEE1394 && I2C=n
40
41config 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
Stefan Richter3f94aa42007-04-21 20:54:37 +020053 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070057config 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
Stefan Richter3f94aa42007-04-21 20:54:37 +020070comment "Protocols"
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 depends on IEEE1394
72
73config 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
Stefan Richterb8092892006-08-30 18:22:00 +020081comment "SBP-2 support (for storage devices) requires SCSI"
82 depends on IEEE1394 && SCSI=n
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084config IEEE1394_SBP2
85 tristate "SBP-2 support (Harddisks etc.)"
Stefan Richter9b7d9c02006-11-22 21:44:34 +010086 depends on IEEE1394 && SCSI
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 help
Stefan Richterb8092892006-08-30 18:22:00 +020088 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95config IEEE1394_SBP2_PHYS_DMA
Ben Collinsbccbccd2006-06-12 18:14:36 -040096 bool "Enable replacement for physical DMA in SBP2"
Ben Collinsdd082c62006-06-12 18:15:40 -040097 depends on IEEE1394 && IEEE1394_SBP2 && EXPERIMENTAL && (X86_32 || PPC_32)
Ben Collinsbccbccd2006-06-12 18:14:36 -040098 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.
Matt LaPlante09509602006-10-03 22:31:37 +0200101 Physical DMA is data movement without assistance of the drivers'
Ben Collinsbccbccd2006-06-12 18:14:36 -0400102 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Stefan Richter70093cf2007-03-27 01:36:50 +0200108config IEEE1394_ETH1394_ROM_ENTRY
109 depends on IEEE1394
110 bool
111 default n
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113config IEEE1394_ETH1394
Stefan Richter70093cf2007-03-27 01:36:50 +0200114 tristate "IP over 1394"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 depends on IEEE1394 && EXPERIMENTAL && INET
Stefan Richter70093cf2007-03-27 01:36:50 +0200116 select IEEE1394_ETH1394_ROM_ENTRY
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 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
Stefan Richter70093cf2007-03-27 01:36:50 +0200125 The module is called eth1394 although it does not emulate Ethernet.
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127config IEEE1394_DV1394
Stefan Richter861646f2006-11-20 00:07:26 +0100128 tristate "OHCI-DV I/O support (deprecated)"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 depends on IEEE1394 && IEEE1394_OHCI1394
130 help
Stefan Richter199c1162007-03-22 00:40:06 +0100131 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135config IEEE1394_RAWIO
136 tristate "Raw IEEE1394 I/O support"
137 depends on IEEE1394
138 help
Stefan Richter3f94aa42007-04-21 20:54:37 +0200139 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Stefan Richter3f94aa42007-04-21 20:54:37 +0200144 To compile this driver as a module, say M here: the module will be
145 called raw1394.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147endmenu