Kconfig 2.8 KB
Newer Older
1 2
# -*- shell-script -*-

3
comment "An alternative FireWire stack is available with EXPERIMENTAL=y"
4 5
	depends on EXPERIMENTAL=n

6
config FIREWIRE
7
	tristate "IEEE 1394 (FireWire) support - alternative stack, EXPERIMENTAL"
8
	depends on EXPERIMENTAL
9
	select CRC_ITU_T
10
	help
11
	  This is the "Juju" FireWire stack, a new alternative implementation
12 13
	  designed for robustness and simplicity.  You can build either this
	  stack, or the classic stack (the ieee1394 driver, ohci1394 etc.)
14 15
	  or both.  Please read http://wiki.linux1394.org/JujuMigration before
	  you enable the new stack.
16

17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
	  To compile this driver as a module, say M here: the module will be
	  called firewire-core.  It functionally replaces ieee1394, raw1394,
	  and video1394.

          NOTE:

	  You should only build ONE of the stacks, unless you REALLY know what
	  you are doing.  If you install both, you should configure them only as
	  modules rather than link them statically, and you should blacklist one
	  of the concurrent low-level drivers in /etc/modprobe.conf.  Add either

	      blacklist firewire-ohci
	  or
	      blacklist ohci1394

	  there depending on which driver you DON'T want to have auto-loaded.
	  You can optionally do the same with the other IEEE 1394/ FireWire
	  drivers.

	  If you have an old modprobe which doesn't implement the blacklist
	  directive, use either

	       install firewire-ohci /bin/true
	  or
	       install ohci1394 /bin/true

	  and so on, depending on which modules you DON't want to have
	  auto-loaded.

46
config FIREWIRE_OHCI
S
Stefan Richter 已提交
47
	tristate "Support for OHCI FireWire host controllers"
48
	depends on PCI && FIREWIRE
49
	help
S
Stefan Richter 已提交
50
	  Enable this driver if you have a FireWire controller based
51 52 53
	  on the OHCI specification.  For all practical purposes, this
	  is the only chipset in use, so say Y here.

54
	  To compile this driver as a module, say M here:  The module will be
55 56 57 58
	  called firewire-ohci.  It replaces ohci1394 of the classic IEEE 1394
	  stack.

          NOTE:
59

60 61
	  If you also build ohci1394 of the classic stack, blacklist either
	  ohci1394 or firewire-ohci to let hotplug load only the desired driver.
62

63
config FIREWIRE_SBP2
64
	tristate "Support for storage devices (SBP-2 protocol driver)"
65
	depends on FIREWIRE && SCSI
66
	help
S
Stefan Richter 已提交
67 68
	  This option enables you to use SBP-2 devices connected to a
	  FireWire bus.  SBP-2 devices include storage devices like
69 70 71
	  harddisks and DVD drives, also some other FireWire devices
	  like scanners.

72
	  To compile this driver as a module, say M here:  The module will be
73 74
	  called firewire-sbp2.  It replaces sbp2 of the classic IEEE 1394
	  stack.
75

76 77 78
	  You should also enable support for disks, CD-ROMs, etc. in the SCSI
	  configuration section.

79 80 81 82
          NOTE:

	  If you also build sbp2 of the classic stack, blacklist either sbp2
	  or firewire-sbp2 to let hotplug load only the desired driver.
83