mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 20:47:12 +07:00
6465859aba
This patch adds RGX/RGMII interface type support to BGX driver. This type of interface is supported by 81xx SOC. CN81XX VNIC has 8 VFs and max possible LMAC interfaces are 9, hence RGMII interface will not work if all DLMs are in BGX mode and all 8 LMACs are enabled Signed-off-by: Sunil Goutham <sgoutham@cavium.com> Signed-off-by: David S. Miller <davem@davemloft.net>
13 lines
316 B
Makefile
13 lines
316 B
Makefile
#
|
|
# Makefile for Cavium's Thunder ethernet device
|
|
#
|
|
|
|
obj-$(CONFIG_THUNDER_NIC_RGX) += thunder_xcv.o
|
|
obj-$(CONFIG_THUNDER_NIC_BGX) += thunder_bgx.o
|
|
obj-$(CONFIG_THUNDER_NIC_PF) += nicpf.o
|
|
obj-$(CONFIG_THUNDER_NIC_VF) += nicvf.o
|
|
|
|
nicpf-y := nic_main.o
|
|
nicvf-y := nicvf_main.o nicvf_queues.o
|
|
nicvf-y += nicvf_ethtool.o
|