mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-06 13:09:58 +00:00

PTP feature is supported if the VIRTCHNL2_CAP_PTP is negotiated during the capabilities recognition. Initial PTP support includes PTP initialization and registration of the clock. Reviewed-by: Alexander Lobakin <aleksander.lobakin@intel.com> Reviewed-by: Vadim Fedorenko <vadim.fedorenko@linux.dev> Reviewed-by: Willem de Bruijn <willemb@google.com> Reviewed-by: Jacob Keller <jacob.e.keller@intel.com> Signed-off-by: Milena Olech <milena.olech@intel.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>
28 lines
732 B
Plaintext
28 lines
732 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Copyright (C) 2024 Intel Corporation
|
|
|
|
config IDPF
|
|
tristate "Intel(R) Infrastructure Data Path Function Support"
|
|
depends on PCI_MSI
|
|
depends on PTP_1588_CLOCK_OPTIONAL
|
|
select DIMLIB
|
|
select LIBETH
|
|
help
|
|
This driver supports Intel(R) Infrastructure Data Path Function
|
|
devices.
|
|
|
|
To compile this driver as a module, choose M here. The module
|
|
will be called idpf.
|
|
|
|
if IDPF
|
|
|
|
config IDPF_SINGLEQ
|
|
bool "idpf singleq support"
|
|
help
|
|
This option enables support for legacy single Rx/Tx queues w/no
|
|
completion and fill queues. Only enable if you have hardware which
|
|
wants to work in this mode as it increases the driver size and adds
|
|
runtme checks on hotpath.
|
|
|
|
endif # IDPF
|