mirror of
https://github.com/torvalds/linux.git
synced 2026-04-27 19:12:29 -04:00
PTP capabilities are negotiated using virtchnl command. Add get capabilities function, direct access to read the PTP clock. Set initial PTP capabilities exposed to the stack. Reviewed-by: Jacob Keller <jacob.e.keller@intel.com> Signed-off-by: Milena Olech <milena.olech@intel.com> Tested-by: Willem de Bruijn <willemb@google.com> Tested-by: Mina Almasry <almasrymina@google.com> Tested-by: Samuel Salin <Samuel.salin@intel.com> Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
23 lines
505 B
Makefile
23 lines
505 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Copyright (C) 2023 Intel Corporation
|
|
|
|
# Makefile for Intel(R) Infrastructure Data Path Function Linux Driver
|
|
|
|
obj-$(CONFIG_IDPF) += idpf.o
|
|
|
|
idpf-y := \
|
|
idpf_controlq.o \
|
|
idpf_controlq_setup.o \
|
|
idpf_dev.o \
|
|
idpf_ethtool.o \
|
|
idpf_lib.o \
|
|
idpf_main.o \
|
|
idpf_txrx.o \
|
|
idpf_virtchnl.o \
|
|
idpf_vf_dev.o
|
|
|
|
idpf-$(CONFIG_IDPF_SINGLEQ) += idpf_singleq_txrx.o
|
|
|
|
idpf-$(CONFIG_PTP_1588_CLOCK) += idpf_ptp.o
|
|
idpf-$(CONFIG_PTP_1588_CLOCK) += idpf_virtchnl_ptp.o
|