Kconfig 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. # -*- shell-script -*-
  2. menu "IEEE 1394 (FireWire) support"
  3. config IEEE1394
  4. tristate "IEEE 1394 (FireWire) support"
  5. depends on PCI || BROKEN
  6. help
  7. IEEE 1394 describes a high performance serial bus, which is also
  8. known as FireWire(tm) or i.Link(tm) and is used for connecting all
  9. sorts of devices (most notably digital video cameras) to your
  10. computer.
  11. If you have FireWire hardware and want to use it, say Y here. This
  12. is the core support only, you will also need to select a driver for
  13. your IEEE 1394 adapter.
  14. To compile this driver as a module, say M here: the
  15. module will be called ieee1394.
  16. comment "Subsystem Options"
  17. depends on IEEE1394
  18. config IEEE1394_VERBOSEDEBUG
  19. bool "Excessive debugging output"
  20. depends on IEEE1394
  21. help
  22. If you say Y here, you will get very verbose debugging logs from
  23. the subsystem which includes a dump of the header of every sent
  24. and received packet. This can amount to a high amount of data
  25. collected in a very short time which is usually also saved to
  26. disk by the system logging daemons.
  27. Say Y if you really want or need the debugging output, everyone
  28. else says N.
  29. config IEEE1394_EXTRA_CONFIG_ROMS
  30. bool "Build in extra config rom entries for certain functionality"
  31. depends on IEEE1394
  32. help
  33. Some IEEE1394 functionality depends on extra config rom entries
  34. being available in the host adapters CSR. These options will
  35. allow you to choose which ones.
  36. config IEEE1394_CONFIG_ROM_IP1394
  37. bool "IP-1394 Entry"
  38. depends on IEEE1394_EXTRA_CONFIG_ROMS && IEEE1394
  39. help
  40. Adds an entry for using IP-over-1394. If you want to use your
  41. IEEE1394 bus as a network for IP systems (including interacting
  42. with MacOSX and WinXP IP-over-1394), enable this option and the
  43. eth1394 option below.
  44. comment "Device Drivers"
  45. depends on IEEE1394
  46. comment "Texas Instruments PCILynx requires I2C"
  47. depends on IEEE1394 && I2C=n
  48. config IEEE1394_PCILYNX
  49. tristate "Texas Instruments PCILynx support"
  50. depends on PCI && IEEE1394 && I2C
  51. select I2C_ALGOBIT
  52. help
  53. Say Y here if you have an IEEE-1394 controller with the Texas
  54. Instruments PCILynx chip. Note: this driver is written for revision
  55. 2 of this chip and may not work with revision 0.
  56. To compile this driver as a module, say M here: the
  57. module will be called pcilynx.
  58. config IEEE1394_OHCI1394
  59. tristate "OHCI-1394 support"
  60. depends on PCI && IEEE1394
  61. help
  62. Enable this driver if you have an IEEE 1394 controller based on the
  63. OHCI-1394 specification. The current driver is only tested with OHCI
  64. chipsets made by Texas Instruments and NEC. Most third-party vendors
  65. use one of these chipsets. It should work with any OHCI-1394
  66. compliant card, however.
  67. To compile this driver as a module, say M here: the
  68. module will be called ohci1394.
  69. comment "Protocol Drivers"
  70. depends on IEEE1394
  71. config IEEE1394_VIDEO1394
  72. tristate "OHCI-1394 Video support"
  73. depends on IEEE1394 && IEEE1394_OHCI1394
  74. help
  75. This option enables video device usage for OHCI-1394 cards. Enable
  76. this option only if you have an IEEE 1394 video device connected to
  77. an OHCI-1394 card.
  78. comment "SBP-2 support (for storage devices) requires SCSI"
  79. depends on IEEE1394 && SCSI=n
  80. config IEEE1394_SBP2
  81. tristate "SBP-2 support (Harddisks etc.)"
  82. depends on IEEE1394 && SCSI
  83. help
  84. This option enables you to use SBP-2 devices connected to an IEEE
  85. 1394 bus. SBP-2 devices include storage devices like harddisks and
  86. DVD drives, also some other FireWire devices like scanners.
  87. You should also enable support for disks, CD-ROMs, etc. in the SCSI
  88. configuration section.
  89. config IEEE1394_SBP2_PHYS_DMA
  90. bool "Enable replacement for physical DMA in SBP2"
  91. depends on IEEE1394 && IEEE1394_SBP2 && EXPERIMENTAL && (X86_32 || PPC_32)
  92. help
  93. This builds sbp2 for use with non-OHCI host adapters which do not
  94. support physical DMA or for when ohci1394 is run with phys_dma=0.
  95. Physical DMA is data movement without assistance of the drivers'
  96. interrupt handlers. This option includes the interrupt handlers
  97. that are required in absence of this hardware feature.
  98. This option is buggy and currently broken on some architectures.
  99. If unsure, say N.
  100. config IEEE1394_ETH1394
  101. tristate "Ethernet over 1394"
  102. depends on IEEE1394 && EXPERIMENTAL && INET
  103. select IEEE1394_CONFIG_ROM_IP1394
  104. select IEEE1394_EXTRA_CONFIG_ROMS
  105. help
  106. This driver implements a functional majority of RFC 2734: IPv4 over
  107. 1394. It will provide IP connectivity with implementations of RFC
  108. 2734 found on other operating systems. It will not communicate with
  109. older versions of this driver found in stock kernels prior to 2.6.3.
  110. This driver is still considered experimental. It does not yet support
  111. MCAP, therefore multicast support is significantly limited.
  112. config IEEE1394_DV1394
  113. tristate "OHCI-DV I/O support (deprecated)"
  114. depends on IEEE1394 && IEEE1394_OHCI1394
  115. help
  116. The dv1394 driver is unsupported and may be removed from Linux in a
  117. future release. Its functionality is now provided by raw1394 together
  118. with libraries such as libiec61883.
  119. config IEEE1394_RAWIO
  120. tristate "Raw IEEE1394 I/O support"
  121. depends on IEEE1394
  122. help
  123. Say Y here if you want support for the raw device. This is generally
  124. a good idea, so you should say Y here. The raw device enables
  125. direct communication of user programs with the IEEE 1394 bus and
  126. thus with the attached peripherals.
  127. To compile this driver as a module, say M here: the
  128. module will be called raw1394.
  129. endmenu