Kconfig 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. menuconfig FUSION
  2. bool "Fusion MPT device support"
  3. depends on PCI
  4. ---help---
  5. Say Y here to get to see options for Fusion Message
  6. Passing Technology (MPT) drivers.
  7. This option alone does not add any kernel code.
  8. If you say N, all options in this submenu will be skipped and disabled.
  9. if FUSION
  10. config FUSION_SPI
  11. tristate "Fusion MPT ScsiHost drivers for SPI"
  12. depends on PCI && SCSI
  13. select SCSI_SPI_ATTRS
  14. ---help---
  15. SCSI HOST support for a parallel SCSI host adapters.
  16. List of supported controllers:
  17. LSI53C1020
  18. LSI53C1020A
  19. LSI53C1030
  20. LSI53C1035
  21. ATTO UL4D
  22. config FUSION_FC
  23. tristate "Fusion MPT ScsiHost drivers for FC"
  24. depends on PCI && SCSI
  25. depends on SCSI_FC_ATTRS
  26. ---help---
  27. SCSI HOST support for a Fiber Channel host adapters.
  28. List of supported controllers:
  29. LSIFC909
  30. LSIFC919
  31. LSIFC919X
  32. LSIFC929
  33. LSIFC929X
  34. LSIFC929XL
  35. LSIFC949X
  36. LSIFC949E
  37. Brocade FC 410/420
  38. config FUSION_SAS
  39. tristate "Fusion MPT ScsiHost drivers for SAS"
  40. depends on PCI && SCSI
  41. select SCSI_SAS_ATTRS
  42. ---help---
  43. SCSI HOST support for a SAS host adapters.
  44. List of supported controllers:
  45. LSISAS1064
  46. LSISAS1068
  47. LSISAS1064E
  48. LSISAS1068E
  49. LSISAS1078
  50. config FUSION_MAX_SGE
  51. int "Maximum number of scatter gather entries (16 - 128)"
  52. default "128"
  53. range 16 128
  54. help
  55. This option allows you to specify the maximum number of scatter-
  56. gather entries per I/O. The driver default is 128, which matches
  57. SCSI_MAX_PHYS_SEGMENTS. However, it may decreased down to 16.
  58. Decreasing this parameter will reduce memory requirements
  59. on a per controller instance.
  60. config FUSION_CTL
  61. tristate "Fusion MPT misc device (ioctl) driver"
  62. depends on FUSION_SPI || FUSION_FC || FUSION_SAS
  63. ---help---
  64. The Fusion MPT misc device driver provides specialized control
  65. of MPT adapters via system ioctl calls. Use of ioctl calls to
  66. the MPT driver requires that you create and use a misc device
  67. node ala:
  68. mknod /dev/mptctl c 10 240
  69. One use of this ioctl interface is to perform an upgrade (reflash)
  70. of the MPT adapter firmware. Refer to readme file(s) distributed
  71. with the Fusion MPT linux driver for additional details.
  72. If enabled by saying M to this, a driver named: mptctl
  73. will be compiled.
  74. If unsure whether you really want or need this, say N.
  75. config FUSION_LAN
  76. tristate "Fusion MPT LAN driver"
  77. depends on FUSION_FC && NET_FC
  78. ---help---
  79. This module supports LAN IP traffic over Fibre Channel port(s)
  80. on Fusion MPT compatible hardware (LSIFC9xx chips).
  81. The physical interface used is defined in RFC 2625.
  82. Please refer to that document for details.
  83. Installing this driver requires the knowledge to configure and
  84. activate a new network interface, "fc0", using standard Linux tools.
  85. If enabled by saying M to this, a driver named: mptlan
  86. will be compiled.
  87. If unsure whether you really want or need this, say N.
  88. config FUSION_LOGGING
  89. bool "Fusion MPT logging facility"
  90. ---help---
  91. This turns on a logging facility that can be used to debug a number
  92. of Fusion MPT related problems.
  93. The debug level can be programmed on the fly via SysFS (hex values)
  94. echo [level] > /sys/class/scsi_host/host#/debug_level
  95. There are various debug levels that can be found in the source:
  96. file:drivers/message/fusion/mptdebug.h
  97. endif # FUSION