blob: fe9e768cfbc4d28aa462d73fb60d79b689d160e9 [file] [log] [blame]
Kristian Høgsberg3038e352006-12-19 19:58:27 -05001# -*- shell-script -*-
2
Stefan Richter22a38e722006-12-31 17:20:20 +01003comment "An alternative FireWire stack is available with EXPERIMENTAL=y"
Stefan Richter9c87da42006-12-28 16:20:00 +01004 depends on EXPERIMENTAL=n
5
Stefan Richter11f494e2007-03-18 01:39:28 +01006config FIREWIRE
Stefan Richterfe77d4f2007-06-25 22:18:40 +02007 tristate "IEEE 1394 (FireWire) support - alternative stack, EXPERIMENTAL"
Stefan Richter9c87da42006-12-28 16:20:00 +01008 depends on EXPERIMENTAL
Kristian Høgsberge1755692007-05-07 20:33:31 -04009 select CRC_ITU_T
Kristian Høgsberg3038e352006-12-19 19:58:27 -050010 help
Stefan Richterfe77d4f2007-06-25 22:18:40 +020011 This is the "Juju" FireWire stack, a new alternative implementation
Stefan Richter227e7d82007-01-07 22:33:59 +010012 designed for robustness and simplicity. You can build either this
13 stack, or the classic stack (the ieee1394 driver, ohci1394 etc.)
Stefan Richtera1134dd2007-10-07 12:31:22 +020014 or both. Please read http://wiki.linux1394.org/JujuMigration before
15 you enable the new stack.
Kristian Høgsberg3038e352006-12-19 19:58:27 -050016
Stefan Richterfe77d4f2007-06-25 22:18:40 +020017 To compile this driver as a module, say M here: the module will be
18 called firewire-core. It functionally replaces ieee1394, raw1394,
19 and video1394.
20
21 NOTE:
22
23 You should only build ONE of the stacks, unless you REALLY know what
24 you are doing. If you install both, you should configure them only as
25 modules rather than link them statically, and you should blacklist one
26 of the concurrent low-level drivers in /etc/modprobe.conf. Add either
27
28 blacklist firewire-ohci
29 or
30 blacklist ohci1394
31
32 there depending on which driver you DON'T want to have auto-loaded.
33 You can optionally do the same with the other IEEE 1394/ FireWire
34 drivers.
35
36 If you have an old modprobe which doesn't implement the blacklist
37 directive, use either
38
39 install firewire-ohci /bin/true
40 or
41 install ohci1394 /bin/true
42
43 and so on, depending on which modules you DON't want to have
44 auto-loaded.
45
Stefan Richter11f494e2007-03-18 01:39:28 +010046config FIREWIRE_OHCI
Stefan Richter35b75412007-01-04 18:35:00 +010047 tristate "Support for OHCI FireWire host controllers"
Stefan Richter11f494e2007-03-18 01:39:28 +010048 depends on PCI && FIREWIRE
Kristian Høgsberged568912006-12-19 19:58:35 -050049 help
Stefan Richter35b75412007-01-04 18:35:00 +010050 Enable this driver if you have a FireWire controller based
Kristian Høgsberged568912006-12-19 19:58:35 -050051 on the OHCI specification. For all practical purposes, this
52 is the only chipset in use, so say Y here.
53
Stefan Richter227e7d82007-01-07 22:33:59 +010054 To compile this driver as a module, say M here: The module will be
Stefan Richterfe77d4f2007-06-25 22:18:40 +020055 called firewire-ohci. It replaces ohci1394 of the classic IEEE 1394
56 stack.
Stefan Richter227e7d82007-01-07 22:33:59 +010057
Stefan Richterfe77d4f2007-06-25 22:18:40 +020058 NOTE:
59
60 If you also build ohci1394 of the classic stack, blacklist either
61 ohci1394 or firewire-ohci to let hotplug load only the desired driver.
Kristian Høgsberged568912006-12-19 19:58:35 -050062
Stefan Richter11f494e2007-03-18 01:39:28 +010063config FIREWIRE_SBP2
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050064 tristate "Support for storage devices (SBP-2 protocol driver)"
Stefan Richter11f494e2007-03-18 01:39:28 +010065 depends on FIREWIRE && SCSI
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050066 help
Stefan Richter35b75412007-01-04 18:35:00 +010067 This option enables you to use SBP-2 devices connected to a
68 FireWire bus. SBP-2 devices include storage devices like
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050069 harddisks and DVD drives, also some other FireWire devices
70 like scanners.
71
Stefan Richter227e7d82007-01-07 22:33:59 +010072 To compile this driver as a module, say M here: The module will be
Stefan Richterfe77d4f2007-06-25 22:18:40 +020073 called firewire-sbp2. It replaces sbp2 of the classic IEEE 1394
74 stack.
Stefan Richter227e7d82007-01-07 22:33:59 +010075
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050076 You should also enable support for disks, CD-ROMs, etc. in the SCSI
77 configuration section.
78
Stefan Richterfe77d4f2007-06-25 22:18:40 +020079 NOTE:
80
81 If you also build sbp2 of the classic stack, blacklist either sbp2
82 or firewire-sbp2 to let hotplug load only the desired driver.
Stefan Richter227e7d82007-01-07 22:33:59 +010083