Kconfig 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. menu "IEEE 1394 (FireWire) support"
  2. depends on PCI || BROKEN
  3. source "drivers/firewire/Kconfig"
  4. config IEEE1394
  5. tristate "Stable FireWire stack"
  6. depends on PCI || BROKEN
  7. help
  8. IEEE 1394 describes a high performance serial bus, which is also
  9. known as FireWire(tm) or i.Link(tm) and is used for connecting all
  10. sorts of devices (most notably digital video cameras) to your
  11. computer.
  12. If you have FireWire hardware and want to use it, say Y here. This
  13. is the core support only, you will also need to select a driver for
  14. your IEEE 1394 adapter.
  15. To compile this driver as a module, say M here: the
  16. module will be called ieee1394.
  17. config IEEE1394_OHCI1394
  18. tristate "OHCI-1394 controllers"
  19. depends on PCI && IEEE1394
  20. help
  21. Enable this driver if you have an IEEE 1394 controller based on the
  22. OHCI-1394 specification. The current driver is only tested with OHCI
  23. chipsets made by Texas Instruments and NEC. Most third-party vendors
  24. use one of these chipsets. It should work with any OHCI-1394
  25. compliant card, however.
  26. To compile this driver as a module, say M here: the
  27. module will be called ohci1394.
  28. NOTE:
  29. You should only build either ohci1394 or the new firewire-ohci driver,
  30. but not both. If you nevertheless want to install both, you should
  31. configure them only as modules and blacklist the driver(s) which you
  32. don't want to have auto-loaded. Add either
  33. blacklist firewire-ohci
  34. or
  35. blacklist ohci1394
  36. blacklist video1394
  37. blacklist dv1394
  38. to /etc/modprobe.conf or /etc/modprobe.d/* and update modprobe.conf
  39. depending on your distribution. The latter two modules should be
  40. blacklisted together with ohci1394 because they depend on ohci1394.
  41. If you have an old modprobe which doesn't implement the blacklist
  42. directive, use "install modulename /bin/true" for the modules to be
  43. blacklisted.
  44. comment "PCILynx controller requires I2C"
  45. depends on IEEE1394 && I2C=n
  46. config IEEE1394_PCILYNX
  47. tristate "PCILynx controller"
  48. depends on PCI && IEEE1394 && I2C
  49. select I2C_ALGOBIT
  50. help
  51. Say Y here if you have an IEEE-1394 controller with the Texas
  52. Instruments PCILynx chip. Note: this driver is written for revision
  53. 2 of this chip and may not work with revision 0.
  54. To compile this driver as a module, say M here: the
  55. module will be called pcilynx.
  56. Only some old and now very rare PCI and CardBus cards and
  57. PowerMacs G3 B&W contain the PCILynx controller. Therefore
  58. almost everybody can say N here.
  59. comment "SBP-2 support (for storage devices) requires SCSI"
  60. depends on IEEE1394 && SCSI=n
  61. config IEEE1394_SBP2
  62. tristate "Storage devices (SBP-2 protocol)"
  63. depends on IEEE1394 && SCSI
  64. help
  65. This option enables you to use SBP-2 devices connected to an IEEE
  66. 1394 bus. SBP-2 devices include storage devices like harddisks and
  67. DVD drives, also some other FireWire devices like scanners.
  68. You should also enable support for disks, CD-ROMs, etc. in the SCSI
  69. configuration section.
  70. config IEEE1394_SBP2_PHYS_DMA
  71. bool "Enable replacement for physical DMA in SBP2"
  72. depends on IEEE1394_SBP2 && VIRT_TO_BUS && EXPERIMENTAL
  73. help
  74. This builds sbp2 for use with non-OHCI host adapters which do not
  75. support physical DMA or for when ohci1394 is run with phys_dma=0.
  76. Physical DMA is data movement without assistance of the drivers'
  77. interrupt handlers. This option includes the interrupt handlers
  78. that are required in absence of this hardware feature.
  79. This option is buggy and currently broken on some architectures.
  80. If unsure, say N.
  81. config IEEE1394_ETH1394_ROM_ENTRY
  82. depends on IEEE1394
  83. bool
  84. default n
  85. config IEEE1394_ETH1394
  86. tristate "IP over 1394"
  87. depends on IEEE1394 && EXPERIMENTAL && INET
  88. select IEEE1394_ETH1394_ROM_ENTRY
  89. help
  90. This driver implements a functional majority of RFC 2734: IPv4 over
  91. 1394. It will provide IP connectivity with implementations of RFC
  92. 2734 found on other operating systems. It will not communicate with
  93. older versions of this driver found in stock kernels prior to 2.6.3.
  94. This driver is still considered experimental. It does not yet support
  95. MCAP, therefore multicast support is significantly limited.
  96. The module is called eth1394 although it does not emulate Ethernet.
  97. config IEEE1394_RAWIO
  98. tristate "raw1394 userspace interface"
  99. depends on IEEE1394
  100. help
  101. This option adds support for the raw1394 device file which enables
  102. direct communication of user programs with IEEE 1394 devices
  103. (isochronous and asynchronous). Almost all application programs
  104. which access FireWire require this option.
  105. To compile this driver as a module, say M here: the module will be
  106. called raw1394.
  107. config IEEE1394_VIDEO1394
  108. tristate "video1394 userspace interface"
  109. depends on IEEE1394 && IEEE1394_OHCI1394
  110. help
  111. This option adds support for the video1394 device files which enable
  112. isochronous communication of user programs with IEEE 1394 devices,
  113. especially video capture or export. This interface is used by all
  114. libdc1394 based programs and by several other programs, in addition to
  115. the raw1394 interface. It is generally not required for DV capture.
  116. To compile this driver as a module, say M here: the module will be
  117. called video1394.
  118. config IEEE1394_DV1394
  119. tristate "dv1394 userspace interface (deprecated)"
  120. depends on IEEE1394 && IEEE1394_OHCI1394
  121. help
  122. The dv1394 driver is unsupported and may be removed from Linux in a
  123. future release. Its functionality is now provided by raw1394 together
  124. with libraries such as libiec61883.
  125. config IEEE1394_VERBOSEDEBUG
  126. bool "Excessive debugging output"
  127. depends on IEEE1394
  128. help
  129. If you say Y here, you will get very verbose debugging logs from the
  130. ieee1394 drivers, including sent and received packet headers. This
  131. will quickly result in large amounts of data sent to the system log.
  132. Say Y if you really need the debugging output. Everyone else says N.
  133. endmenu