brintos

brintos / linux-shallow public Read only

0
0
Text · 4.1 KiB · c931ec8 Raw
141 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# Chelsio device configuration4#5 6config NET_VENDOR_CHELSIO7	bool "Chelsio devices"8	default y9	depends on PCI10	help11	  If you have a network (Ethernet) card belonging to this class, say Y.12 13	  Note that the answer to this question doesn't directly affect the14	  kernel: saying N will just cause the configurator to skip all15	  the questions about Chelsio devices. If you say Y, you will be asked for16	  your specific card in the following questions.17 18if NET_VENDOR_CHELSIO19 20config CHELSIO_T121	tristate "Chelsio 10Gb Ethernet support"22	depends on PCI23	select CRC3224	select MDIO25	help26	  This driver supports Chelsio gigabit and 10-gigabit27	  Ethernet cards. More information about adapter features and28	  performance tuning is in29	  <file:Documentation/networking/device_drivers/ethernet/chelsio/cxgb.rst>.30 31	  For general information about Chelsio and our products, visit32	  our website at <http://www.chelsio.com>.33 34	  For customer support, please visit our customer support page at35	  <http://www.chelsio.com/support.html>.36 37	  Please send feedback to <linux-bugs@chelsio.com>.38 39	  To compile this driver as a module, choose M here: the module40	  will be called cxgb.41 42config CHELSIO_T1_1G43	bool "Chelsio gigabit Ethernet support"44	depends on CHELSIO_T145	help46	  Enables support for Chelsio's gigabit Ethernet PCI cards.  If you47	  are using only 10G cards say 'N' here.48 49config CHELSIO_T350	tristate "Chelsio Communications T3 10Gb Ethernet support"51	depends on PCI && INET52	select FW_LOADER53	select MDIO54	help55	  This driver supports Chelsio T3-based gigabit and 10Gb Ethernet56	  adapters.57 58	  For general information about Chelsio and our products, visit59	  our website at <http://www.chelsio.com>.60 61	  For customer support, please visit our customer support page at62	  <http://www.chelsio.com/support.html>.63 64	  Please send feedback to <linux-bugs@chelsio.com>.65 66	  To compile this driver as a module, choose M here: the module67	  will be called cxgb3.68 69config CHELSIO_T470	tristate "Chelsio Communications T4/T5/T6 Ethernet support"71	depends on PCI && (IPV6 || IPV6=n) && (TLS || TLS=n)72	depends on PTP_1588_CLOCK_OPTIONAL73	select FW_LOADER74	select MDIO75	select ZLIB_DEFLATE76	help77	  This driver supports Chelsio T4, T5 & T6 based gigabit, 10Gb Ethernet78	  adapter and T5/T6 based 40Gb and T6 based 25Gb, 50Gb and 100Gb79	  Ethernet adapters.80 81	  For general information about Chelsio and our products, visit82	  our website at <http://www.chelsio.com>.83 84	  For customer support, please visit our customer support page at85	  <http://www.chelsio.com/support.html>.86 87	  Please send feedback to <linux-bugs@chelsio.com>.88 89	  To compile this driver as a module choose M here; the module90	  will be called cxgb4.91 92config CHELSIO_T4_DCB93	bool "Data Center Bridging (DCB) Support for Chelsio T4/T5/T6 cards"94	default n95	depends on CHELSIO_T4 && DCB96	help97	  Enable DCB support through rtNetlink interface.98	  Say Y here if you want to enable Data Center Bridging (DCB) support99	  in the driver.100 101	  If unsure, say N.102 103config CHELSIO_T4_FCOE104	bool "Fibre Channel over Ethernet (FCoE) Support for Chelsio T5 cards"105	default n106	depends on CHELSIO_T4 && CHELSIO_T4_DCB && FCOE107	help108	  Enable FCoE offload features.109	  Say Y here if you want to enable Fibre Channel over Ethernet (FCoE) support110	  in the driver.111 112	  If unsure, say N.113 114config CHELSIO_T4VF115	tristate "Chelsio Communications T4/T5/T6 Virtual Function Ethernet support"116	depends on PCI117	help118	  This driver supports Chelsio T4, T5 & T6 based gigabit, 10Gb Ethernet119	  adapters and T5/T6 based 40Gb and T6 based 25Gb, 50Gb and 100Gb120	  Ethernet adapters with PCI-E SR-IOV Virtual Functions.121 122	  For general information about Chelsio and our products, visit123	  our website at <http://www.chelsio.com>.124 125	  For customer support, please visit our customer support page at126	  <http://www.chelsio.com/support.html>.127 128	  Please send feedback to <linux-bugs@chelsio.com>.129 130	  To compile this driver as a module choose M here; the module131	  will be called cxgb4vf.132 133config CHELSIO_LIB134	tristate135	help136	Common library for Chelsio drivers.137 138source "drivers/net/ethernet/chelsio/inline_crypto/Kconfig"139 140endif # NET_VENDOR_CHELSIO141