Kconfig 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. comment "You can enable one or both FireWire driver stacks."
  2. comment "See the help texts for more information."
  3. config FIREWIRE
  4. tristate "FireWire driver stack"
  5. select CRC_ITU_T
  6. help
  7. This is the new-generation IEEE 1394 (FireWire) driver stack
  8. a.k.a. Juju, a new implementation designed for robustness and
  9. simplicity.
  10. See http://ieee1394.wiki.kernel.org/index.php/Juju_Migration
  11. for information about migration from the older Linux 1394 stack
  12. to the new driver stack.
  13. To compile this driver as a module, say M here: the module will be
  14. called firewire-core.
  15. This module functionally replaces ieee1394, raw1394, and video1394.
  16. To access it from application programs, you generally need at least
  17. libraw1394 v2. IIDC/DCAM applications need libdc1394 v2.
  18. No libraries are required to access storage devices through the
  19. firewire-sbp2 driver.
  20. NOTE:
  21. FireWire audio devices currently require the old drivers (ieee1394,
  22. ohci1394, raw1394).
  23. config FIREWIRE_OHCI
  24. tristate "OHCI-1394 controllers"
  25. depends on PCI && FIREWIRE
  26. help
  27. Enable this driver if you have a FireWire controller based
  28. on the OHCI specification. For all practical purposes, this
  29. is the only chipset in use, so say Y here.
  30. To compile this driver as a module, say M here: The module will be
  31. called firewire-ohci. It replaces ohci1394 of the classic IEEE 1394
  32. stack.
  33. NOTE:
  34. If you want to install firewire-ohci and ohci1394 together, you
  35. should configure them only as modules and blacklist the driver(s)
  36. which you don't want to have auto-loaded. Add either
  37. blacklist firewire-ohci
  38. or
  39. blacklist ohci1394
  40. blacklist video1394
  41. blacklist dv1394
  42. to /etc/modprobe.conf or /etc/modprobe.d/* and update modprobe.conf
  43. depending on your distribution.
  44. config FIREWIRE_OHCI_DEBUG
  45. bool
  46. depends on FIREWIRE_OHCI
  47. default y
  48. config FIREWIRE_SBP2
  49. tristate "Storage devices (SBP-2 protocol)"
  50. depends on FIREWIRE && SCSI
  51. help
  52. This option enables you to use SBP-2 devices connected to a
  53. FireWire bus. SBP-2 devices include storage devices like
  54. harddisks and DVD drives, also some other FireWire devices
  55. like scanners.
  56. To compile this driver as a module, say M here: The module will be
  57. called firewire-sbp2. It replaces sbp2 of the classic IEEE 1394
  58. stack.
  59. You should also enable support for disks, CD-ROMs, etc. in the SCSI
  60. configuration section.
  61. config FIREWIRE_NET
  62. tristate "IP networking over 1394 (EXPERIMENTAL)"
  63. depends on FIREWIRE && INET && EXPERIMENTAL
  64. help
  65. This enables IPv4 over IEEE 1394, providing IP connectivity with
  66. other implementations of RFC 2734 as found on several operating
  67. systems. Multicast support is currently limited.
  68. NOTE, this driver is not stable yet!
  69. To compile this driver as a module, say M here: The module will be
  70. called firewire-net. It replaces eth1394 of the classic IEEE 1394
  71. stack.