Kconfig 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Chelsio device configuration
  4. #
  5. config NET_VENDOR_CHELSIO
  6. bool "Chelsio devices"
  7. default y
  8. depends on PCI
  9. help
  10. If you have a network (Ethernet) card belonging to this class, say Y.
  11. Note that the answer to this question doesn't directly affect the
  12. kernel: saying N will just cause the configurator to skip all
  13. the questions about Chelsio devices. If you say Y, you will be asked for
  14. your specific card in the following questions.
  15. if NET_VENDOR_CHELSIO
  16. config CHELSIO_T1
  17. tristate "Chelsio 10Gb Ethernet support"
  18. depends on PCI
  19. select CRC32
  20. select MDIO
  21. help
  22. This driver supports Chelsio gigabit and 10-gigabit
  23. Ethernet cards. More information about adapter features and
  24. performance tuning is in
  25. <file:Documentation/networking/device_drivers/ethernet/chelsio/cxgb.rst>.
  26. For general information about Chelsio and our products, visit
  27. our website at <http://www.chelsio.com>.
  28. For customer support, please visit our customer support page at
  29. <http://www.chelsio.com/support.html>.
  30. Please send feedback to <[email protected]>.
  31. To compile this driver as a module, choose M here: the module
  32. will be called cxgb.
  33. config CHELSIO_T1_1G
  34. bool "Chelsio gigabit Ethernet support"
  35. depends on CHELSIO_T1
  36. help
  37. Enables support for Chelsio's gigabit Ethernet PCI cards. If you
  38. are using only 10G cards say 'N' here.
  39. config CHELSIO_T3
  40. tristate "Chelsio Communications T3 10Gb Ethernet support"
  41. depends on PCI && INET
  42. select FW_LOADER
  43. select MDIO
  44. help
  45. This driver supports Chelsio T3-based gigabit and 10Gb Ethernet
  46. adapters.
  47. For general information about Chelsio and our products, visit
  48. our website at <http://www.chelsio.com>.
  49. For customer support, please visit our customer support page at
  50. <http://www.chelsio.com/support.html>.
  51. Please send feedback to <[email protected]>.
  52. To compile this driver as a module, choose M here: the module
  53. will be called cxgb3.
  54. config CHELSIO_T4
  55. tristate "Chelsio Communications T4/T5/T6 Ethernet support"
  56. depends on PCI && (IPV6 || IPV6=n) && (TLS || TLS=n)
  57. depends on PTP_1588_CLOCK_OPTIONAL
  58. select FW_LOADER
  59. select MDIO
  60. select ZLIB_DEFLATE
  61. help
  62. This driver supports Chelsio T4, T5 & T6 based gigabit, 10Gb Ethernet
  63. adapter and T5/T6 based 40Gb and T6 based 25Gb, 50Gb and 100Gb
  64. Ethernet adapters.
  65. For general information about Chelsio and our products, visit
  66. our website at <http://www.chelsio.com>.
  67. For customer support, please visit our customer support page at
  68. <http://www.chelsio.com/support.html>.
  69. Please send feedback to <[email protected]>.
  70. To compile this driver as a module choose M here; the module
  71. will be called cxgb4.
  72. config CHELSIO_T4_DCB
  73. bool "Data Center Bridging (DCB) Support for Chelsio T4/T5/T6 cards"
  74. default n
  75. depends on CHELSIO_T4 && DCB
  76. help
  77. Enable DCB support through rtNetlink interface.
  78. Say Y here if you want to enable Data Center Bridging (DCB) support
  79. in the driver.
  80. If unsure, say N.
  81. config CHELSIO_T4_FCOE
  82. bool "Fibre Channel over Ethernet (FCoE) Support for Chelsio T5 cards"
  83. default n
  84. depends on CHELSIO_T4 && CHELSIO_T4_DCB && FCOE
  85. help
  86. Enable FCoE offload features.
  87. Say Y here if you want to enable Fibre Channel over Ethernet (FCoE) support
  88. in the driver.
  89. If unsure, say N.
  90. config CHELSIO_T4VF
  91. tristate "Chelsio Communications T4/T5/T6 Virtual Function Ethernet support"
  92. depends on PCI
  93. help
  94. This driver supports Chelsio T4, T5 & T6 based gigabit, 10Gb Ethernet
  95. adapters and T5/T6 based 40Gb and T6 based 25Gb, 50Gb and 100Gb
  96. Ethernet adapters with PCI-E SR-IOV Virtual Functions.
  97. For general information about Chelsio and our products, visit
  98. our website at <http://www.chelsio.com>.
  99. For customer support, please visit our customer support page at
  100. <http://www.chelsio.com/support.html>.
  101. Please send feedback to <[email protected]>.
  102. To compile this driver as a module choose M here; the module
  103. will be called cxgb4vf.
  104. config CHELSIO_LIB
  105. tristate
  106. help
  107. Common library for Chelsio drivers.
  108. source "drivers/net/ethernet/chelsio/inline_crypto/Kconfig"
  109. endif # NET_VENDOR_CHELSIO