Kconfig 2.6 KB

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