Kconfig 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. ---help---
  10. SCSI HOST support for a parallel SCSI host adapters.
  11. List of supported controllers:
  12. LSI53C1020
  13. LSI53C1020A
  14. LSI53C1030
  15. LSI53C1035
  16. config FUSION_FC
  17. tristate "Fusion MPT ScsiHost drivers for FC"
  18. depends on PCI && SCSI
  19. select FUSION
  20. select SCSI_FC_ATTRS
  21. ---help---
  22. SCSI HOST support for a Fiber Channel host adapters.
  23. List of supported controllers:
  24. LSIFC909
  25. LSIFC919
  26. LSIFC919X
  27. LSIFC929
  28. LSIFC929X
  29. LSIFC929XL
  30. config FUSION_SAS
  31. tristate "Fusion MPT ScsiHost drivers for SAS"
  32. depends on PCI && SCSI
  33. select FUSION
  34. select SCSI_SAS_ATTRS
  35. ---help---
  36. SCSI HOST support for a SAS host adapters.
  37. List of supported controllers:
  38. LSISAS1064
  39. LSISAS1066
  40. LSISAS1068
  41. LSISAS1064E
  42. LSISAS1066E
  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
  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