1# 2# QLogic network device configuration 3# 4 5config NET_VENDOR_QLOGIC 6 bool "QLogic 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 and read the Ethernet-HOWTO, available from 12 <http://www.tldp.org/docs.html#howto>. 13 14 Note that the answer to this question doesn't directly affect the 15 kernel: saying N will just cause the configurator to skip all 16 the questions about QLogic cards. If you say Y, you will be asked for 17 your specific card in the following questions. 18 19if NET_VENDOR_QLOGIC 20 21config QLA3XXX 22 tristate "QLogic QLA3XXX Network Driver Support" 23 depends on PCI 24 ---help--- 25 This driver supports QLogic ISP3XXX gigabit Ethernet cards. 26 27 To compile this driver as a module, choose M here: the module 28 will be called qla3xxx. 29 30config QLCNIC 31 tristate "QLOGIC QLCNIC 1/10Gb Converged Ethernet NIC Support" 32 depends on PCI 33 select FW_LOADER 34 ---help--- 35 This driver supports QLogic QLE8240 and QLE8242 Converged Ethernet 36 devices. 37 38config QLCNIC_SRIOV 39 bool "QLOGIC QLCNIC 83XX family SR-IOV Support" 40 depends on QLCNIC && PCI_IOV 41 default y 42 ---help--- 43 This configuration parameter enables Single Root Input Output 44 Virtualization support for QLE83XX Converged Ethernet devices. 45 This allows for virtual function acceleration in virtualized 46 environments. 47 48config QLCNIC_DCB 49 bool "QLOGIC QLCNIC 82XX and 83XX family DCB Support" 50 depends on QLCNIC && DCB 51 default y 52 ---help--- 53 This configuration parameter enables DCB support in QLE83XX 54 and QLE82XX Converged Ethernet devices. This allows for DCB 55 get operations support through rtNetlink interface. Only CEE 56 mode of DCB is supported. PG and PFC values are related only 57 to Tx. 58 59config QLCNIC_VXLAN 60 bool "Virtual eXtensible Local Area Network (VXLAN) offload support" 61 default n 62 depends on QLCNIC && VXLAN && !(QLCNIC=y && VXLAN=m) 63 ---help--- 64 This enables hardware offload support for VXLAN protocol over QLogic's 65 84XX series adapters. 66 Say Y here if you want to enable hardware offload support for 67 Virtual eXtensible Local Area Network (VXLAN) in the driver. 68 69config QLCNIC_HWMON 70 bool "QLOGIC QLCNIC 82XX and 83XX family HWMON support" 71 depends on QLCNIC && HWMON && !(QLCNIC=y && HWMON=m) 72 default y 73 ---help--- 74 This configuration parameter can be used to read the 75 board temperature in Converged Ethernet devices 76 supported by qlcnic. 77 78 This data is available via the hwmon sysfs interface. 79 80config QLGE 81 tristate "QLogic QLGE 10Gb Ethernet Driver Support" 82 depends on PCI 83 ---help--- 84 This driver supports QLogic ISP8XXX 10Gb Ethernet cards. 85 86 To compile this driver as a module, choose M here: the module 87 will be called qlge. 88 89config NETXEN_NIC 90 tristate "NetXen Multi port (1/10) Gigabit Ethernet NIC" 91 depends on PCI 92 select FW_LOADER 93 ---help--- 94 This enables the support for NetXen's Gigabit Ethernet card. 95 96endif # NET_VENDOR_QLOGIC 97