Kconfig 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. menu "Fusion MPT device support"
  2. depends on PCI
  3. config FUSION
  4. bool
  5. default n
  6. config FUSION_SPI
  7. tristate "Fusion MPT ScsiHost drivers for SPI"
  8. depends on PCI && SCSI
  9. select FUSION
  10. select SCSI_SPI_ATTRS
  11. ---help---
  12. SCSI HOST support for a parallel SCSI host adapters.
  13. List of supported controllers:
  14. LSI53C1020
  15. LSI53C1020A
  16. LSI53C1030
  17. LSI53C1035
  18. config FUSION_FC
  19. tristate "Fusion MPT ScsiHost drivers for FC"
  20. depends on PCI && SCSI
  21. select FUSION
  22. select SCSI_FC_ATTRS
  23. ---help---
  24. SCSI HOST support for a Fiber Channel host adapters.
  25. List of supported controllers:
  26. LSIFC909
  27. LSIFC919
  28. LSIFC919X
  29. LSIFC929
  30. LSIFC929X
  31. LSIFC929XL
  32. config FUSION_SAS
  33. tristate "Fusion MPT ScsiHost drivers for SAS"
  34. depends on PCI && SCSI
  35. select FUSION
  36. select SCSI_SAS_ATTRS
  37. ---help---
  38. SCSI HOST support for a SAS host adapters.
  39. List of supported controllers:
  40. LSISAS1064
  41. LSISAS1068
  42. LSISAS1064E
  43. LSISAS1068E
  44. config FUSION_MAX_SGE
  45. int "Maximum number of scatter gather entries (16 - 128)"
  46. depends on FUSION
  47. default "128"
  48. range 16 128
  49. help
  50. This option allows you to specify the maximum number of scatter-
  51. gather entries per I/O. The driver default is 128, which matches
  52. SCSI_MAX_PHYS_SEGMENTS. However, it may decreased down to 16.
  53. Decreasing this parameter will reduce memory requirements
  54. on a per controller instance.
  55. config FUSION_CTL
  56. tristate "Fusion MPT misc device (ioctl) driver"
  57. depends on FUSION_SPI || FUSION_FC || FUSION_SAS
  58. ---help---
  59. The Fusion MPT misc device driver provides specialized control
  60. of MPT adapters via system ioctl calls. Use of ioctl calls to
  61. the MPT driver requires that you create and use a misc device
  62. node ala:
  63. mknod /dev/mptctl c 10 240
  64. One use of this ioctl interface is to perform an upgrade (reflash)
  65. of the MPT adapter firmware. Refer to readme file(s) distributed
  66. with the Fusion MPT linux driver for additional details.
  67. If enabled by saying M to this, a driver named: mptctl
  68. will be compiled.
  69. If unsure whether you really want or need this, say N.
  70. config FUSION_LAN
  71. tristate "Fusion MPT LAN driver"
  72. depends on FUSION_FC && NET_FC
  73. ---help---
  74. This module supports LAN IP traffic over Fibre Channel port(s)
  75. on Fusion MPT compatible hardware (LSIFC9xx chips).
  76. The physical interface used is defined in RFC 2625.
  77. Please refer to that document for details.
  78. Installing this driver requires the knowledge to configure and
  79. activate a new network interface, "fc0", using standard Linux tools.
  80. If enabled by saying M to this, a driver named: mptlan
  81. will be compiled.
  82. If unsure whether you really want or need this, say N.
  83. endmenu