2022-06-28 17:55:30 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
#
|
|
|
|
# Wangxun network device configuration
|
|
|
|
#
|
|
|
|
|
|
|
|
config NET_VENDOR_WANGXUN
|
|
|
|
bool "Wangxun devices"
|
|
|
|
default y
|
|
|
|
help
|
2022-08-04 11:26:41 -07:00
|
|
|
If you have a network (Ethernet) card from Wangxun(R), say Y.
|
2022-06-28 17:55:30 +08:00
|
|
|
|
|
|
|
Note that the answer to this question doesn't directly affect the
|
|
|
|
kernel: saying N will just cause the configurator to skip all
|
2022-08-04 11:26:41 -07:00
|
|
|
the questions about Wangxun(R) cards. If you say Y, you will
|
|
|
|
be asked for your specific card in the following questions.
|
2022-06-28 17:55:30 +08:00
|
|
|
|
|
|
|
if NET_VENDOR_WANGXUN
|
|
|
|
|
2022-10-27 14:11:14 +08:00
|
|
|
config LIBWX
|
|
|
|
tristate
|
2025-02-18 10:34:29 +08:00
|
|
|
depends on PTP_1588_CLOCK_OPTIONAL
|
2023-02-03 17:11:30 +08:00
|
|
|
select PAGE_POOL
|
2022-10-27 14:11:14 +08:00
|
|
|
help
|
|
|
|
Common library for Wangxun(R) Ethernet drivers.
|
|
|
|
|
2022-08-26 11:46:09 +08:00
|
|
|
config NGBE
|
|
|
|
tristate "Wangxun(R) GbE PCI Express adapters support"
|
|
|
|
depends on PCI
|
2025-02-24 15:05:06 +01:00
|
|
|
depends on PTP_1588_CLOCK_OPTIONAL
|
2022-10-31 15:07:57 +08:00
|
|
|
select LIBWX
|
2024-01-11 17:27:53 +01:00
|
|
|
select PHYLINK
|
2022-08-26 11:46:09 +08:00
|
|
|
help
|
|
|
|
This driver supports Wangxun(R) GbE PCI Express family of
|
|
|
|
adapters.
|
|
|
|
|
|
|
|
More specific information on configuring the driver is in
|
|
|
|
<file:Documentation/networking/device_drivers/ethernet/wangxun/ngbe.rst>.
|
|
|
|
|
|
|
|
To compile this driver as a module, choose M here. The module
|
|
|
|
will be called ngbe.
|
|
|
|
|
2022-06-28 17:55:30 +08:00
|
|
|
config TXGBE
|
2025-04-14 10:24:21 +08:00
|
|
|
tristate "Wangxun(R) 10/25/40GbE PCI Express adapters support"
|
2022-06-28 17:55:30 +08:00
|
|
|
depends on PCI
|
2023-06-06 17:21:01 +08:00
|
|
|
depends on COMMON_CLK
|
2024-09-03 17:25:05 +03:00
|
|
|
depends on I2C_DESIGNWARE_PLATFORM
|
2025-02-24 15:05:06 +01:00
|
|
|
depends on PTP_1588_CLOCK_OPTIONAL
|
2023-08-23 14:19:34 +08:00
|
|
|
select MARVELL_10G_PHY
|
2023-06-06 17:21:02 +08:00
|
|
|
select REGMAP
|
2023-06-06 17:21:03 +08:00
|
|
|
select PHYLINK
|
|
|
|
select HWMON if TXGBE=y
|
|
|
|
select SFP
|
2023-06-06 17:21:04 +08:00
|
|
|
select GPIOLIB
|
|
|
|
select GPIOLIB_IRQCHIP
|
2023-06-06 17:21:06 +08:00
|
|
|
select PCS_XPCS
|
2022-10-27 14:11:14 +08:00
|
|
|
select LIBWX
|
2022-06-28 17:55:30 +08:00
|
|
|
help
|
2025-04-14 10:24:21 +08:00
|
|
|
This driver supports Wangxun(R) 10/25/40GbE PCI Express family of
|
2022-06-28 17:55:30 +08:00
|
|
|
adapters.
|
|
|
|
|
|
|
|
More specific information on configuring the driver is in
|
|
|
|
<file:Documentation/networking/device_drivers/ethernet/wangxun/txgbe.rst>.
|
|
|
|
|
|
|
|
To compile this driver as a module, choose M here. The module
|
|
|
|
will be called txgbe.
|
|
|
|
|
2025-07-04 17:49:15 +08:00
|
|
|
config TXGBEVF
|
|
|
|
tristate "Wangxun(R) 10/25/40G Virtual Function Ethernet support"
|
|
|
|
depends on PCI
|
|
|
|
depends on PCI_MSI
|
2025-07-11 10:23:34 +02:00
|
|
|
depends on PTP_1588_CLOCK_OPTIONAL
|
2025-07-04 17:49:15 +08:00
|
|
|
select LIBWX
|
|
|
|
select PHYLINK
|
|
|
|
help
|
|
|
|
This driver supports virtual functions for SP1000A, WX1820AL,
|
|
|
|
WX5XXX, WX5XXXAL.
|
|
|
|
|
|
|
|
This driver was formerly named txgbevf.
|
|
|
|
|
|
|
|
More specific information on configuring the driver is in
|
|
|
|
<file:Documentation/networking/device_drivers/ethernet/wangxun/txgbevf.rst>.
|
|
|
|
|
|
|
|
To compile this driver as a module, choose M here. MSI-X interrupt
|
|
|
|
support is required for this driver to work correctly.
|
|
|
|
|
2025-07-04 17:49:20 +08:00
|
|
|
config NGBEVF
|
|
|
|
tristate "Wangxun(R) GbE Virtual Function Ethernet support"
|
|
|
|
depends on PCI_MSI
|
2025-07-11 10:23:34 +02:00
|
|
|
depends on PTP_1588_CLOCK_OPTIONAL
|
2025-07-04 17:49:20 +08:00
|
|
|
select LIBWX
|
|
|
|
help
|
|
|
|
This driver supports virtual functions for WX1860, WX1860AL.
|
|
|
|
|
|
|
|
This driver was formerly named ngbevf.
|
|
|
|
|
|
|
|
More specific information on configuring the driver is in
|
|
|
|
<file:Documentation/networking/device_drivers/ethernet/wangxun/ngbevf.rst>.
|
|
|
|
|
|
|
|
To compile this driver as a module, choose M here. MSI-X interrupt
|
|
|
|
support is required for this driver to work correctly.
|
|
|
|
|
2022-06-28 17:55:30 +08:00
|
|
|
endif # NET_VENDOR_WANGXUN
|