File tree Expand file tree Collapse file tree 3 files changed +26
-1
lines changed
drivers/net/ethernet/hisilicon Expand file tree Collapse file tree 3 files changed +26
-1
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ config NET_VENDOR_HISILICON
7
7
bool "Hisilicon devices"
8
8
default y
9
9
depends on OF || ACPI
10
- depends on ARM || ARM64 || COMPILE_TEST
11
10
help
12
11
If you have a network (Ethernet) card belonging to this class, say Y.
13
12
@@ -18,6 +17,8 @@ config NET_VENDOR_HISILICON
18
17
19
18
if NET_VENDOR_HISILICON
20
19
20
+ if ARM || ARM64 || COMPILE_TEST
21
+
21
22
config HIX5HD2_GMAC
22
23
tristate "Hisilicon HIX5HD2 Family Network Device Support"
23
24
select PHYLIB
@@ -141,4 +142,19 @@ config HNS3_ENET
141
142
142
143
endif #HNS3
143
144
145
+ endif # ARM || ARM64 || COMPILE_TEST
146
+
147
+ config HIBMCGE
148
+ tristate "Hisilicon BMC Gigabit Ethernet Device Support"
149
+ depends on PCI && PCI_MSI
150
+ select PHYLIB
151
+ select MOTORCOMM_PHY
152
+ select REALTEK_PHY
153
+ help
154
+ If you wish to compile a kernel for a BMC with HIBMC-xx_gmac
155
+ then you should answer Y to this. This makes this driver suitable for use
156
+ on certain boards such as the HIBMC-210.
157
+
158
+ If you are unsure, say N.
159
+
144
160
endif # NET_VENDOR_HISILICON
Original file line number Diff line number Diff line change @@ -9,3 +9,4 @@ obj-$(CONFIG_HNS_MDIO) += hns_mdio.o
9
9
obj-$(CONFIG_HNS) += hns/
10
10
obj-$(CONFIG_HNS3) += hns3/
11
11
obj-$(CONFIG_HISI_FEMAC) += hisi_femac.o
12
+ obj-$(CONFIG_HIBMCGE) += hibmcge/
Original file line number Diff line number Diff line change
1
+ # SPDX-License-Identifier: GPL-2.0+
2
+ #
3
+ # Makefile for the HISILICON BMC GE network device drivers.
4
+ #
5
+
6
+ obj-$(CONFIG_HIBMCGE) += hibmcge.o
7
+
8
+ hibmcge-objs = hbg_main.o hbg_hw.o hbg_mdio.o hbg_irq.o hbg_txrx.o hbg_ethtool.o
You can’t perform that action at this time.
0 commit comments