Kconfig 6.8 KB

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