mirror of
https://github.com/torvalds/linux.git
synced 2026-06-01 19:13:47 +02:00
In order for us to support a PCS device we need to add an MDIO bus to allow the drivers to have access to the registers for the device. This change adds such an interface. The interface will consist of 2 PHY addrs, the first one consisting of a PMD and PCS, and the second just being a PCS. There is a need for 2 PHYs addrs due to the fact that in order to support the 50GBase-CR2 mode we will need to access and configure the PCS vendor registers and RSFEC registers from the second lane identical to the first. Signed-off-by: Alexander Duyck <alexanderduyck@fb.com> Link: https://patch.msgid.link/176374324532.959489.15389723111560978054.stgit@ahduyck-xeon-server.home.arpa Signed-off-by: Paolo Abeni <pabeni@redhat.com>
29 lines
555 B
Makefile
29 lines
555 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
|
|
#
|
|
# Makefile for the Meta(R) Host Network Interface
|
|
#
|
|
|
|
obj-$(CONFIG_FBNIC) += fbnic.o
|
|
|
|
fbnic-y := fbnic_csr.o \
|
|
fbnic_debugfs.o \
|
|
fbnic_devlink.o \
|
|
fbnic_ethtool.o \
|
|
fbnic_fw.o \
|
|
fbnic_fw_log.o \
|
|
fbnic_hw_stats.o \
|
|
fbnic_hwmon.o \
|
|
fbnic_irq.o \
|
|
fbnic_mac.o \
|
|
fbnic_netdev.o \
|
|
fbnic_pci.o \
|
|
fbnic_phylink.o \
|
|
fbnic_rpc.o \
|
|
fbnic_mdio.o \
|
|
fbnic_time.o \
|
|
fbnic_tlv.o \
|
|
fbnic_txrx.o \
|
|
# End of objects
|