Kconfig 5.5 KB

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