Kconfig 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # -*- shell-script -*-
  2. comment "An alternative FireWire stack is available with EXPERIMENTAL=y"
  3. depends on EXPERIMENTAL=n
  4. config FIREWIRE
  5. tristate "IEEE 1394 (FireWire) support (JUJU alternative stack, experimental)"
  6. depends on EXPERIMENTAL
  7. select CRC_ITU_T
  8. help
  9. IEEE 1394 describes a high performance serial bus, which is also
  10. known as FireWire(tm) or i.Link(tm) and is used for connecting all
  11. sorts of devices (most notably digital video cameras) to your
  12. computer.
  13. If you have FireWire hardware and want to use it, say Y here. This
  14. is the core support only, you will also need to select a driver for
  15. your IEEE 1394 adapter.
  16. To compile this driver as a module, say M here: the module will be
  17. called fw-core.
  18. This is the "JUJU" FireWire stack, an alternative implementation
  19. designed for robustness and simplicity. You can build either this
  20. stack, or the classic stack (the ieee1394 driver, ohci1394 etc.)
  21. or both.
  22. config FIREWIRE_OHCI
  23. tristate "Support for OHCI FireWire host controllers"
  24. depends on PCI && FIREWIRE
  25. help
  26. Enable this driver if you have a FireWire controller based
  27. on the OHCI specification. For all practical purposes, this
  28. is the only chipset in use, so say Y here.
  29. To compile this driver as a module, say M here: The module will be
  30. called fw-ohci.
  31. If you also build ohci1394 of the classic IEEE 1394 driver stack,
  32. blacklist either ohci1394 or fw-ohci to let hotplug load the desired
  33. driver.
  34. config FIREWIRE_SBP2
  35. tristate "Support for storage devices (SBP-2 protocol driver)"
  36. depends on FIREWIRE && SCSI
  37. help
  38. This option enables you to use SBP-2 devices connected to a
  39. FireWire bus. SBP-2 devices include storage devices like
  40. harddisks and DVD drives, also some other FireWire devices
  41. like scanners.
  42. To compile this driver as a module, say M here: The module will be
  43. called fw-sbp2.
  44. You should also enable support for disks, CD-ROMs, etc. in the SCSI
  45. configuration section.
  46. If you also build sbp2 of the classic IEEE 1394 driver stack,
  47. blacklist either sbp2 or fw-sbp2 to let hotplug load the desired
  48. driver.