65 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# Wangxun network device configuration4#5 6config NET_VENDOR_WANGXUN7 bool "Wangxun devices"8 default y9 help10 If you have a network (Ethernet) card from Wangxun(R), say Y.11 12 Note that the answer to this question doesn't directly affect the13 kernel: saying N will just cause the configurator to skip all14 the questions about Wangxun(R) cards. If you say Y, you will15 be asked for your specific card in the following questions.16 17if NET_VENDOR_WANGXUN18 19config LIBWX20 tristate21 select PAGE_POOL22 help23 Common library for Wangxun(R) Ethernet drivers.24 25config NGBE26 tristate "Wangxun(R) GbE PCI Express adapters support"27 depends on PCI28 select LIBWX29 select PHYLINK30 help31 This driver supports Wangxun(R) GbE PCI Express family of32 adapters.33 34 More specific information on configuring the driver is in35 <file:Documentation/networking/device_drivers/ethernet/wangxun/ngbe.rst>.36 37 To compile this driver as a module, choose M here. The module38 will be called ngbe.39 40config TXGBE41 tristate "Wangxun(R) 10GbE PCI Express adapters support"42 depends on PCI43 depends on COMMON_CLK44 depends on I2C_DESIGNWARE_PLATFORM45 select MARVELL_10G_PHY46 select REGMAP47 select PHYLINK48 select HWMON if TXGBE=y49 select SFP50 select GPIOLIB51 select GPIOLIB_IRQCHIP52 select PCS_XPCS53 select LIBWX54 help55 This driver supports Wangxun(R) 10GbE PCI Express family of56 adapters.57 58 More specific information on configuring the driver is in59 <file:Documentation/networking/device_drivers/ethernet/wangxun/txgbe.rst>.60 61 To compile this driver as a module, choose M here. The module62 will be called txgbe.63 64endif # NET_VENDOR_WANGXUN65