Kconfig 3.3 KB

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