Commit 08f42807 authored by xiaohuihui-bzwx-kj's avatar xiaohuihui-bzwx-kj
Browse files

drivers: add Chengdu BeiZhongWangXin Technology N5/N6 Series Network Card Driver

bzwx inclusion
category: feature
bugzilla: https://gitee.com/openeuler/kernel/issues/I9EHCB


CVE: NA

--------------------------------

bzwx ne6x/ne6xvf drivers provide Ethernet features for
Chengdu BeiZhongWangXin N5/N6 series NICs.

Signed-off-by: default avatarxiaohuihui-bzwx-kj <xiaohuihui@bzwx-kj.com>
parent 7c7ad035
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -3063,6 +3063,10 @@ CONFIG_NGBE=m
CONFIG_TXGBE=m
# CONFIG_NET_VENDOR_WIZNET is not set
# CONFIG_NET_VENDOR_XILINX is not set
CONFIG_NET_VENDOR_BZWX=y
CONFIG_NCE=m
CONFIG_NE6X=m
CONFIG_NE6XVF=m
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_NET_SB1000 is not set
+4 −0
Original line number Diff line number Diff line
@@ -3061,6 +3061,10 @@ CONFIG_NGBE=m
CONFIG_TXGBE=m
# CONFIG_NET_VENDOR_WIZNET is not set
# CONFIG_NET_VENDOR_XILINX is not set
CONFIG_NET_VENDOR_BZWX=y
CONFIG_NCE=m
CONFIG_NE6X=m
CONFIG_NE6XVF=m
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_NET_SB1000 is not set
+1 −0
Original line number Diff line number Diff line
@@ -194,5 +194,6 @@ source "drivers/net/ethernet/wangxun/Kconfig"
source "drivers/net/ethernet/wiznet/Kconfig"
source "drivers/net/ethernet/xilinx/Kconfig"
source "drivers/net/ethernet/xircom/Kconfig"
source "drivers/net/ethernet/bzwx/Kconfig"

endif # ETHERNET
+1 −0
Original line number Diff line number Diff line
@@ -106,3 +106,4 @@ obj-$(CONFIG_NET_VENDOR_XILINX) += xilinx/
obj-$(CONFIG_NET_VENDOR_XIRCOM) += xircom/
obj-$(CONFIG_NET_VENDOR_SYNOPSYS) += synopsys/
obj-$(CONFIG_NET_VENDOR_PENSANDO) += pensando/
obj-$(CONFIG_NET_VENDOR_BZWX) += bzwx/
+21 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
#
# BeiZhongWangXin device configuration
#

config NET_VENDOR_BZWX
	bool "BeiZhongWangXin devices"
	default y
	help
	  If you have a network (Ethernet) card belonging to this class, say Y.

	  Note that the answer to this question doesn't directly affect the
	  kernel: saying N will just cause the configurator to skip all
	  the questions about BeiZhongWangXin devices. If you say Y, you will be asked
	  for your specific device in the following questions.

if NET_VENDOR_BZWX

source "drivers/net/ethernet/bzwx/nce/Kconfig"

endif # NET_VENDOR_BZWX
Loading