Kconfig 5.0 KB

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