Commit e79e40c8 authored by Mengyuan Lou's avatar Mengyuan Lou Committed by Paolo Abeni
Browse files

net: ngbe: Add build support for ngbe



Add build options and guidance doc.
Initialize pci device access for Wangxun Gigabit Ethernet devices.

Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
Signed-off-by: default avatarMengyuan Lou <mengyuanlou@net-swift.com>
Link: https://lore.kernel.org/r/20220826034609.51854-1-mengyuanlou@net-swift.com


Signed-off-by: default avatarPaolo Abeni <pabeni@redhat.com>
parent 11bc150d
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -52,6 +52,7 @@ Contents:
   ti/tlan
   ti/tlan
   toshiba/spider_net
   toshiba/spider_net
   wangxun/txgbe
   wangxun/txgbe
   wangxun/ngbe


.. only::  subproject and html
.. only::  subproject and html


+14 −0
Original line number Original line Diff line number Diff line
.. SPDX-License-Identifier: GPL-2.0

=============================================================
Linux Base Driver for WangXun(R) Gigabit PCI Express Adapters
=============================================================

WangXun Gigabit Linux driver.
Copyright (c) 2019 - 2022 Beijing WangXun Technology Co., Ltd.

Support
=======
 If you have problems with the software or hardware, please contact our
 customer support team via email at nic-support@net-swift.com or check our website
 at https://www.net-swift.com
+3 −1
Original line number Original line Diff line number Diff line
@@ -21838,9 +21838,11 @@ F: drivers/input/tablet/wacom_serial4.c
WANGXUN ETHERNET DRIVER
WANGXUN ETHERNET DRIVER
M:	Jiawen Wu <jiawenwu@trustnetic.com>
M:	Jiawen Wu <jiawenwu@trustnetic.com>
M:	Mengyuan Lou <mengyuanlou@net-swift.com>
W:	https://www.net-swift.com
L:	netdev@vger.kernel.org
L:	netdev@vger.kernel.org
S:	Maintained
S:	Maintained
F:	Documentation/networking/device_drivers/ethernet/wangxun/txgbe.rst
F:	Documentation/networking/device_drivers/ethernet/wangxun/*
F:	drivers/net/ethernet/wangxun/
F:	drivers/net/ethernet/wangxun/
WATCHDOG DEVICE DRIVERS
WATCHDOG DEVICE DRIVERS
+13 −0
Original line number Original line Diff line number Diff line
@@ -16,6 +16,19 @@ config NET_VENDOR_WANGXUN


if NET_VENDOR_WANGXUN
if NET_VENDOR_WANGXUN


config NGBE
	tristate "Wangxun(R) GbE PCI Express adapters support"
	depends on PCI
	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.

config TXGBE
config TXGBE
	tristate "Wangxun(R) 10GbE PCI Express adapters support"
	tristate "Wangxun(R) 10GbE PCI Express adapters support"
	depends on PCI
	depends on PCI
+1 −0
Original line number Original line Diff line number Diff line
@@ -4,3 +4,4 @@
#
#


obj-$(CONFIG_TXGBE) += txgbe/
obj-$(CONFIG_TXGBE) += txgbe/
obj-$(CONFIG_NGBE) += ngbe/
Loading