Kconfig 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. menu "Fusion MPT device support"
  2. config FUSION
  3. tristate "Fusion MPT (base + ScsiHost) drivers"
  4. depends on PCI && SCSI
  5. ---help---
  6. LSI Logic Fusion(TM) Message Passing Technology (MPT) device support
  7. provides high performance SCSI host initiator, and LAN [1] interface
  8. services to a host system. The Fusion architecture is capable of
  9. duplexing these protocols on high-speed Fibre Channel
  10. (up to 2 GHz x 2 ports = 4 GHz) and parallel SCSI (up to Ultra-320)
  11. physical medium.
  12. [1] LAN is not supported on parallel SCSI medium.
  13. config FUSION_MAX_SGE
  14. int "Maximum number of scatter gather entries"
  15. depends on FUSION
  16. default "40"
  17. help
  18. This option allows you to specify the maximum number of scatter-
  19. gather entries per I/O. The driver defaults to 40, a reasonable number
  20. for most systems. However, the user may increase this up to 128.
  21. Increasing this parameter will require significantly more memory
  22. on a per controller instance. Increasing the parameter is not
  23. necessary (or recommended) unless the user will be running
  24. large I/O's via the raw interface.
  25. config FUSION_CTL
  26. tristate "Fusion MPT misc device (ioctl) driver"
  27. depends on FUSION
  28. ---help---
  29. The Fusion MPT misc device driver provides specialized control
  30. of MPT adapters via system ioctl calls. Use of ioctl calls to
  31. the MPT driver requires that you create and use a misc device
  32. node ala:
  33. mknod /dev/mptctl c 10 240
  34. One use of this ioctl interface is to perform an upgrade (reflash)
  35. of the MPT adapter firmware. Refer to readme file(s) distributed
  36. with the Fusion MPT linux driver for additional details.
  37. If enabled by saying M to this, a driver named: mptctl
  38. will be compiled.
  39. If unsure whether you really want or need this, say N.
  40. config FUSION_LAN
  41. tristate "Fusion MPT LAN driver"
  42. depends on FUSION && NET_FC
  43. ---help---
  44. This module supports LAN IP traffic over Fibre Channel port(s)
  45. on Fusion MPT compatible hardware (LSIFC9xx chips).
  46. The physical interface used is defined in RFC 2625.
  47. Please refer to that document for details.
  48. Installing this driver requires the knowledge to configure and
  49. activate a new network interface, "fc0", using standard Linux tools.
  50. If enabled by saying M to this, a driver named: mptlan
  51. will be compiled.
  52. If unsure whether you really want or need this, say N.
  53. endmenu