123 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# QLogic network device configuration4#5 6config NET_VENDOR_QLOGIC7 bool "QLogic 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 QLogic cards. If you say Y, you will be asked for16 your specific card in the following questions.17 18if NET_VENDOR_QLOGIC19 20config QLA3XXX21 tristate "QLogic QLA3XXX Network Driver Support"22 depends on PCI23 help24 This driver supports QLogic ISP3XXX gigabit Ethernet cards.25 26 To compile this driver as a module, choose M here: the module27 will be called qla3xxx.28 29config QLCNIC30 tristate "QLOGIC QLCNIC 1/10Gb Converged Ethernet NIC Support"31 depends on PCI32 select FW_LOADER33 help34 This driver supports QLogic QLE8240 and QLE8242 Converged Ethernet35 devices.36 37config QLCNIC_SRIOV38 bool "QLOGIC QLCNIC 83XX family SR-IOV Support"39 depends on QLCNIC && PCI_IOV40 default y41 help42 This configuration parameter enables Single Root Input Output43 Virtualization support for QLE83XX Converged Ethernet devices.44 This allows for virtual function acceleration in virtualized45 environments.46 47config QLCNIC_DCB48 bool "QLOGIC QLCNIC 82XX and 83XX family DCB Support"49 depends on QLCNIC && DCB50 default y51 help52 This configuration parameter enables DCB support in QLE83XX53 and QLE82XX Converged Ethernet devices. This allows for DCB54 get operations support through rtNetlink interface. Only CEE55 mode of DCB is supported. PG and PFC values are related only56 to Tx.57 58config QLCNIC_HWMON59 bool "QLOGIC QLCNIC 82XX and 83XX family HWMON support"60 depends on QLCNIC && HWMON && !(QLCNIC=y && HWMON=m)61 default y62 help63 This configuration parameter can be used to read the64 board temperature in Converged Ethernet devices65 supported by qlcnic.66 67 This data is available via the hwmon sysfs interface.68 69config NETXEN_NIC70 tristate "NetXen Multi port (1/10) Gigabit Ethernet NIC"71 depends on PCI72 select FW_LOADER73 help74 This enables the support for NetXen's Gigabit Ethernet card.75 76config QED77 tristate "QLogic QED 25/40/100Gb core driver"78 depends on PCI79 select ZLIB_INFLATE80 select CRC881 select CRC3282 select NET_DEVLINK83 help84 This enables the support for Marvell FastLinQ adapters family.85 86config QED_LL287 bool88 89config QED_SRIOV90 bool "QLogic QED 25/40/100Gb SR-IOV support"91 depends on QED && PCI_IOV92 default y93 help94 This configuration parameter enables Single Root Input Output95 Virtualization support for QED devices.96 This allows for virtual function acceleration in virtualized97 environments.98 99config QEDE100 tristate "QLogic QED 25/40/100Gb Ethernet NIC"101 depends on QED102 depends on PTP_1588_CLOCK_OPTIONAL103 help104 This enables the support for Marvell FastLinQ adapters family,105 ethernet driver.106 107config QED_RDMA108 bool109 110config QED_ISCSI111 bool112 113config QED_NVMETCP114 bool115 116config QED_FCOE117 bool118 119config QED_OOO120 bool121 122endif # NET_VENDOR_QLOGIC123