-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net: mucse: initial support for rnp drivers from Mucse Technology
This driver is to support mucse n10-2ports ethernet card Signed-off-by: Dong Yibo <[email protected]>
- Loading branch information
1 parent
9cdefe7
commit 0e631d2
Showing
36 changed files
with
29,906 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
# | ||
|
||
obj-$(CONFIG_MGBE) += rnpgbe/ | ||
obj-$(CONFIG_MXGBE) += rnp/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
# Copyright(c) 2022 - 2024 Mucse Corporation | ||
# | ||
# Makefile for the Mucse(R) 10GbE-2ports PCI Express ethernet driver | ||
# | ||
# | ||
|
||
obj-$(CONFIG_MXGBE) += rnp.o | ||
rnp-objs := \ | ||
rnp_main.o \ | ||
rnp_common.o \ | ||
rnp_ethtool.o \ | ||
rnp_lib.o \ | ||
rnp_mbx.o \ | ||
rnp_pcs.o \ | ||
rnp_n10.o \ | ||
rnp_mbx_fw.o\ | ||
rnp_sriov.o \ | ||
rnp_param.o \ | ||
rnp_sysfs.o \ | ||
rnp_ptp.o \ | ||
rnp_mpe.o | ||
|
||
rnp-$(CONFIG_DCB) += rnp_dcb.o | ||
rnp-$(CONFIG_DEBUG_FS) += rnp_debugfs.o |
Oops, something went wrong.