mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-12-25 10:36:03 +00:00
ENETC supports in hardware for time-based egress shaping according to IEEE 802.1Qbv. This patch implement the Qbv enablement by the hardware offload method qdisc tc-taprio method. Also update cbdr writeback to up level since control bd ring may writeback data to control bd ring. Signed-off-by: Po Liu <Po.Liu@nxp.com> Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com> Signed-off-by: Claudiu Manoil <claudiu.manoil@nxp.com> Signed-off-by: David S. Miller <davem@davemloft.net>
19 lines
601 B
Makefile
19 lines
601 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
common-objs := enetc.o enetc_cbdr.o enetc_ethtool.o
|
|
|
|
obj-$(CONFIG_FSL_ENETC) += fsl-enetc.o
|
|
fsl-enetc-y := enetc_pf.o enetc_mdio.o $(common-objs)
|
|
fsl-enetc-$(CONFIG_PCI_IOV) += enetc_msg.o
|
|
fsl-enetc-$(CONFIG_FSL_ENETC_QOS) += enetc_qos.o
|
|
|
|
obj-$(CONFIG_FSL_ENETC_VF) += fsl-enetc-vf.o
|
|
fsl-enetc-vf-y := enetc_vf.o $(common-objs)
|
|
fsl-enetc-vf-$(CONFIG_FSL_ENETC_QOS) += enetc_qos.o
|
|
|
|
obj-$(CONFIG_FSL_ENETC_MDIO) += fsl-enetc-mdio.o
|
|
fsl-enetc-mdio-y := enetc_pci_mdio.o enetc_mdio.o
|
|
|
|
obj-$(CONFIG_FSL_ENETC_PTP_CLOCK) += fsl-enetc-ptp.o
|
|
fsl-enetc-ptp-y := enetc_ptp.o
|