xref: /linux/drivers/firewire/Kconfig (revision ec8f24b7faaf3d4799a7c3f4c1b87f6b02778ad1)
1*ec8f24b7SThomas Gleixner# SPDX-License-Identifier: GPL-2.0-only
25d7db049SStefan Richtermenu "IEEE 1394 (FireWire) support"
3b3d681a4SJean Delvare	depends on PCI || COMPILE_TEST
45d7db049SStefan Richter	# firewire-core does not depend on PCI but is
55d7db049SStefan Richter	# not useful without PCI controller driver
65d7db049SStefan Richter
711f494eeSStefan Richterconfig FIREWIRE
80c53decdSStefan Richter	tristate "FireWire driver stack"
9e175569cSKristian Høgsberg	select CRC_ITU_T
103038e353SKristian Høgsberg	help
110c53decdSStefan Richter	  This is the new-generation IEEE 1394 (FireWire) driver stack
120c53decdSStefan Richter	  a.k.a. Juju, a new implementation designed for robustness and
130c53decdSStefan Richter	  simplicity.
140c53decdSStefan Richter	  See http://ieee1394.wiki.kernel.org/index.php/Juju_Migration
150c53decdSStefan Richter	  for information about migration from the older Linux 1394 stack
160c53decdSStefan Richter	  to the new driver stack.
173038e353SKristian Høgsberg
18fe77d4f2SStefan Richter	  To compile this driver as a module, say M here: the module will be
19f05e21b3SStefan Richter	  called firewire-core.
20f05e21b3SStefan Richter
2111f494eeSStefan Richterconfig FIREWIRE_OHCI
22a7b64b87SStefan Richter	tristate "OHCI-1394 controllers"
237a39d8b8SClemens Ladisch	depends on PCI && FIREWIRE && MMU
24ed568912SKristian Høgsberg	help
2535b7541cSStefan Richter	  Enable this driver if you have a FireWire controller based
26ed568912SKristian Høgsberg	  on the OHCI specification.  For all practical purposes, this
27ed568912SKristian Høgsberg	  is the only chipset in use, so say Y here.
28ed568912SKristian Høgsberg
29227e7d81SStefan Richter	  To compile this driver as a module, say M here:  The module will be
305d7db049SStefan Richter	  called firewire-ohci.
31ed568912SKristian Høgsberg
3211f494eeSStefan Richterconfig FIREWIRE_SBP2
33a7b64b87SStefan Richter	tristate "Storage devices (SBP-2 protocol)"
3411f494eeSStefan Richter	depends on FIREWIRE && SCSI
359ba136d0SKristian Høgsberg	help
3635b7541cSStefan Richter	  This option enables you to use SBP-2 devices connected to a
3735b7541cSStefan Richter	  FireWire bus.  SBP-2 devices include storage devices like
389ba136d0SKristian Høgsberg	  harddisks and DVD drives, also some other FireWire devices
399ba136d0SKristian Høgsberg	  like scanners.
409ba136d0SKristian Høgsberg
41227e7d81SStefan Richter	  To compile this driver as a module, say M here:  The module will be
425d7db049SStefan Richter	  called firewire-sbp2.
43227e7d81SStefan Richter
449ba136d0SKristian Høgsberg	  You should also enable support for disks, CD-ROMs, etc. in the SCSI
459ba136d0SKristian Høgsberg	  configuration section.
46b9530fd6SStefan Richter
47b9530fd6SStefan Richterconfig FIREWIRE_NET
4832471997SStefan Richter	tristate "IP networking over 1394"
4932471997SStefan Richter	depends on FIREWIRE && INET
50b9530fd6SStefan Richter	help
51cb6bf355SYOSHIFUJI Hideaki / 吉藤英明	  This enables IPv4/IPv6 over IEEE 1394, providing IP connectivity
52cb6bf355SYOSHIFUJI Hideaki / 吉藤英明	  with other implementations of RFC 2734/3146 as found on several
53cb6bf355SYOSHIFUJI Hideaki / 吉藤英明	  operating systems.  Multicast support is currently limited.
54b9530fd6SStefan Richter
55b9530fd6SStefan Richter	  To compile this driver as a module, say M here:  The module will be
565d7db049SStefan Richter	  called firewire-net.
575d7db049SStefan Richter
5828646821SStefan Richterconfig FIREWIRE_NOSY
5928646821SStefan Richter	tristate "Nosy - a FireWire traffic sniffer for PCILynx cards"
6028646821SStefan Richter	depends on PCI
6128646821SStefan Richter	help
6228646821SStefan Richter	  Nosy is an IEEE 1394 packet sniffer that is used for protocol
6328646821SStefan Richter	  analysis and in development of IEEE 1394 drivers, applications,
6428646821SStefan Richter	  or firmwares.
6528646821SStefan Richter
6628646821SStefan Richter	  This driver lets you use a Texas Instruments PCILynx 1394 to PCI
6728646821SStefan Richter	  link layer controller TSB12LV21/A/B as a low-budget bus analyzer.
6828646821SStefan Richter	  PCILynx is a nowadays very rare IEEE 1394 controller which is
6928646821SStefan Richter	  not OHCI 1394 compliant.
7028646821SStefan Richter
7128646821SStefan Richter	  The following cards are known to be based on PCILynx or PCILynx-2:
7228646821SStefan Richter	  IOI IOI-1394TT (PCI card), Unibrain Fireboard 400 PCI Lynx-2
7328646821SStefan Richter	  (PCI card), Newer Technology FireWire 2 Go (CardBus card),
748fd2af11SStefan Richter	  Apple Power Mac G3 blue & white and G4 with PCI graphics
758fd2af11SStefan Richter	  (onboard controller).
7628646821SStefan Richter
7728646821SStefan Richter	  To compile this driver as a module, say M here:  The module will be
789f6d3c4bSStefan Richter	  called nosy.  Source code of a userspace interface to nosy, called
799f6d3c4bSStefan Richter	  nosy-dump, can be found in tools/firewire/ of the kernel sources.
8028646821SStefan Richter
8128646821SStefan Richter	  If unsure, say N.
8228646821SStefan Richter
835d7db049SStefan Richterendmenu
84