Kristian Høgsberg | 3038e35 | 2006-12-19 19:58:27 -0500 | [diff] [blame] | 1 | # -*- shell-script -*- |
| 2 | |
Stefan Richter | 22a38e72 | 2006-12-31 17:20:20 +0100 | [diff] [blame] | 3 | comment "An alternative FireWire stack is available with EXPERIMENTAL=y" |
Stefan Richter | 9c87da4 | 2006-12-28 16:20:00 +0100 | [diff] [blame] | 4 | depends on EXPERIMENTAL=n |
| 5 | |
Stefan Richter | 11f494e | 2007-03-18 01:39:28 +0100 | [diff] [blame] | 6 | config FIREWIRE |
Stefan Richter | fe77d4f | 2007-06-25 22:18:40 +0200 | [diff] [blame] | 7 | tristate "IEEE 1394 (FireWire) support - alternative stack, EXPERIMENTAL" |
Stefan Richter | 9c87da4 | 2006-12-28 16:20:00 +0100 | [diff] [blame] | 8 | depends on EXPERIMENTAL |
Kristian Høgsberg | e175569 | 2007-05-07 20:33:31 -0400 | [diff] [blame] | 9 | select CRC_ITU_T |
Kristian Høgsberg | 3038e35 | 2006-12-19 19:58:27 -0500 | [diff] [blame] | 10 | help |
Stefan Richter | fe77d4f | 2007-06-25 22:18:40 +0200 | [diff] [blame] | 11 | This is the "Juju" FireWire stack, a new alternative implementation |
Stefan Richter | 227e7d8 | 2007-01-07 22:33:59 +0100 | [diff] [blame] | 12 | designed for robustness and simplicity. You can build either this |
| 13 | stack, or the classic stack (the ieee1394 driver, ohci1394 etc.) |
Stefan Richter | a1134dd | 2007-10-07 12:31:22 +0200 | [diff] [blame] | 14 | or both. Please read http://wiki.linux1394.org/JujuMigration before |
| 15 | you enable the new stack. |
Kristian Høgsberg | 3038e35 | 2006-12-19 19:58:27 -0500 | [diff] [blame] | 16 | |
Stefan Richter | fe77d4f | 2007-06-25 22:18:40 +0200 | [diff] [blame] | 17 | 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 Richter | 11f494e | 2007-03-18 01:39:28 +0100 | [diff] [blame] | 46 | config FIREWIRE_OHCI |
Stefan Richter | 35b7541 | 2007-01-04 18:35:00 +0100 | [diff] [blame] | 47 | tristate "Support for OHCI FireWire host controllers" |
Stefan Richter | 11f494e | 2007-03-18 01:39:28 +0100 | [diff] [blame] | 48 | depends on PCI && FIREWIRE |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 49 | help |
Stefan Richter | 35b7541 | 2007-01-04 18:35:00 +0100 | [diff] [blame] | 50 | Enable this driver if you have a FireWire controller based |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 51 | on the OHCI specification. For all practical purposes, this |
| 52 | is the only chipset in use, so say Y here. |
| 53 | |
Stefan Richter | 227e7d8 | 2007-01-07 22:33:59 +0100 | [diff] [blame] | 54 | To compile this driver as a module, say M here: The module will be |
Stefan Richter | fe77d4f | 2007-06-25 22:18:40 +0200 | [diff] [blame] | 55 | called firewire-ohci. It replaces ohci1394 of the classic IEEE 1394 |
| 56 | stack. |
Stefan Richter | 227e7d8 | 2007-01-07 22:33:59 +0100 | [diff] [blame] | 57 | |
Stefan Richter | fe77d4f | 2007-06-25 22:18:40 +0200 | [diff] [blame] | 58 | 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øgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 62 | |
Stefan Richter | 11f494e | 2007-03-18 01:39:28 +0100 | [diff] [blame] | 63 | config FIREWIRE_SBP2 |
Kristian Høgsberg | 9ba136d | 2006-12-19 19:58:40 -0500 | [diff] [blame] | 64 | tristate "Support for storage devices (SBP-2 protocol driver)" |
Stefan Richter | 11f494e | 2007-03-18 01:39:28 +0100 | [diff] [blame] | 65 | depends on FIREWIRE && SCSI |
Kristian Høgsberg | 9ba136d | 2006-12-19 19:58:40 -0500 | [diff] [blame] | 66 | help |
Stefan Richter | 35b7541 | 2007-01-04 18:35:00 +0100 | [diff] [blame] | 67 | This option enables you to use SBP-2 devices connected to a |
| 68 | FireWire bus. SBP-2 devices include storage devices like |
Kristian Høgsberg | 9ba136d | 2006-12-19 19:58:40 -0500 | [diff] [blame] | 69 | harddisks and DVD drives, also some other FireWire devices |
| 70 | like scanners. |
| 71 | |
Stefan Richter | 227e7d8 | 2007-01-07 22:33:59 +0100 | [diff] [blame] | 72 | To compile this driver as a module, say M here: The module will be |
Stefan Richter | fe77d4f | 2007-06-25 22:18:40 +0200 | [diff] [blame] | 73 | called firewire-sbp2. It replaces sbp2 of the classic IEEE 1394 |
| 74 | stack. |
Stefan Richter | 227e7d8 | 2007-01-07 22:33:59 +0100 | [diff] [blame] | 75 | |
Kristian Høgsberg | 9ba136d | 2006-12-19 19:58:40 -0500 | [diff] [blame] | 76 | You should also enable support for disks, CD-ROMs, etc. in the SCSI |
| 77 | configuration section. |
| 78 | |
Stefan Richter | fe77d4f | 2007-06-25 22:18:40 +0200 | [diff] [blame] | 79 | 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 Richter | 227e7d8 | 2007-01-07 22:33:59 +0100 | [diff] [blame] | 83 | |