xref: /openbmc/linux/drivers/firewire/Kconfig (revision 9f6d3c4b)
15d7db049SStefan Richtermenu "IEEE 1394 (FireWire) support"
25d7db049SStefan Richter	depends on PCI || BROKEN
35d7db049SStefan Richter	# firewire-core does not depend on PCI but is
45d7db049SStefan Richter	# not useful without PCI controller driver
55d7db049SStefan Richter
60c53decdSStefan Richtercomment "You can enable one or both FireWire driver stacks."
75d7db049SStefan Richtercomment "The newer stack is recommended."
8a7b64b87SStefan Richter
911f494eeSStefan Richterconfig FIREWIRE
100c53decdSStefan Richter	tristate "FireWire driver stack"
11e175569cSKristian Høgsberg	select CRC_ITU_T
123038e353SKristian Høgsberg	help
130c53decdSStefan Richter	  This is the new-generation IEEE 1394 (FireWire) driver stack
140c53decdSStefan Richter	  a.k.a. Juju, a new implementation designed for robustness and
150c53decdSStefan Richter	  simplicity.
160c53decdSStefan Richter	  See http://ieee1394.wiki.kernel.org/index.php/Juju_Migration
170c53decdSStefan Richter	  for information about migration from the older Linux 1394 stack
180c53decdSStefan Richter	  to the new driver stack.
193038e353SKristian Høgsberg
20fe77d4f2SStefan Richter	  To compile this driver as a module, say M here: the module will be
21f05e21b3SStefan Richter	  called firewire-core.
22f05e21b3SStefan Richter
2311f494eeSStefan Richterconfig FIREWIRE_OHCI
24a7b64b87SStefan Richter	tristate "OHCI-1394 controllers"
2511f494eeSStefan Richter	depends on PCI && FIREWIRE
26ed568912SKristian Høgsberg	help
2735b7541cSStefan Richter	  Enable this driver if you have a FireWire controller based
28ed568912SKristian Høgsberg	  on the OHCI specification.  For all practical purposes, this
29ed568912SKristian Høgsberg	  is the only chipset in use, so say Y here.
30ed568912SKristian Høgsberg
31227e7d81SStefan Richter	  To compile this driver as a module, say M here:  The module will be
325d7db049SStefan Richter	  called firewire-ohci.
33ed568912SKristian Høgsberg
34ad3c0fe8SStefan Richterconfig FIREWIRE_OHCI_DEBUG
35ad3c0fe8SStefan Richter	bool
36ad3c0fe8SStefan Richter	depends on FIREWIRE_OHCI
37ad3c0fe8SStefan Richter	default y
38ad3c0fe8SStefan Richter
3911f494eeSStefan Richterconfig FIREWIRE_SBP2
40a7b64b87SStefan Richter	tristate "Storage devices (SBP-2 protocol)"
4111f494eeSStefan Richter	depends on FIREWIRE && SCSI
429ba136d0SKristian Høgsberg	help
4335b7541cSStefan Richter	  This option enables you to use SBP-2 devices connected to a
4435b7541cSStefan Richter	  FireWire bus.  SBP-2 devices include storage devices like
459ba136d0SKristian Høgsberg	  harddisks and DVD drives, also some other FireWire devices
469ba136d0SKristian Høgsberg	  like scanners.
479ba136d0SKristian Høgsberg
48227e7d81SStefan Richter	  To compile this driver as a module, say M here:  The module will be
495d7db049SStefan Richter	  called firewire-sbp2.
50227e7d81SStefan Richter
519ba136d0SKristian Høgsberg	  You should also enable support for disks, CD-ROMs, etc. in the SCSI
529ba136d0SKristian Høgsberg	  configuration section.
53b9530fd6SStefan Richter
54b9530fd6SStefan Richterconfig FIREWIRE_NET
550c53decdSStefan Richter	tristate "IP networking over 1394 (EXPERIMENTAL)"
560c53decdSStefan Richter	depends on FIREWIRE && INET && EXPERIMENTAL
57b9530fd6SStefan Richter	help
58b9530fd6SStefan Richter	  This enables IPv4 over IEEE 1394, providing IP connectivity with
59b9530fd6SStefan Richter	  other implementations of RFC 2734 as found on several operating
60b9530fd6SStefan Richter	  systems.  Multicast support is currently limited.
61b9530fd6SStefan Richter
620c53decdSStefan Richter	  NOTE, this driver is not stable yet!
630c53decdSStefan Richter
64b9530fd6SStefan Richter	  To compile this driver as a module, say M here:  The module will be
655d7db049SStefan Richter	  called firewire-net.
665d7db049SStefan Richter
675d7db049SStefan Richtersource "drivers/ieee1394/Kconfig"
685d7db049SStefan Richter
6928646821SStefan Richterconfig FIREWIRE_NOSY
7028646821SStefan Richter	tristate "Nosy - a FireWire traffic sniffer for PCILynx cards"
7128646821SStefan Richter	depends on PCI
7228646821SStefan Richter	help
7328646821SStefan Richter	  Nosy is an IEEE 1394 packet sniffer that is used for protocol
7428646821SStefan Richter	  analysis and in development of IEEE 1394 drivers, applications,
7528646821SStefan Richter	  or firmwares.
7628646821SStefan Richter
7728646821SStefan Richter	  This driver lets you use a Texas Instruments PCILynx 1394 to PCI
7828646821SStefan Richter	  link layer controller TSB12LV21/A/B as a low-budget bus analyzer.
7928646821SStefan Richter	  PCILynx is a nowadays very rare IEEE 1394 controller which is
8028646821SStefan Richter	  not OHCI 1394 compliant.
8128646821SStefan Richter
8228646821SStefan Richter	  The following cards are known to be based on PCILynx or PCILynx-2:
8328646821SStefan Richter	  IOI IOI-1394TT (PCI card), Unibrain Fireboard 400 PCI Lynx-2
8428646821SStefan Richter	  (PCI card), Newer Technology FireWire 2 Go (CardBus card),
8528646821SStefan Richter	  Apple Power Mac G3 blue & white (onboard controller).
8628646821SStefan Richter
8728646821SStefan Richter	  To compile this driver as a module, say M here:  The module will be
889f6d3c4bSStefan Richter	  called nosy.  Source code of a userspace interface to nosy, called
899f6d3c4bSStefan Richter	  nosy-dump, can be found in tools/firewire/ of the kernel sources.
9028646821SStefan Richter
9128646821SStefan Richter	  If unsure, say N.
9228646821SStefan Richter
935d7db049SStefan Richterendmenu
94