blob: c4edc34d128baf7bde7c412912418b4bde294bf4 [file] [log] [blame]
Stefan Richter5d7db042009-12-26 01:36:53 +01001menu "IEEE 1394 (FireWire) support"
2 depends on PCI || BROKEN
3 # firewire-core does not depend on PCI but is
4 # not useful without PCI controller driver
5
Stefan Richter0c53dec2009-06-16 22:36:34 +02006comment "You can enable one or both FireWire driver stacks."
Stefan Richter5d7db042009-12-26 01:36:53 +01007comment "The newer stack is recommended."
Stefan Richtera7b64b82008-06-14 14:24:53 +02008
Stefan Richter11f494e2007-03-18 01:39:28 +01009config FIREWIRE
Stefan Richter0c53dec2009-06-16 22:36:34 +020010 tristate "FireWire driver stack"
Kristian Høgsberge1755692007-05-07 20:33:31 -040011 select CRC_ITU_T
Kristian Høgsberg3038e352006-12-19 19:58:27 -050012 help
Stefan Richter0c53dec2009-06-16 22:36:34 +020013 This is the new-generation IEEE 1394 (FireWire) driver stack
14 a.k.a. Juju, a new implementation designed for robustness and
15 simplicity.
16 See http://ieee1394.wiki.kernel.org/index.php/Juju_Migration
17 for information about migration from the older Linux 1394 stack
18 to the new driver stack.
Kristian Høgsberg3038e352006-12-19 19:58:27 -050019
Stefan Richterfe77d4f2007-06-25 22:18:40 +020020 To compile this driver as a module, say M here: the module will be
Stefan Richterf05e21b2008-07-25 16:24:19 +020021 called firewire-core.
22
Stefan Richter11f494e2007-03-18 01:39:28 +010023config FIREWIRE_OHCI
Stefan Richtera7b64b82008-06-14 14:24:53 +020024 tristate "OHCI-1394 controllers"
Stefan Richter11f494e2007-03-18 01:39:28 +010025 depends on PCI && FIREWIRE
Kristian Høgsberged568912006-12-19 19:58:35 -050026 help
Stefan Richter35b75412007-01-04 18:35:00 +010027 Enable this driver if you have a FireWire controller based
Kristian Høgsberged568912006-12-19 19:58:35 -050028 on the OHCI specification. For all practical purposes, this
29 is the only chipset in use, so say Y here.
30
Stefan Richter227e7d82007-01-07 22:33:59 +010031 To compile this driver as a module, say M here: The module will be
Stefan Richter5d7db042009-12-26 01:36:53 +010032 called firewire-ohci.
Kristian Høgsberged568912006-12-19 19:58:35 -050033
Stefan Richterad3c0fe2008-03-20 22:04:36 +010034config FIREWIRE_OHCI_DEBUG
35 bool
36 depends on FIREWIRE_OHCI
37 default y
38
Stefan Richter11f494e2007-03-18 01:39:28 +010039config FIREWIRE_SBP2
Stefan Richtera7b64b82008-06-14 14:24:53 +020040 tristate "Storage devices (SBP-2 protocol)"
Stefan Richter11f494e2007-03-18 01:39:28 +010041 depends on FIREWIRE && SCSI
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050042 help
Stefan Richter35b75412007-01-04 18:35:00 +010043 This option enables you to use SBP-2 devices connected to a
44 FireWire bus. SBP-2 devices include storage devices like
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050045 harddisks and DVD drives, also some other FireWire devices
46 like scanners.
47
Stefan Richter227e7d82007-01-07 22:33:59 +010048 To compile this driver as a module, say M here: The module will be
Stefan Richter5d7db042009-12-26 01:36:53 +010049 called firewire-sbp2.
Stefan Richter227e7d82007-01-07 22:33:59 +010050
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050051 You should also enable support for disks, CD-ROMs, etc. in the SCSI
52 configuration section.
Stefan Richterb9530fd2009-06-07 22:57:53 +020053
54config FIREWIRE_NET
Stefan Richter0c53dec2009-06-16 22:36:34 +020055 tristate "IP networking over 1394 (EXPERIMENTAL)"
56 depends on FIREWIRE && INET && EXPERIMENTAL
Stefan Richterb9530fd2009-06-07 22:57:53 +020057 help
58 This enables IPv4 over IEEE 1394, providing IP connectivity with
59 other implementations of RFC 2734 as found on several operating
60 systems. Multicast support is currently limited.
61
Stefan Richter0c53dec2009-06-16 22:36:34 +020062 NOTE, this driver is not stable yet!
63
Stefan Richterb9530fd2009-06-07 22:57:53 +020064 To compile this driver as a module, say M here: The module will be
Stefan Richter5d7db042009-12-26 01:36:53 +010065 called firewire-net.
66
67source "drivers/ieee1394/Kconfig"
68
Stefan Richter28646822010-07-27 10:26:33 +020069config FIREWIRE_NOSY
70 tristate "Nosy - a FireWire traffic sniffer for PCILynx cards"
71 depends on PCI
72 help
73 Nosy is an IEEE 1394 packet sniffer that is used for protocol
74 analysis and in development of IEEE 1394 drivers, applications,
75 or firmwares.
76
77 This driver lets you use a Texas Instruments PCILynx 1394 to PCI
78 link layer controller TSB12LV21/A/B as a low-budget bus analyzer.
79 PCILynx is a nowadays very rare IEEE 1394 controller which is
80 not OHCI 1394 compliant.
81
82 The following cards are known to be based on PCILynx or PCILynx-2:
83 IOI IOI-1394TT (PCI card), Unibrain Fireboard 400 PCI Lynx-2
84 (PCI card), Newer Technology FireWire 2 Go (CardBus card),
85 Apple Power Mac G3 blue & white (onboard controller).
86
87 To compile this driver as a module, say M here: The module will be
88 called nosy.
89
90 If unsure, say N.
91
Stefan Richter5d7db042009-12-26 01:36:53 +010092endmenu